mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Includes removing `.php` from some older group names, because most of the groups are no longer named based on the file containing the function, and sometimes functions move around, making the file-based group name inaccurate. Props afercia, aristath, poena, SergeyBiryukov. See #59647. git-svn-id: https://develop.svn.wordpress.org/trunk@56971 602fd350-edb4-49c9-b593-d223f7449a82
1094 lines
29 KiB
PHP
1094 lines
29 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Testing items that are only testable by grabbing the markup of `comments_template()` from the output buffer.
|
|
*
|
|
* @group comment
|
|
*
|
|
* @covers ::comments_template
|
|
*/
|
|
class Tests_Comment_CommentsTemplate extends WP_UnitTestCase {
|
|
|
|
/**
|
|
* Performs setup tasks for every test.
|
|
*/
|
|
public function set_up() {
|
|
parent::set_up();
|
|
switch_theme( 'default' );
|
|
}
|
|
|
|
/**
|
|
* @ticket 8071
|
|
*/
|
|
public function test_should_respect_comment_order_asc_when_default_comments_page_is_newest() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'asc' );
|
|
update_option( 'default_comments_page', 'newest' );
|
|
|
|
$this->go_to( get_permalink( $p ) );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
// Life in the fast lane.
|
|
$comments = preg_match_all( '/id="comment-([0-9]+)"/', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
$this->assertSame( array( $comment_2, $comment_1 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 8071
|
|
*/
|
|
public function test_should_respect_comment_order_desc_when_default_comments_page_is_newest() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'desc' );
|
|
update_option( 'default_comments_page', 'newest' );
|
|
|
|
$this->go_to( get_permalink( $p ) );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
// Life in the fast lane.
|
|
$comments = preg_match_all( '/id="comment-([0-9]+)"/', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
$this->assertSame( array( $comment_1, $comment_2 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 8071
|
|
*/
|
|
public function test_should_respect_comment_order_asc_when_default_comments_page_is_oldest() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'asc' );
|
|
update_option( 'default_comments_page', 'oldest' );
|
|
|
|
$this->go_to( get_permalink( $p ) );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
// Life in the fast lane.
|
|
$comments = preg_match_all( '/id="comment-([0-9]+)"/', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
$this->assertSame( array( $comment_2, $comment_1 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 8071
|
|
*/
|
|
public function test_should_respect_comment_order_desc_when_default_comments_page_is_oldest() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'desc' );
|
|
update_option( 'default_comments_page', 'oldest' );
|
|
|
|
$this->go_to( get_permalink( $p ) );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
// Life in the fast lane.
|
|
$comments = preg_match_all( '/id="comment-([0-9]+)"/', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
$this->assertSame( array( $comment_1, $comment_2 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 8071
|
|
*/
|
|
public function test_should_respect_comment_order_asc_when_default_comments_page_is_newest_on_subsequent_pages() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
$comment_3 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
)
|
|
);
|
|
$comment_4 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
|
|
)
|
|
);
|
|
$comment_5 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 500 ),
|
|
)
|
|
);
|
|
$comment_6 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 600 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'asc' );
|
|
update_option( 'default_comments_page', 'newest' );
|
|
update_option( 'page_comments', '1' );
|
|
|
|
$link = add_query_arg(
|
|
array(
|
|
'cpage' => 2,
|
|
'comments_per_page' => 2,
|
|
),
|
|
get_permalink( $p )
|
|
);
|
|
|
|
$this->go_to( $link );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
// Life in the fast lane.
|
|
$comments = preg_match_all( '/id="comment-([0-9]+)"/', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
$this->assertSame( array( $comment_4, $comment_3 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 8071
|
|
*/
|
|
public function test_should_respect_comment_order_desc_when_default_comments_page_is_newest_on_subsequent_pages() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
$comment_3 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
)
|
|
);
|
|
$comment_4 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
|
|
)
|
|
);
|
|
$comment_5 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 500 ),
|
|
)
|
|
);
|
|
$comment_6 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 600 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'desc' );
|
|
update_option( 'default_comments_page', 'newest' );
|
|
update_option( 'page_comments', '1' );
|
|
|
|
$link = add_query_arg(
|
|
array(
|
|
'cpage' => 2,
|
|
'comments_per_page' => 2,
|
|
),
|
|
get_permalink( $p )
|
|
);
|
|
|
|
$this->go_to( $link );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
// Life in the fast lane.
|
|
$comments = preg_match_all( '/id="comment-([0-9]+)"/', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
$this->assertSame( array( $comment_3, $comment_4 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 8071
|
|
*/
|
|
public function test_should_respect_comment_order_asc_when_default_comments_page_is_oldest_on_subsequent_pages() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
$comment_3 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
)
|
|
);
|
|
$comment_4 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'asc' );
|
|
update_option( 'default_comments_page', 'oldest' );
|
|
update_option( 'page_comments', '1' );
|
|
|
|
$link = add_query_arg(
|
|
array(
|
|
'cpage' => 2,
|
|
'comments_per_page' => 2,
|
|
),
|
|
get_permalink( $p )
|
|
);
|
|
|
|
$this->go_to( $link );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
// Life in the fast lane.
|
|
$comments = preg_match_all( '/id="comment-([0-9]+)"/', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
$this->assertSame( array( $comment_2, $comment_1 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 8071
|
|
*/
|
|
public function test_should_respect_comment_order_desc_when_default_comments_page_is_oldest_on_subsequent_pages() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
$comment_3 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
)
|
|
);
|
|
$comment_4 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'desc' );
|
|
update_option( 'default_comments_page', 'oldest' );
|
|
update_option( 'page_comments', '1' );
|
|
|
|
$link = add_query_arg(
|
|
array(
|
|
'cpage' => 2,
|
|
'comments_per_page' => 2,
|
|
),
|
|
get_permalink( $p )
|
|
);
|
|
|
|
$this->go_to( $link );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
// Life in the fast lane.
|
|
$comments = preg_match_all( '/id="comment-([0-9]+)"/', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
$this->assertSame( array( $comment_1, $comment_2 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 8071
|
|
* @ticket 34073
|
|
* @ticket 29462
|
|
*/
|
|
public function test_last_page_of_comments_should_be_full_when_default_comment_page_is_newest() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
$comment_3 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'default_comments_page', 'newest' );
|
|
update_option( 'comment_order', 'desc' );
|
|
update_option( 'page_comments', '1' );
|
|
|
|
$link = add_query_arg(
|
|
array(
|
|
'cpage' => 1,
|
|
'comments_per_page' => 2,
|
|
),
|
|
get_permalink( $p )
|
|
);
|
|
|
|
$this->go_to( $link );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
$comments = preg_match_all( '/id="comment-([0-9]+)"/', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
|
|
$this->assertSame( array( $comment_2, $comment_3 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 8071
|
|
* @ticket 34073
|
|
* @ticket 29462
|
|
*/
|
|
public function test_first_page_of_comments_should_have_remainder_when_default_comments_page_is_newest() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
$comment_3 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'default_comments_page', 'newest' );
|
|
update_option( 'comment_order', 'desc' );
|
|
update_option( 'page_comments', '1' );
|
|
|
|
$link = add_query_arg(
|
|
array(
|
|
'cpage' => 2,
|
|
'comments_per_page' => 2,
|
|
),
|
|
get_permalink( $p )
|
|
);
|
|
|
|
$this->go_to( $link );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
$comments = preg_match_all( '/id="comment-([0-9]+)"/', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
|
|
$this->assertSame( array( $comment_1 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 34073
|
|
*/
|
|
public function test_comment_permalinks_should_be_correct_when_using_default_display_callback_with_default_comment_page_oldest() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
$comment_3 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
)
|
|
);
|
|
$comment_4 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'desc' );
|
|
update_option( 'default_comments_page', 'oldest' );
|
|
update_option( 'page_comments', '1' );
|
|
|
|
$link_p1 = add_query_arg(
|
|
array(
|
|
'comments_per_page' => 2,
|
|
),
|
|
get_permalink( $p )
|
|
);
|
|
|
|
$this->go_to( $link_p1 );
|
|
|
|
$found_p1 = get_echo( 'comments_template' );
|
|
|
|
// Find the comment permalinks.
|
|
preg_match_all( '|href="(.*?#comment-([0-9]+))|', $found_p1, $matches );
|
|
|
|
// This is the main post page, so we don't expect any cpage param.
|
|
foreach ( $matches[1] as $m ) {
|
|
$this->assertStringNotContainsString( 'cpage', $m );
|
|
}
|
|
|
|
$link_p2 = add_query_arg(
|
|
array(
|
|
'cpage' => 2,
|
|
'comments_per_page' => 2,
|
|
),
|
|
get_permalink( $p )
|
|
);
|
|
|
|
$this->go_to( $link_p2 );
|
|
|
|
$found_p2 = get_echo( 'comments_template' );
|
|
|
|
// Find the comment permalinks.
|
|
preg_match_all( '|href="(.*?#comment-([0-9]+))|', $found_p2, $matches );
|
|
|
|
// They should all be on page 2.
|
|
foreach ( $matches[1] as $m ) {
|
|
$this->assertStringContainsString( 'cpage=2', $m );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @ticket 34073
|
|
*/
|
|
public function test_comment_permalinks_should_be_correct_when_using_default_display_callback_with_default_comment_page_newest() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
$comment_3 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
)
|
|
);
|
|
$comment_4 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
|
|
)
|
|
);
|
|
$comment_5 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 500 ),
|
|
)
|
|
);
|
|
$comment_6 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 600 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'desc' );
|
|
update_option( 'default_comments_page', 'newest' );
|
|
update_option( 'page_comments', '1' );
|
|
|
|
$link_p0 = add_query_arg(
|
|
array(
|
|
'comments_per_page' => 2,
|
|
),
|
|
get_permalink( $p )
|
|
);
|
|
|
|
$this->go_to( $link_p0 );
|
|
|
|
$found_p0 = get_echo( 'comments_template' );
|
|
|
|
// Find the comment permalinks.
|
|
preg_match_all( '|href="(.*?#comment-([0-9]+))|', $found_p0, $matches );
|
|
|
|
foreach ( $matches[1] as $m ) {
|
|
$this->assertStringContainsString( 'cpage=3', $m );
|
|
}
|
|
|
|
$link_p2 = add_query_arg(
|
|
array(
|
|
'cpage' => 2,
|
|
'comments_per_page' => 2,
|
|
),
|
|
get_permalink( $p )
|
|
);
|
|
|
|
$this->go_to( $link_p2 );
|
|
|
|
$found_p2 = get_echo( 'comments_template' );
|
|
|
|
// Find the comment permalinks.
|
|
preg_match_all( '|href="(.*?#comment-([0-9]+))|', $found_p2, $matches );
|
|
|
|
// They should all be on page 2.
|
|
foreach ( $matches[1] as $m ) {
|
|
$this->assertStringContainsString( 'cpage=2', $m );
|
|
}
|
|
|
|
// p1 is the last page (neat!).
|
|
$link_p1 = add_query_arg(
|
|
array(
|
|
'cpage' => 1,
|
|
'comments_per_page' => 2,
|
|
),
|
|
get_permalink( $p )
|
|
);
|
|
|
|
$this->go_to( $link_p1 );
|
|
|
|
$found_p1 = get_echo( 'comments_template' );
|
|
|
|
// Find the comment permalinks.
|
|
preg_match_all( '|href="(.*?#comment-([0-9]+))|', $found_p1, $matches );
|
|
|
|
// They should all be on page 2.
|
|
foreach ( $matches[1] as $m ) {
|
|
$this->assertStringContainsString( 'cpage=1', $m );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @ticket 35068
|
|
*/
|
|
public function test_query_offset_should_not_include_unapproved_comments() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_approved' => '0',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_approved' => '0',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
$comment_3 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_approved' => '0',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
)
|
|
);
|
|
$comment_4 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '4',
|
|
'comment_approved' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'asc' );
|
|
update_option( 'default_comments_page', 'newest' );
|
|
update_option( 'page_comments', 1 );
|
|
update_option( 'comments_per_page', 2 );
|
|
|
|
$this->go_to( get_permalink( $p ) );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
// Find the found comments in the markup.
|
|
preg_match_all( '|id="comment-([0-9]+)|', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
$this->assertSame( array( $comment_4 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 35068
|
|
*/
|
|
public function test_query_offset_should_include_unapproved_comments() {
|
|
$comment_author_email = 'foo@example.com';
|
|
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_approved' => '0',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_approved' => '0',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
$comment_3 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_approved' => '0',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
'comment_author_email' => $comment_author_email,
|
|
)
|
|
);
|
|
$comment_4 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '4',
|
|
'comment_approved' => '0',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
'comment_author_email' => $comment_author_email,
|
|
)
|
|
);
|
|
$comment_5 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '5',
|
|
'comment_approved' => '0',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
'comment_author_email' => $comment_author_email,
|
|
)
|
|
);
|
|
$comment_6 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '6',
|
|
'comment_approved' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'asc' );
|
|
update_option( 'default_comments_page', 'newest' );
|
|
update_option( 'page_comments', 1 );
|
|
update_option( 'comments_per_page', 2 );
|
|
|
|
add_filter( 'wp_get_current_commenter', array( $this, 'fake_current_commenter' ) );
|
|
$this->go_to( get_permalink( $p ) );
|
|
$found = get_echo( 'comments_template' );
|
|
remove_filter( 'wp_get_current_commenter', array( $this, 'fake_current_commenter' ) );
|
|
|
|
// Find the found comments in the markup.
|
|
preg_match_all( '|id="comment-([0-9]+)|', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
$this->assertSame( array( $comment_4, $comment_3 ), $found_cids );
|
|
}
|
|
|
|
public function fake_current_commenter( $commenter ) {
|
|
$commenter['comment_author_email'] = 'foo@example.com';
|
|
return $commenter;
|
|
}
|
|
|
|
/**
|
|
* @ticket 43857
|
|
*/
|
|
public function test_comments_list_should_include_just_posted_unapproved_comment() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$c = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_approved' => '0',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now ),
|
|
'comment_author_email' => 'foo@bar.mail',
|
|
)
|
|
);
|
|
$comment = get_comment( $c );
|
|
|
|
$this->go_to(
|
|
add_query_arg(
|
|
array(
|
|
'unapproved' => $comment->comment_ID,
|
|
'moderation-hash' => wp_hash( $comment->comment_date_gmt ),
|
|
),
|
|
get_comment_link( $comment )
|
|
)
|
|
);
|
|
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
// Find the found comment in the markup.
|
|
preg_match( '|id="comment-([0-9]+)|', $found, $matches );
|
|
|
|
$found_cid = (int) $matches[1];
|
|
$this->assertSame( $c, $found_cid );
|
|
}
|
|
|
|
/**
|
|
* @ticket 35378
|
|
*/
|
|
public function test_hierarchy_should_be_ignored_when_threading_is_disabled() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_approved' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_approved' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
)
|
|
);
|
|
$comment_3 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_approved' => '1',
|
|
'comment_parent' => $comment_1,
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'comment_order', 'asc' );
|
|
update_option( 'thread_comments', 0 );
|
|
|
|
$this->go_to( get_permalink( $p ) );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
// Find the found comments in the markup.
|
|
preg_match_all( '|id="comment-([0-9]+)|', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
$this->assertSame( array( $comment_2, $comment_3, $comment_1 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 35419
|
|
*/
|
|
public function test_pagination_calculation_should_ignore_comment_hierarchy_when_threading_is_disabled() {
|
|
$now = time();
|
|
$p = self::factory()->post->create();
|
|
$comment_1 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '1',
|
|
'comment_approved' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
)
|
|
);
|
|
$comment_2 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '2',
|
|
'comment_approved' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
$comment_3 = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => '3',
|
|
'comment_approved' => '1',
|
|
'comment_parent' => $comment_1,
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
|
|
update_option( 'thread_comments', 0 );
|
|
|
|
update_option( 'comment_order', 'asc' );
|
|
update_option( 'comments_per_page', 2 );
|
|
update_option( 'page_comments', 1 );
|
|
update_option( 'default_comments_page', 'newest' );
|
|
|
|
$this->go_to( get_permalink( $p ) );
|
|
$found = get_echo( 'comments_template' );
|
|
|
|
// Find the found comments in the markup.
|
|
preg_match_all( '|id="comment-([0-9]+)|', $found, $matches );
|
|
|
|
$found_cids = array_map( 'intval', $matches[1] );
|
|
$this->assertSame( array( $comment_3 ), $found_cids );
|
|
}
|
|
|
|
/**
|
|
* @ticket 38074
|
|
* @dataProvider data_comments_template_top_level_query_args
|
|
*
|
|
* @param array $expected Array of expected values.
|
|
* @param array $query_args Args for the 'comments_template_query_args' filter.
|
|
* @param array $top_level_query_args Args for the 'comments_template_top_level_query_args' filter.
|
|
*/
|
|
public function test_comments_template_top_level_query_args( $expected, $query_args, $top_level_query_args ) {
|
|
$now = time();
|
|
$offset = 0;
|
|
$p = self::factory()->post->create();
|
|
$comment_ids = array();
|
|
|
|
for ( $num = 1; $num <= 6; $num++ ) {
|
|
$comment_ids[ $num ] = self::factory()->comment->create(
|
|
array(
|
|
'comment_post_ID' => $p,
|
|
'comment_content' => "{$num}",
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 * $num ),
|
|
)
|
|
);
|
|
add_comment_meta( $comment_ids[ $num ], 'featured', $num > 3 ? '1' : '0' );
|
|
}
|
|
|
|
update_option( 'comment_order', 'asc' );
|
|
update_option( 'comments_per_page', 3 );
|
|
update_option( 'page_comments', 1 );
|
|
update_option( 'default_comments_page', 'newest' );
|
|
|
|
add_filter(
|
|
'comments_template_query_args',
|
|
static function ( $args ) use ( &$offset, $query_args ) {
|
|
$offset = $args['offset'];
|
|
|
|
return array_merge( $args, $query_args );
|
|
}
|
|
);
|
|
|
|
if ( ! empty( $top_level_query_args ) ) {
|
|
add_filter(
|
|
'comments_template_top_level_query_args',
|
|
static function ( $args ) use ( $top_level_query_args ) {
|
|
return array_merge( $args, $top_level_query_args );
|
|
}
|
|
);
|
|
}
|
|
|
|
$this->go_to( get_permalink( $p ) );
|
|
|
|
$found = get_echo( 'comments_template' );
|
|
preg_match_all( '/id="comment-([0-9]+)"/', $found, $matches );
|
|
|
|
$expected_ids = array();
|
|
foreach ( $expected['ids'] as $index ) {
|
|
$expected_ids[] = $comment_ids[ $index ];
|
|
}
|
|
|
|
$this->assertSame( $expected_ids, array_map( 'intval', $matches[1] ) );
|
|
$this->assertEquals( $expected['offset'], $offset );
|
|
}
|
|
|
|
public function data_comments_template_top_level_query_args() {
|
|
return array(
|
|
array(
|
|
array(
|
|
'ids' => array(),
|
|
'offset' => 3,
|
|
),
|
|
array(
|
|
'meta_key' => 'featured',
|
|
'meta_value' => '1',
|
|
),
|
|
array(),
|
|
),
|
|
array(
|
|
array(
|
|
'ids' => array(),
|
|
'offset' => 3,
|
|
),
|
|
array(
|
|
'order' => 'DESC',
|
|
'meta_key' => 'featured',
|
|
'meta_value' => '0',
|
|
),
|
|
array(),
|
|
),
|
|
array(
|
|
array(
|
|
'ids' => array( 6, 5, 4 ),
|
|
'offset' => 0,
|
|
),
|
|
array(
|
|
'meta_key' => 'featured',
|
|
'meta_value' => '1',
|
|
),
|
|
array(
|
|
'meta_key' => 'featured',
|
|
'meta_value' => '1',
|
|
),
|
|
),
|
|
array(
|
|
array(
|
|
'ids' => array( 4, 5, 6 ),
|
|
'offset' => 0,
|
|
),
|
|
array(
|
|
'order' => 'DESC',
|
|
'meta_key' => 'featured',
|
|
'meta_value' => '1',
|
|
),
|
|
array(
|
|
'order' => 'DESC',
|
|
'meta_key' => 'featured',
|
|
'meta_value' => '1',
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|