mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
WordPress' code just... wasn't. This is now dealt with. Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS. Fixes #41057. git-svn-id: https://develop.svn.wordpress.org/trunk@42343 602fd350-edb4-49c9-b593-d223f7449a82
375 lines
8.6 KiB
PHP
375 lines
8.6 KiB
PHP
<?php
|
|
/**
|
|
* @group query
|
|
*/
|
|
class Tests_Query_CommentCount extends WP_UnitTestCase {
|
|
static $post_ids = array();
|
|
public $q;
|
|
static $post_type = 'page'; // can be anything
|
|
|
|
public function setUp() {
|
|
parent::setUp();
|
|
unset( $this->q );
|
|
$this->q = new WP_Query();
|
|
}
|
|
|
|
public function tearDown() {
|
|
parent::tearDown();
|
|
unset( $this->q );
|
|
}
|
|
|
|
public static function wpSetUpBeforeClass( $factory ) {
|
|
$post_id = self::factory()->post->create(
|
|
array(
|
|
'post_content' => 1 . rand_str() . ' about',
|
|
'post_type' => self::$post_type,
|
|
)
|
|
);
|
|
self::$post_ids[1][] = $post_id;
|
|
self::factory()->comment->create( array( 'comment_post_ID' => $post_id ) );
|
|
|
|
$post_id = self::factory()->post->create(
|
|
array(
|
|
'post_content' => 1 . rand_str() . ' about',
|
|
'post_type' => self::$post_type,
|
|
)
|
|
);
|
|
self::$post_ids[4][] = $post_id;
|
|
for ( $i = 0; $i < 4; $i++ ) {
|
|
self::factory()->comment->create( array( 'comment_post_ID' => $post_id ) );
|
|
}
|
|
|
|
$post_id = self::factory()->post->create(
|
|
array(
|
|
'post_content' => 1 . rand_str() . ' about',
|
|
'post_type' => self::$post_type,
|
|
)
|
|
);
|
|
self::$post_ids[5][] = $post_id;
|
|
for ( $i = 0; $i < 5; $i++ ) {
|
|
self::factory()->comment->create( array( 'comment_post_ID' => $post_id ) );
|
|
}
|
|
|
|
$post_id = self::factory()->post->create(
|
|
array(
|
|
'post_content' => 1 . rand_str() . ' about',
|
|
'post_type' => self::$post_type,
|
|
)
|
|
);
|
|
self::$post_ids[5][] = $post_id;
|
|
for ( $i = 0; $i < 5; $i++ ) {
|
|
self::factory()->comment->create( array( 'comment_post_ID' => $post_id ) );
|
|
}
|
|
}
|
|
|
|
private function helper_get_found_post_ids() {
|
|
return wp_list_pluck( $this->q->posts, 'ID' );
|
|
}
|
|
|
|
public function test_operator_equals() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 4,
|
|
'compare' => '=',
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = self::$post_ids[4];
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
|
|
public function test_operator_greater_than() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 4,
|
|
'compare' => '>',
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = self::$post_ids[5];
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
|
|
public function test_operator_greater_than_no_results() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 6,
|
|
'compare' => '>',
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = array();
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
public function test_operator_less_than() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 6,
|
|
'compare' => '<',
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = array();
|
|
foreach ( self::$post_ids[1] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
foreach ( self::$post_ids[4] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
foreach ( self::$post_ids[5] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
|
|
public function test_operator_less_than_no_results() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 1,
|
|
'compare' => '<',
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = array();
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
|
|
|
|
public function test_operator_not_equal() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 15,
|
|
'compare' => '!=',
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = array();
|
|
foreach ( self::$post_ids[1] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
foreach ( self::$post_ids[4] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
foreach ( self::$post_ids[5] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
|
|
}
|
|
public function test_operator_equal_or_greater_than() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 4,
|
|
'compare' => '>=',
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = array();
|
|
foreach ( self::$post_ids[4] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
foreach ( self::$post_ids[5] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
|
|
public function test_operator_equal_or_greater_than_no_results() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 7,
|
|
'compare' => '>=',
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = array();
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
|
|
public function test_operator_equal_or_less_than() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 4,
|
|
'compare' => '<=',
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = array();
|
|
foreach ( self::$post_ids[1] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
foreach ( self::$post_ids[4] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
|
|
public function test_operator_equal_or_less_than_no_results() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 0,
|
|
'compare' => '<=',
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = array();
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
|
|
public function test_invalid_operator_should_fall_back_on_equals() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 5,
|
|
'compare' => '@',
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = array();
|
|
foreach ( self::$post_ids[5] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
|
|
public function test_wrong_count_no_results() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 'abc',
|
|
'compare' => '=',
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = array();
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
|
|
public function test_no_operator_no_results() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => array(
|
|
'value' => 5,
|
|
),
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = self::$post_ids[5];
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
|
|
public function test_empty_non_numeric_string_should_be_ignored() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => '',
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = array();
|
|
foreach ( self::$post_ids[1] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
foreach ( self::$post_ids[4] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
foreach ( self::$post_ids[5] as $expected_id ) {
|
|
$expected[] = $expected_id;
|
|
}
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
|
|
public function test_simple_count() {
|
|
$args = array(
|
|
'post_type' => self::$post_type,
|
|
'posts_per_page' => -1,
|
|
'comment_count' => 5,
|
|
);
|
|
$this->q->query( $args );
|
|
|
|
$found_post_ids = $this->helper_get_found_post_ids();
|
|
|
|
$expected = self::$post_ids[5];
|
|
|
|
$this->assertEqualSets( $found_post_ids, $expected );
|
|
}
|
|
}
|
|
|