File: /var/www/delta/wp-content/themes/delta/vendor/timber/timber/tests/test-timber-comment-thread.php
<?php
class TestTimberCommentThread extends Timber_UnitTestCase {
function testCommentThreadWithArgs() {
$post_id = self::factory()->post->create(array('post_title' => 'Gobbles'));
$comment_id_array = self::factory()->comment->create_many( 5, array('comment_post_ID' => $post_id) );
$args = array();
$ct = new Timber\CommentThread($post_id, $args);
$this->assertEquals( 5, count($ct) );
}
function testShowUnmoderatedCommentIfByAnon() {
global $wp_version;
$post_id = self::factory()->post->create();
$quote = "And in that moment, I was a marine biologist";
$comment_id = self::factory()->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => $quote,'comment_approved' => 0, 'comment_author_email' => 'jarednova@upstatement.com'));
$comment = get_comment($comment_id);
$post = new TimberPost($post_id);
$this->assertEquals(0, count($post->comments()) );
$_GET['unapproved'] = $comment->comment_ID;
$_GET['moderation-hash'] = wp_hash($comment->comment_date_gmt);
$post = new TimberPost($post_id);
if ( !function_exists('wp_get_unapproved_comment_author_email') ) {
$this->assertEquals(0, count( $post->comments() ));
} else {
$timber_comment = $post->comments()[0];
$this->assertEquals($quote, $timber_comment->comment_content);
}
}
}