mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Note: This is enforced by WPCS 3.0.0. Follow-up to [56536], [56547]. Props jrf. See #59161, #58831. git-svn-id: https://develop.svn.wordpress.org/trunk@56548 602fd350-edb4-49c9-b593-d223f7449a82
149 lines
3.9 KiB
PHP
149 lines
3.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group comment
|
|
*
|
|
* @covers ::get_comment_link
|
|
*/
|
|
class Tests_Comment_GetCommentLink extends WP_UnitTestCase {
|
|
protected static $p;
|
|
protected static $comments = array();
|
|
|
|
public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) {
|
|
$now = time();
|
|
self::$p = $factory->post->create();
|
|
|
|
self::$comments[] = $factory->comment->create(
|
|
array(
|
|
'comment_post_ID' => self::$p,
|
|
'comment_content' => '1',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
|
|
)
|
|
);
|
|
self::$comments[] = $factory->comment->create(
|
|
array(
|
|
'comment_post_ID' => self::$p,
|
|
'comment_content' => '2',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
|
|
)
|
|
);
|
|
self::$comments[] = $factory->comment->create(
|
|
array(
|
|
'comment_post_ID' => self::$p,
|
|
'comment_content' => '3',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
|
|
)
|
|
);
|
|
self::$comments[] = $factory->comment->create(
|
|
array(
|
|
'comment_post_ID' => self::$p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
|
|
)
|
|
);
|
|
self::$comments[] = $factory->comment->create(
|
|
array(
|
|
'comment_post_ID' => self::$p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 500 ),
|
|
)
|
|
);
|
|
self::$comments[] = $factory->comment->create(
|
|
array(
|
|
'comment_post_ID' => self::$p,
|
|
'comment_content' => '4',
|
|
'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 600 ),
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @ticket 34068
|
|
*/
|
|
public function test_default_comments_page_newest_default_page_should_have_cpage() {
|
|
update_option( 'page_comments', 1 );
|
|
update_option( 'default_comments_page', 'newest' );
|
|
update_option( 'comments_per_page', 2 );
|
|
|
|
$found = get_comment_link( self::$comments[1] );
|
|
|
|
$this->assertStringContainsString( 'cpage=3', $found );
|
|
}
|
|
|
|
/**
|
|
* @ticket 34068
|
|
*/
|
|
public function test_default_comments_page_newest_middle_page_should_have_cpage() {
|
|
update_option( 'page_comments', 1 );
|
|
update_option( 'default_comments_page', 'newest' );
|
|
update_option( 'comments_per_page', 2 );
|
|
|
|
$found = get_comment_link( self::$comments[3] );
|
|
|
|
$this->assertStringContainsString( 'cpage=2', $found );
|
|
}
|
|
|
|
/**
|
|
* @ticket 34068
|
|
*/
|
|
public function test_default_comments_page_newest_last_page_should_have_cpage() {
|
|
update_option( 'page_comments', 1 );
|
|
update_option( 'default_comments_page', 'newest' );
|
|
update_option( 'comments_per_page', 2 );
|
|
|
|
$found = get_comment_link( self::$comments[5] );
|
|
|
|
$this->assertStringContainsString( 'cpage=1', $found );
|
|
}
|
|
|
|
/**
|
|
* @ticket 34068
|
|
*/
|
|
public function test_default_comments_page_oldest_default_page_should_not_have_cpage() {
|
|
update_option( 'default_comments_page', 'oldest' );
|
|
update_option( 'comments_per_page', 2 );
|
|
|
|
$found = get_comment_link( self::$comments[5] );
|
|
|
|
$this->assertStringNotContainsString( 'cpage', $found );
|
|
}
|
|
|
|
/**
|
|
* @ticket 34068
|
|
*/
|
|
public function test_default_comments_page_oldest_middle_page_should_have_cpage() {
|
|
update_option( 'page_comments', 1 );
|
|
update_option( 'default_comments_page', 'oldest' );
|
|
update_option( 'comments_per_page', 2 );
|
|
|
|
$found = get_comment_link( self::$comments[3] );
|
|
|
|
$this->assertStringContainsString( 'cpage=2', $found );
|
|
}
|
|
|
|
/**
|
|
* @ticket 34068
|
|
*/
|
|
public function test_default_comments_page_oldest_last_page_should_have_cpage() {
|
|
update_option( 'page_comments', 1 );
|
|
update_option( 'default_comments_page', 'oldest' );
|
|
update_option( 'comments_per_page', 2 );
|
|
|
|
$found = get_comment_link( self::$comments[1] );
|
|
|
|
$this->assertStringContainsString( 'cpage=3', $found );
|
|
}
|
|
|
|
/**
|
|
* @ticket 34946
|
|
*/
|
|
public function test_should_not_contain_comment_page_1_when_pagination_is_disabled() {
|
|
$this->set_permalink_structure( '/%postname%/' );
|
|
update_option( 'page_comments', 0 );
|
|
|
|
$found = get_comment_link( self::$comments[1] );
|
|
|
|
$this->assertStringNotContainsString( 'comment-page-1', $found );
|
|
}
|
|
}
|