mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
After [36647], the unit test generator sequence can put a 0 into the 'post_excerpt' field of a post fixture, causing false positives. See [36520] for a parallel fix involving 'post_content'. Fixes #36622. git-svn-id: https://develop.svn.wordpress.org/trunk@37280 602fd350-edb4-49c9-b593-d223f7449a82
287 lines
7.3 KiB
PHP
287 lines
7.3 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @group query
|
|
* @group search
|
|
*/
|
|
class Tests_Query_Search extends WP_UnitTestCase {
|
|
protected $q;
|
|
protected $post_type;
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
|
|
$this->post_type = rand_str( 12 );
|
|
register_post_type( $this->post_type );
|
|
|
|
$this->q = new WP_Query();
|
|
}
|
|
|
|
function tearDown() {
|
|
_unregister_post_type( $this->post_type );
|
|
unset( $this->q );
|
|
|
|
parent::tearDown();
|
|
}
|
|
|
|
function get_search_results( $terms ) {
|
|
$args = http_build_query( array( 's' => $terms, 'post_type' => $this->post_type ) );
|
|
return $this->q->query( $args );
|
|
}
|
|
|
|
function test_search_order_title_relevance() {
|
|
foreach ( range( 1, 7 ) as $i )
|
|
self::factory()->post->create( array( 'post_content' => $i . rand_str() . ' about', 'post_type' => $this->post_type ) );
|
|
$post_id = self::factory()->post->create( array( 'post_title' => 'About', 'post_type' => $this->post_type ) );
|
|
|
|
$posts = $this->get_search_results( 'About' );
|
|
$this->assertEquals( $post_id, reset( $posts )->ID );
|
|
}
|
|
|
|
function test_search_terms_query_var() {
|
|
$terms = 'This is a search term';
|
|
$query = new WP_Query( array( 's' => 'This is a search term' ) );
|
|
$this->assertNotEquals( explode( ' ', $terms ), $query->get( 'search_terms' ) );
|
|
$this->assertEquals( array( 'search', 'term' ), $query->get( 'search_terms' ) );
|
|
}
|
|
|
|
function test_filter_stopwords() {
|
|
$terms = 'This is a search term';
|
|
add_filter( 'wp_search_stopwords', array( $this, 'filter_wp_search_stopwords' ) );
|
|
$query = new WP_Query( array( 's' => $terms ) );
|
|
remove_filter( 'wp_search_stopwords', array( $this, 'filter_wp_search_stopwords' ) );
|
|
|
|
$this->assertNotEquals( array( 'search', 'term' ), $query->get( 'search_terms' ) );
|
|
$this->assertEquals( array( 'This', 'is', 'search', 'term' ), $query->get( 'search_terms' ) );
|
|
}
|
|
|
|
function filter_wp_search_stopwords() {
|
|
return array();
|
|
}
|
|
|
|
/**
|
|
* @ticket 33988
|
|
*/
|
|
public function test_s_should_exclude_term_prefixed_with_dash() {
|
|
$p1 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => 'This post has foo but also bar',
|
|
) );
|
|
$p2 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => 'This post has only foo',
|
|
) );
|
|
|
|
$q = new WP_Query( array(
|
|
's' => 'foo -bar',
|
|
'fields' => 'ids',
|
|
) );
|
|
|
|
$this->assertEqualSets( array( $p2 ), $q->posts );
|
|
}
|
|
|
|
/**
|
|
* @ticket 33988
|
|
*/
|
|
public function test_s_should_exclude_first_term_if_prefixed_with_dash() {
|
|
$p1 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => 'This post has foo but also bar',
|
|
) );
|
|
$p2 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => 'This post has only bar',
|
|
) );
|
|
|
|
$q = new WP_Query( array(
|
|
's' => '-foo bar',
|
|
'fields' => 'ids',
|
|
) );
|
|
|
|
$this->assertEqualSets( array( $p2 ), $q->posts );
|
|
}
|
|
|
|
/**
|
|
* @ticket 33988
|
|
*/
|
|
public function test_s_should_not_exclude_for_dashes_in_the_middle_of_words() {
|
|
$p1 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => 'This post has foo but also bar',
|
|
) );
|
|
$p2 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => 'This post has only bar',
|
|
) );
|
|
$p3 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => 'This post has only foo-bar',
|
|
) );
|
|
|
|
$q = new WP_Query( array(
|
|
's' => 'foo-bar',
|
|
'fields' => 'ids',
|
|
) );
|
|
|
|
$this->assertEqualSets( array( $p3 ), $q->posts );
|
|
}
|
|
|
|
/**
|
|
* @ticket 36195
|
|
*/
|
|
public function test_s_should_not_exclude_for_dashes_between_words() {
|
|
$p1 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => 'This post has foo but also bar',
|
|
) );
|
|
$p2 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => 'This post has only bar',
|
|
) );
|
|
$p3 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => 'This post has only foo - bar',
|
|
) );
|
|
|
|
$q = new WP_Query( array(
|
|
's' => 'foo - bar',
|
|
'fields' => 'ids',
|
|
) );
|
|
|
|
$this->assertEqualSets( array( $p1, $p3 ), $q->posts );
|
|
}
|
|
|
|
/**
|
|
* @ticket 35361
|
|
*/
|
|
public function test_search_orderby_should_be_empty_when_search_string_is_longer_than_6_words_and_exclusion_operator_is_used() {
|
|
$q = new WP_Query( array(
|
|
's' => 'foo1 foo2 foo3 foo4 foo5 foo6 foo7 -bar',
|
|
'fields' => 'ids',
|
|
) );
|
|
|
|
$this->assertNotRegExp( '|ORDER BY \(CASE[^\)]+\)|', $q->request );
|
|
}
|
|
|
|
/**
|
|
* @ticket 31025
|
|
*/
|
|
public function test_s_zero() {
|
|
$p1 = $this->factory->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_title' => '1',
|
|
'post_content' => 'this post contains no zeroes',
|
|
'post_excerpt' => 'this post contains no zeroes',
|
|
) );
|
|
|
|
$p2 = $this->factory->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_title' => '0',
|
|
'post_content' => 'this post contains zeroes',
|
|
'post_excerpt' => 'this post containts zeroes',
|
|
) );
|
|
|
|
$q = new WP_Query( array(
|
|
's' => '0',
|
|
'fields' => 'ids',
|
|
) );
|
|
|
|
$this->assertEqualSets( array( $p2 ), $q->posts );
|
|
}
|
|
|
|
/**
|
|
* @ticket 35594
|
|
*/
|
|
public function test_search_should_respect_suppress_filters() {
|
|
add_filter( 'posts_search', array( $this, 'filter_posts_search' ) );
|
|
add_filter( 'posts_search_orderby', array( $this, 'filter_posts_search' ) );
|
|
$q = new WP_Query( array(
|
|
's' => 'foo',
|
|
'suppress_filters' => true,
|
|
) );
|
|
remove_filter( 'posts_search', array( $this, 'filter_posts_search' ) );
|
|
remove_filter( 'posts_search_orderby', array( $this, 'filter_posts_search' ) );
|
|
|
|
$this->assertNotContains( 'posts_search', $q->request );
|
|
}
|
|
|
|
/**
|
|
* @ticket 35762
|
|
*/
|
|
public function test_search_post_excerpt() {
|
|
$p1 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => 'This post has foo but also bar',
|
|
) );
|
|
$p2 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => '',
|
|
'post_excerpt' => 'This post has bar and baz',
|
|
) );
|
|
$p3 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_content' => '',
|
|
'post_excerpt' => 'This post has only foo',
|
|
) );
|
|
|
|
$q = new WP_Query( array(
|
|
's' => 'foo',
|
|
'fields' => 'ids',
|
|
) );
|
|
|
|
$this->assertEqualSets( array( $p1, $p3 ), $q->posts );
|
|
|
|
$q = new WP_Query( array(
|
|
's' => 'bar',
|
|
'fields' => 'ids',
|
|
) );
|
|
|
|
$this->assertEqualSets( array( $p1, $p2 ), $q->posts );
|
|
|
|
$q = new WP_Query( array(
|
|
's' => 'baz',
|
|
'fields' => 'ids',
|
|
) );
|
|
|
|
$this->assertEqualSets( array( $p2 ), $q->posts );
|
|
}
|
|
|
|
/**
|
|
* @ticket 35762
|
|
*/
|
|
public function test_search_order_title_before_excerpt_and_content() {
|
|
$p1 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_title' => 'This post has foo',
|
|
'post_content' => '',
|
|
'post_excerpt' => '',
|
|
) );
|
|
|
|
$p2 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_title' => '',
|
|
'post_content' => 'This post has foo',
|
|
'post_excerpt' => '',
|
|
) );
|
|
|
|
$p3 = self::factory()->post->create( array(
|
|
'post_status' => 'publish',
|
|
'post_title' => '',
|
|
'post_content' => '',
|
|
'post_excerpt' => 'This post has foo',
|
|
) );
|
|
|
|
$q = new WP_Query( array(
|
|
's' => 'this post has foo',
|
|
'fields' => 'ids',
|
|
'orderby' => false,
|
|
) );
|
|
|
|
$this->assertSame( array( $p1, $p3, $p2 ), $q->posts );
|
|
}
|
|
|
|
public function filter_posts_search( $sql ) {
|
|
return $sql . ' /* posts_search */';
|
|
}
|
|
}
|