HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/delta/wp-content/themes/delta/vendor/timber/timber/tests/test-timber-comment.php
<?php

class TestTimberComment extends Timber_UnitTestCase {

	function testComment(){
		$post_id = self::factory()->post->create();
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id));
		$comment = new TimberComment($comment_id);
		$this->assertEquals('Timber\Comment', get_class($comment));
		$this->assertEquals($comment_id, $comment->ID);
	}

	function testCommentWithMeta(){
		$post_id = self::factory()->post->create();
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id));
		update_comment_meta( $comment_id, 'rebney', 'Winnebago Man');
		update_comment_meta( $comment_id, 'quote', 'Will you do me a kindness?');
		$comment = new TimberComment($comment_id);
		$this->assertEquals('Winnebago Man', $comment->rebney);
	}

	function testCommentToString(){
		$quote = 'Jerry, just remember, it’s not a lie if you believe it.';
		$post_id = self::factory()->post->create();
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => $quote));
		$comment = new TimberComment($comment_id);
		$str = Timber::compile_string('{{comment}}', array('comment' => $comment));
		$this->assertEquals('<p>'.$quote.'</p>', $str);
	}

	function testCommentContent(){
		$costanza_quote = "Divorce is always hard. Especially on the kids. ‘Course I am the result of my parents having stayed together so ya never know.";
		$post_id = self::factory()->post->create();
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => $costanza_quote));
		$comment = new TimberComment($comment_id);
		$this->assertEquals('<p>'.$costanza_quote.'</p>', $comment->content());
	}

	function testCommentApproval(){
		$kramer_quote = "Oh, you gotta eat before surgery. You need your strength.";
		$post_id = self::factory()->post->create();
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => $kramer_quote));
		$comment = new TimberComment($comment_id);
		$this->assertTrue($comment->approved());

		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => 'You ever dream in 3-D? It’s like the Boogie Man is coming RIGHT AT YOU.', 'comment_approved' => false));
		$comment = new TimberComment($comment_id);
		$this->assertFalse($comment->approved());
	}

	function testCommentDate(){
		$quote = "So he just shaves his head for no reason? That’s like using a wheelchair for the fun of it!";
		$post_id = self::factory()->post->create();
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => $quote, 'comment_date' => '2015-08-21 03:24:07'));
		$comment = new TimberComment($comment_id);
		$this->assertEquals('August 21, 2015', $comment->date());
	}

	function testCommentTime(){
		$quote = "My grandmother used to swear by this, but personally I was always skeptical.";
		$post_id = self::factory()->post->create();
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => $quote, 'comment_date' => '2015-08-21 03:24:07'));
		$comment = new TimberComment($comment_id);
		$this->assertEquals('3:24 am', $comment->time());
	}

	function testCommentReplyLink() {
		$comment_text = "Try the soup";
		$post_id = self::factory()->post->create();
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => $comment_text, 'comment_date' => '2015-08-21 03:24:07'));
		$comment = new TimberComment($comment_id);
		$link = $comment->reply_link('Respond');
		$this->assertEquals('Respond', strip_tags($link));
	}

	function testAnonymousComment() {
		$post_id = self::factory()->post->create();
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => 'Mystery', 'user_id' => 0, 'comment_author' => false));
		$comment = new TimberComment($comment_id);
		$twig_string = '{{comment.author.name}}';
		$result = Timber::compile_string($twig_string, array('comment' => $comment));
		$this->assertEquals('Anonymous', $result);
	}

	function testAnonymousCommentWithName() {
		$post_id = self::factory()->post->create();
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => 'Mystery', 'user_id' => 0, 'comment_author' => 'Milhouse Van Houten'));
		$comment = new TimberComment($comment_id);
		$twig_string = '{{comment.author.name}}';
		$result = Timber::compile_string($twig_string, array('comment' => $comment));
		$this->assertEquals('Milhouse Van Houten', $result);
	}

	function testCommentWithChildren() {
		$kramer = self::factory()->user->create(array('display_name' => 'Kramer'));
		$post_id = self::factory()->post->create();
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => 'These pretzels are making me thirsty.', 'user_id' => $kramer, 'comment_date' => '2015-08-21 03:24:07'));
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => 'Perhaps there’s more to Newman than meets the eye.', 'comment_date' => '2015-08-21 03:25:07'));
		$child_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => 'No, there’s less.', 'comment_parent' => $comment_id, 'comment_date' => '2015-08-21 03:26:07'));
		$post = new TimberPost($post_id);
		$comments = $post->get_comments();
		$this->assertEquals(2, count($comments));
		$this->assertEquals(1, count($comments[1]->children()));
		$twig_string = '{{comment.author.name}}';
		$result = Timber::compile_string($twig_string, array('comment' => $comments[0]));
		$this->assertEquals('Kramer', $result);
	}

	function _makeCommentPost() {
		$elaine = self::factory()->user->create(array('display_name' => 'Elaine Benes'));
		$kramer = self::factory()->user->create(array('display_name' => 'Kramer'));
		$peterman = self::factory()->user->create(array('display_name' => 'J. Peterman'));


		$post_id = self::factory()->post->create(array('post_date' => '2016-11-28 02:58:18'));
		//1st parent @4:58am
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => 'These pretzels are making me thirsty.', 'user_id' => $kramer, 'comment_date' => '2016-11-28 04:58:18'));
		//2nd parent @5:58am
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => 'Perhaps there’s more to Newman than meets the eye.', 'comment_date' => '2016-11-28 05:58:18', 'user_id' => $elaine));
		$child_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => 'No, there’s less.', 'comment_parent' => $comment_id, 'comment_date' => '2016-11-28 06:58:18'));
		$child_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => 'for real?', 'comment_parent' => $child_id, 'comment_date' => '2016-11-28 06:59:18'));
		//3rd parent @7:58am
		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => 'The very pants you were returning', 'comment_date' => '2016-11-28 07:58:18', 'user_id' => $peterman));
		return $post_id;
	}

	function testCommentDepth() {
		$post_id = $this->_makeCommentPost();
		$post = new \Timber\Post($post_id);
		$comments = $post->get_comments();
		$children = $comments[1]->children();
		$grand_children = $children[0]->children();
		$this->assertEquals(3, count($comments));
		$this->assertEquals(1, count($children));

		$this->assertEquals(0, $comments[1]->depth());
		$this->assertEquals(1, $children[0]->depth());
		$this->assertEquals(2, $grand_children[0]->depth());
		$this->assertEquals(0, $comments[2]->depth());

		$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => 'Perhaps there’s more to Newman than meets the eye.', 'comment_date' => '2016-11-28 05:58:18'));
		$twig_string = '{{comment.author.name}}';
		$comments = $post->get_comments();
		$result = Timber::compile_string($twig_string, array('comment' => $comments[0]));
		$this->assertEquals('Kramer', $result);
	}

	function testCommentOrder() {
		$post_id = $this->_makeCommentPost();
		$post = new \Timber\Post($post_id);
		$str = '{% for comment in post.comments %}{{comment.author.name}}, {% endfor %}';
		$compiled = Timber::compile_string($str, array('post' => $post));
		$this->assertEquals('Kramer, Elaine Benes, J. Peterman, ', $compiled);
		$str = '{% for comment in post.comments.order("DESC") %}{{comment.author.name}}, {% endfor %}';
		$compiled = Timber::compile_string($str, array('post' => $post));
		$this->assertEquals('J. Peterman, Elaine Benes, Kramer, ', $compiled);
	}

	function testCommentOrderBy() {
		$post_id = $this->_makeCommentPost();
		$post = new \Timber\Post($post_id);
		$str = '{% for comment in post.comments %}{{comment.author.name}}, {% endfor %}';
		$compiled = Timber::compile_string($str, array('post' => $post));
		$this->assertEquals('Kramer, Elaine Benes, J. Peterman, ', $compiled);
		$str = '{% for comment in post.comments.orderby("comment_author") %}{{comment.author.name}}, {% endfor %}';
		$compiled = Timber::compile_string($str, array('post' => $post));
		$this->assertEquals('Kramer, Elaine Benes, J. Peterman, ', $compiled);
	}






}