123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728 |
- <?php
- /**
- * Test WP_User Query, in wp-includes/user.php
- *
- * @group user
- */
- class Tests_User_Query extends WP_UnitTestCase {
- protected static $author_ids;
- protected static $sub_ids;
- protected static $editor_ids;
- protected static $contrib_id;
- protected static $admin_ids;
- protected $user_id;
- public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) {
- self::$author_ids = $factory->user->create_many(
- 4,
- array(
- 'role' => 'author',
- )
- );
- self::$sub_ids = $factory->user->create_many(
- 2,
- array(
- 'role' => 'subscriber',
- )
- );
- self::$editor_ids = $factory->user->create_many(
- 3,
- array(
- 'role' => 'editor',
- )
- );
- self::$contrib_id = $factory->user->create(
- array(
- 'role' => 'contributor',
- )
- );
- self::$admin_ids = $factory->user->create_many(
- 2,
- array(
- 'role' => 'administrator',
- )
- );
- }
- function test_get_and_set() {
- $users = new WP_User_Query();
- $this->assertEquals( '', $users->get( 'fields' ) );
- if ( isset( $users->query_vars['fields'] ) ) {
- $this->assertSame( '', $users->query_vars['fields'] );
- }
- $users->set( 'fields', 'all' );
- $this->assertSame( 'all', $users->get( 'fields' ) );
- $this->assertSame( 'all', $users->query_vars['fields'] );
- $users->set( 'fields', '' );
- $this->assertSame( '', $users->get( 'fields' ) );
- $this->assertSame( '', $users->query_vars['fields'] );
- $this->assertNull( $users->get( 'does-not-exist' ) );
- }
- public function test_include_single() {
- $q = new WP_User_Query(
- array(
- 'fields' => '',
- 'include' => self::$author_ids[0],
- )
- );
- $ids = $q->get_results();
- $this->assertEqualSets( array( self::$author_ids[0] ), $ids );
- }
- public function test_include_comma_separated() {
- $q = new WP_User_Query(
- array(
- 'fields' => '',
- 'include' => self::$author_ids[0] . ', ' . self::$author_ids[2],
- )
- );
- $ids = $q->get_results();
- $this->assertEqualSets( array( self::$author_ids[0], self::$author_ids[2] ), $ids );
- }
- public function test_include_array() {
- $q = new WP_User_Query(
- array(
- 'fields' => '',
- 'include' => array( self::$author_ids[0], self::$author_ids[2] ),
- )
- );
- $ids = $q->get_results();
- $this->assertEqualSets( array( self::$author_ids[0], self::$author_ids[2] ), $ids );
- }
- public function test_include_array_bad_values() {
- $q = new WP_User_Query(
- array(
- 'fields' => '',
- 'include' => array( self::$author_ids[0], 'foo', self::$author_ids[2] ),
- )
- );
- $ids = $q->get_results();
- $this->assertEqualSets( array( self::$author_ids[0], self::$author_ids[2] ), $ids );
- }
- public function test_exclude() {
- $q = new WP_User_Query(
- array(
- 'fields' => '',
- 'exclude' => self::$author_ids[1],
- )
- );
- $ids = $q->get_results();
- // Indirect test in order to ignore default user created during installation.
- $this->assertNotEmpty( $ids );
- $this->assertNotContains( self::$author_ids[1], $ids );
- }
- public function test_get_all() {
- $users = new WP_User_Query( array( 'blog_id' => get_current_blog_id() ) );
- $users = $users->get_results();
- // +1 for the default user created during installation.
- $this->assertSame( 13, count( $users ) );
- foreach ( $users as $user ) {
- $this->assertInstanceOf( 'WP_User', $user );
- }
- $users = new WP_User_Query(
- array(
- 'blog_id' => get_current_blog_id(),
- 'fields' => 'all_with_meta',
- )
- );
- $users = $users->get_results();
- $this->assertSame( 13, count( $users ) );
- foreach ( $users as $user ) {
- $this->assertInstanceOf( 'WP_User', $user );
- }
- }
- /**
- * @ticket 39297
- */
- public function test_get_total_is_int() {
- $users = new WP_User_Query( array( 'blog_id' => get_current_blog_id() ) );
- $total_users = $users->get_total();
- $this->assertSame( 13, $total_users );
- }
- /**
- * @dataProvider orderby_should_convert_non_prefixed_keys_data
- */
- public function test_orderby_should_convert_non_prefixed_keys( $short_key, $full_key ) {
- $q = new WP_User_Query(
- array(
- 'orderby' => $short_key,
- )
- );
- $this->assertContains( "ORDER BY $full_key", $q->query_orderby );
- }
- public function orderby_should_convert_non_prefixed_keys_data() {
- return array(
- array( 'nicename', 'user_nicename' ),
- array( 'email', 'user_email' ),
- array( 'url', 'user_url' ),
- array( 'registered', 'user_registered' ),
- array( 'name', 'display_name' ),
- );
- }
- public function test_orderby_meta_value() {
- update_user_meta( self::$author_ids[0], 'last_name', 'Jones' );
- update_user_meta( self::$author_ids[1], 'last_name', 'Albert' );
- update_user_meta( self::$author_ids[2], 'last_name', 'Zorro' );
- $q = new WP_User_Query(
- array(
- 'include' => self::$author_ids,
- 'meta_key' => 'last_name',
- 'orderby' => 'meta_value',
- 'fields' => 'ids',
- )
- );
- $expected = array( self::$author_ids[3], self::$author_ids[1], self::$author_ids[0], self::$author_ids[2] );
- $this->assertEquals( $expected, $q->get_results() );
- }
- /**
- * @ticket 27887
- */
- public function test_orderby_meta_value_num() {
- update_user_meta( self::$author_ids[0], 'user_age', '101' );
- update_user_meta( self::$author_ids[1], 'user_age', '20' );
- update_user_meta( self::$author_ids[2], 'user_age', '25' );
- $q = new WP_User_Query(
- array(
- 'include' => self::$author_ids,
- 'meta_key' => 'user_age',
- 'orderby' => 'meta_value_num',
- 'fields' => 'ids',
- )
- );
- $expected = array( self::$author_ids[1], self::$author_ids[2], self::$author_ids[0] );
- $this->assertEquals( $expected, $q->get_results() );
- }
- /**
- * @ticket 31265
- */
- public function test_orderby_somekey_where_meta_key_is_somekey() {
- update_user_meta( self::$author_ids[0], 'foo', 'zzz' );
- update_user_meta( self::$author_ids[1], 'foo', 'aaa' );
- update_user_meta( self::$author_ids[2], 'foo', 'jjj' );
- $q = new WP_User_Query(
- array(
- 'include' => self::$author_ids,
- 'meta_key' => 'foo',
- 'orderby' => 'foo',
- 'fields' => 'ids',
- )
- );
- $expected = array( self::$author_ids[1], self::$author_ids[2], self::$author_ids[0] );
- $this->assertEquals( $expected, $q->get_results() );
- }
- /**
- * @ticket 31265
- */
- public function test_orderby_clause_key() {
- add_user_meta( self::$author_ids[0], 'foo', 'aaa' );
- add_user_meta( self::$author_ids[1], 'foo', 'zzz' );
- add_user_meta( self::$author_ids[2], 'foo', 'jjj' );
- $q = new WP_User_Query(
- array(
- 'fields' => 'ids',
- 'meta_query' => array(
- 'foo_key' => array(
- 'key' => 'foo',
- 'compare' => 'EXISTS',
- ),
- ),
- 'orderby' => 'foo_key',
- 'order' => 'DESC',
- )
- );
- $this->assertEquals( array( self::$author_ids[1], self::$author_ids[2], self::$author_ids[0] ), $q->results );
- }
- /**
- * @ticket 31265
- */
- public function test_orderby_clause_key_as_secondary_sort() {
- $u1 = self::factory()->user->create(
- array(
- 'user_registered' => '2015-01-28 03:00:00',
- )
- );
- $u2 = self::factory()->user->create(
- array(
- 'user_registered' => '2015-01-28 05:00:00',
- )
- );
- $u3 = self::factory()->user->create(
- array(
- 'user_registered' => '2015-01-28 03:00:00',
- )
- );
- add_user_meta( $u1, 'foo', 'jjj' );
- add_user_meta( $u2, 'foo', 'zzz' );
- add_user_meta( $u3, 'foo', 'aaa' );
- $q = new WP_User_Query(
- array(
- 'fields' => 'ids',
- 'meta_query' => array(
- 'foo_key' => array(
- 'key' => 'foo',
- 'compare' => 'EXISTS',
- ),
- ),
- 'orderby' => array(
- 'comment_date' => 'asc',
- 'foo_key' => 'asc',
- ),
- )
- );
- $this->assertEquals( array( $u3, $u1, $u2 ), $q->results );
- }
- /**
- * @ticket 31265
- */
- public function test_orderby_more_than_one_clause_key() {
- add_user_meta( self::$author_ids[0], 'foo', 'jjj' );
- add_user_meta( self::$author_ids[1], 'foo', 'zzz' );
- add_user_meta( self::$author_ids[2], 'foo', 'jjj' );
- add_user_meta( self::$author_ids[0], 'bar', 'aaa' );
- add_user_meta( self::$author_ids[1], 'bar', 'ccc' );
- add_user_meta( self::$author_ids[2], 'bar', 'bbb' );
- $q = new WP_User_Query(
- array(
- 'fields' => 'ids',
- 'meta_query' => array(
- 'foo_key' => array(
- 'key' => 'foo',
- 'compare' => 'EXISTS',
- ),
- 'bar_key' => array(
- 'key' => 'bar',
- 'compare' => 'EXISTS',
- ),
- ),
- 'orderby' => array(
- 'foo_key' => 'asc',
- 'bar_key' => 'desc',
- ),
- )
- );
- $this->assertEquals( array( self::$author_ids[2], self::$author_ids[0], self::$author_ids[1] ), $q->results );
- }
- /**
- * @ticket 30064
- */
- public function test_orderby_include_with_empty_include() {
- $q = new WP_User_Query(
- array(
- 'orderby' => 'include',
- )
- );
- $this->assertContains( 'ORDER BY user_login', $q->query_orderby );
- }
- /**
- * @ticket 30064
- */
- public function test_orderby_include() {
- global $wpdb;
- $q = new WP_User_Query(
- array(
- 'orderby' => 'include',
- 'include' => array( self::$author_ids[1], self::$author_ids[0], self::$author_ids[3] ),
- 'fields' => '',
- )
- );
- $expected_orderby = 'ORDER BY FIELD( ' . $wpdb->users . '.ID, ' . self::$author_ids[1] . ',' . self::$author_ids[0] . ',' . self::$author_ids[3] . ' )';
- $this->assertContains( $expected_orderby, $q->query_orderby );
- // assertEquals() respects order but ignores type (get_results() returns numeric strings).
- $this->assertEquals( array( self::$author_ids[1], self::$author_ids[0], self::$author_ids[3] ), $q->get_results() );
- }
- /**
- * @ticket 30064
- */
- public function test_orderby_include_duplicate_values() {
- global $wpdb;
- $q = new WP_User_Query(
- array(
- 'orderby' => 'include',
- 'include' => array( self::$author_ids[1], self::$author_ids[0], self::$author_ids[1], self::$author_ids[3] ),
- 'fields' => '',
- )
- );
- $expected_orderby = 'ORDER BY FIELD( ' . $wpdb->users . '.ID, ' . self::$author_ids[1] . ',' . self::$author_ids[0] . ',' . self::$author_ids[3] . ' )';
- $this->assertContains( $expected_orderby, $q->query_orderby );
- // assertEquals() respects order but ignores type (get_results() returns numeric strings).
- $this->assertEquals( array( self::$author_ids[1], self::$author_ids[0], self::$author_ids[3] ), $q->get_results() );
- }
- /**
- * @ticket 31265
- */
- public function test_orderby_space_separated() {
- $q = new WP_User_Query(
- array(
- 'orderby' => 'login nicename',
- 'order' => 'ASC',
- )
- );
- $this->assertContains( 'ORDER BY user_login ASC, user_nicename ASC', $q->query_orderby );
- }
- /**
- * @ticket 31265
- */
- public function test_orderby_flat_array() {
- $q = new WP_User_Query(
- array(
- 'orderby' => array( 'login', 'nicename' ),
- )
- );
- $this->assertContains( 'ORDER BY user_login ASC, user_nicename ASC', $q->query_orderby );
- }
- /**
- * @ticket 31265
- */
- public function test_orderby_array_contains_invalid_item() {
- $q = new WP_User_Query(
- array(
- 'orderby' => array( 'login', 'foo', 'nicename' ),
- )
- );
- $this->assertContains( 'ORDER BY user_login ASC, user_nicename ASC', $q->query_orderby );
- }
- /**
- * @ticket 31265
- */
- public function test_orderby_array_contains_all_invalid_items() {
- $q = new WP_User_Query(
- array(
- 'orderby' => array( 'foo', 'bar', 'baz' ),
- )
- );
- $this->assertContains( 'ORDER BY user_login', $q->query_orderby );
- }
- /**
- * @ticket 31265
- */
- public function test_orderby_array() {
- $q = new WP_User_Query(
- array(
- 'orderby' => array(
- 'login' => 'DESC',
- 'nicename' => 'ASC',
- 'email' => 'DESC',
- ),
- )
- );
- $this->assertContains( 'ORDER BY user_login DESC, user_nicename ASC, user_email DESC', $q->query_orderby );
- }
- /**
- * @ticket 31265
- */
- public function test_orderby_array_should_discard_invalid_columns() {
- $q = new WP_User_Query(
- array(
- 'orderby' => array(
- 'login' => 'DESC',
- 'foo' => 'ASC',
- 'email' => 'ASC',
- ),
- )
- );
- $this->assertContains( 'ORDER BY user_login DESC, user_email ASC', $q->query_orderby );
- }
- /**
- * @ticket 28631
- */
- function test_number() {
- // +1 for the default user created by the test suite.
- $users = new WP_User_Query( array( 'blog_id' => get_current_blog_id() ) );
- $users = $users->get_results();
- $this->assertSame( 13, count( $users ) );
- $users = new WP_User_Query(
- array(
- 'blog_id' => get_current_blog_id(),
- 'number' => 10,
- )
- );
- $users = $users->get_results();
- $this->assertSame( 10, count( $users ) );
- $users = new WP_User_Query(
- array(
- 'blog_id' => get_current_blog_id(),
- 'number' => 2,
- )
- );
- $users = $users->get_results();
- $this->assertSame( 2, count( $users ) );
- $users = new WP_User_Query(
- array(
- 'blog_id' => get_current_blog_id(),
- 'number' => -1,
- )
- );
- $users = $users->get_results();
- $this->assertSame( 13, count( $users ) );
- }
- /**
- * @ticket 21119
- */
- function test_prepare_query() {
- $query = new WP_User_Query();
- $this->assertEmpty( $query->query_fields );
- $this->assertEmpty( $query->query_from );
- $this->assertEmpty( $query->query_limit );
- $this->assertEmpty( $query->query_orderby );
- $this->assertEmpty( $query->query_where );
- $this->assertEmpty( $query->query_vars );
- $_query_vars = $query->query_vars;
- $query->prepare_query();
- $this->assertNotEmpty( $query->query_fields );
- $this->assertNotEmpty( $query->query_from );
- $this->assertEmpty( $query->query_limit );
- $this->assertNotEmpty( $query->query_orderby );
- $this->assertNotEmpty( $query->query_where );
- $this->assertNotEmpty( $query->query_vars );
- $this->assertNotEquals( $_query_vars, $query->query_vars );
- // All values get reset.
- $query->prepare_query( array( 'number' => 8 ) );
- $this->assertNotEmpty( $query->query_limit );
- $this->assertSame( 'LIMIT 0, 8', $query->query_limit );
- // All values get reset.
- $query->prepare_query( array( 'fields' => 'all' ) );
- $this->assertEmpty( $query->query_limit );
- $this->assertEquals( '', $query->query_limit );
- $_query_vars = $query->query_vars;
- $query->prepare_query();
- $this->assertSame( $_query_vars, $query->query_vars );
- $query->prepare_query( array( 'number' => -1 ) );
- $this->assertNotEquals( 'LIMIT -1', $query->query_limit );
- $this->assertEmpty( $query->query_limit );
- }
- public function test_meta_vars_should_be_converted_to_meta_query() {
- $q = new WP_User_Query(
- array(
- 'meta_key' => 'foo',
- 'meta_value' => '5',
- 'meta_compare' => '>',
- 'meta_type' => 'SIGNED',
- )
- );
- // Multisite adds a 'blog_id' clause, so we have to find the 'foo' clause.
- $mq_clauses = $q->meta_query->get_clauses();
- foreach ( $mq_clauses as $mq_clause ) {
- if ( 'foo' === $mq_clause['key'] ) {
- $clause = $mq_clause;
- }
- }
- $this->assertSame( 'foo', $clause['key'] );
- $this->assertSame( '5', $clause['value'] );
- $this->assertSame( '>', $clause['compare'] );
- $this->assertSame( 'SIGNED', $clause['type'] );
- }
- /**
- * @ticket 23849
- */
- function test_meta_query_with_role() {
- add_user_meta( self::$author_ids[0], 'foo', 'bar' );
- add_user_meta( self::$author_ids[1], 'foo', 'baz' );
- // Users with foo = bar or baz restricted to the author role.
- $query = new WP_User_Query(
- array(
- 'fields' => '',
- 'role' => 'author',
- 'meta_query' => array(
- 'relation' => 'OR',
- array(
- 'key' => 'foo',
- 'value' => 'bar',
- ),
- array(
- 'key' => 'foo',
- 'value' => 'baz',
- ),
- ),
- )
- );
- $this->assertEquals( array( self::$author_ids[0], self::$author_ids[1] ), $query->get_results() );
- }
- public function test_roles_and_caps_should_be_populated_for_default_value_of_blog_id() {
- $query = new WP_User_Query(
- array(
- 'include' => self::$author_ids[0],
- )
- );
- $found = $query->get_results();
- $this->assertNotEmpty( $found );
- $user = reset( $found );
- $this->assertSame( array( 'author' ), $user->roles );
- $this->assertSame( array( 'author' => true ), $user->caps );
- }
- /**
- * @group ms-excluded
- */
- public function test_roles_and_caps_should_be_populated_for_explicit_value_of_blog_id_on_nonms() {
- $query = new WP_User_Query(
- array(
- 'include' => self::$author_ids[0],
- 'blog_id' => get_current_blog_id(),
- )
- );
- $found = $query->get_results();
- $this->assertNotEmpty( $found );
- $user = reset( $found );
- $this->assertSame( array( 'author' ), $user->roles );
- $this->assertSame( array( 'author' => true ), $user->caps );
- }
- /**
- * @group ms-required
- */
- public function test_roles_and_caps_should_be_populated_for_explicit_value_of_current_blog_id_on_ms() {
- $query = new WP_User_Query(
- array(
- 'include' => self::$author_ids[0],
- 'blog_id' => get_current_blog_id(),
- )
- );
- $found = $query->get_results();
- $this->assertNotEmpty( $found );
- $user = reset( $found );
- $this->assertSame( array( 'author' ), $user->roles );
- $this->assertSame( array( 'author' => true ), $user->caps );
- }
- /**
- * @group ms-required
- */
- public function test_roles_and_caps_should_be_populated_for_explicit_value_of_different_blog_id_on_ms_when_fields_all_with_meta() {
- $b = self::factory()->blog->create();
- add_user_to_blog( $b, self::$author_ids[0], 'author' );
- $query = new WP_User_Query(
- array(
- 'include' => self::$author_ids[0],
- 'blog_id' => $b,
- 'fields' => 'all_with_meta',
- )
- );
- $found = $query->get_results();
- $this->assertNotEmpty( $found );
- $user = reset( $found );
- $this->assertSame( array( 'author' ), $user->roles );
- $this->assertSame( array( 'author' => true ), $user->caps );
- }
- /**
- * @ticket 31878
- * @group ms-required
- */
- public function test_roles_and_caps_should_be_populated_for_explicit_value_of_different_blog_id_on_ms_when_fields_all() {
- $b = self::factory()->blog->create();
- add_user_to_blog( $b, self::$author_ids[0], 'author' );
- $query = new WP_User_Query(
- array(
- 'fields' => 'all',
- 'include' => self::$author_ids[0],
- 'blog_id' => $b,
- )
- );
- $found = $query->get_results();
- $this->assertNotEmpty( $found );
- $user = reset( $found );
- $this->assertSame( array( 'author' ), $user->roles );
- $this->assertSame( array( 'author' => true ), $user->caps );
- }
- /**
- * @ticket 32019
- * @group ms-required
- */
- public function test_who_authors() {
- $b = self::factory()->blog->create();
- add_user_to_blog( $b, self::$author_ids[0], 'subscriber' );
- add_user_to_blog( $b, self::$author_ids[1], 'author' );
- add_user_to_blog( $b, self::$author_ids[2], 'editor' );
- $q = new WP_User_Query(
- array(
- 'who' => 'authors',
- 'blog_id' => $b,
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $this->assertNotContains( self::$author_ids[0], $found );
- $this->assertContains( self::$author_ids[1], $found );
- $this->assertContains( self::$author_ids[2], $found );
- }
- /**
- * @ticket 32019
- * @group ms-required
- */
- public function test_who_authors_should_work_alongside_meta_query() {
- $b = self::factory()->blog->create();
- add_user_to_blog( $b, self::$author_ids[0], 'subscriber' );
- add_user_to_blog( $b, self::$author_ids[1], 'author' );
- add_user_to_blog( $b, self::$author_ids[2], 'editor' );
- add_user_meta( self::$author_ids[1], 'foo', 'bar' );
- add_user_meta( self::$author_ids[2], 'foo', 'baz' );
- $q = new WP_User_Query(
- array(
- 'who' => 'authors',
- 'blog_id' => $b,
- 'meta_query' => array(
- array(
- 'key' => 'foo',
- 'value' => 'bar',
- ),
- ),
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $this->assertNotContains( self::$author_ids[0], $found );
- $this->assertContains( self::$author_ids[1], $found );
- $this->assertNotContains( self::$author_ids[2], $found );
- }
- /**
- * @ticket 36724
- * @group ms-required
- */
- public function test_who_authors_should_work_alongside_meta_params() {
- $b = self::factory()->blog->create();
- add_user_to_blog( $b, self::$author_ids[0], 'subscriber' );
- add_user_to_blog( $b, self::$author_ids[1], 'author' );
- add_user_to_blog( $b, self::$author_ids[2], 'editor' );
- add_user_meta( self::$author_ids[1], 'foo', 'bar' );
- add_user_meta( self::$author_ids[2], 'foo', 'baz' );
- $q = new WP_User_Query(
- array(
- 'who' => 'authors',
- 'blog_id' => $b,
- 'meta_key' => 'foo',
- 'meta_value' => 'bar',
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $this->assertNotContains( self::$author_ids[0], $found );
- $this->assertContains( self::$author_ids[1], $found );
- $this->assertNotContains( self::$author_ids[2], $found );
- }
- /**
- * @ticket 32250
- */
- public function test_has_published_posts_with_value_true_should_show_authors_of_posts_in_public_post_types() {
- register_post_type( 'wptests_pt_public', array( 'public' => true ) );
- register_post_type( 'wptests_pt_private', array( 'public' => false ) );
- self::factory()->post->create(
- array(
- 'post_author' => self::$author_ids[0],
- 'post_status' => 'publish',
- 'post_type' => 'wptests_pt_public',
- )
- );
- self::factory()->post->create(
- array(
- 'post_author' => self::$author_ids[1],
- 'post_status' => 'publish',
- 'post_type' => 'wptests_pt_private',
- )
- );
- $q = new WP_User_Query(
- array(
- 'has_published_posts' => true,
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $expected = array( self::$author_ids[0] );
- $this->assertSameSets( $expected, $found );
- }
- /**
- * @ticket 32250
- */
- public function test_has_published_posts_should_obey_post_types() {
- register_post_type( 'wptests_pt_public', array( 'public' => true ) );
- register_post_type( 'wptests_pt_private', array( 'public' => false ) );
- self::factory()->post->create(
- array(
- 'post_author' => self::$author_ids[0],
- 'post_status' => 'publish',
- 'post_type' => 'wptests_pt_public',
- )
- );
- self::factory()->post->create(
- array(
- 'post_author' => self::$author_ids[1],
- 'post_status' => 'publish',
- 'post_type' => 'wptests_pt_private',
- )
- );
- self::factory()->post->create(
- array(
- 'post_author' => self::$author_ids[2],
- 'post_status' => 'publish',
- 'post_type' => 'post',
- )
- );
- $q = new WP_User_Query(
- array(
- 'has_published_posts' => array( 'wptests_pt_private', 'post' ),
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $expected = array( self::$author_ids[1], self::$author_ids[2] );
- $this->assertSameSets( $expected, $found );
- }
- /**
- * @ticket 32250
- */
- public function test_has_published_posts_should_ignore_non_published_posts() {
- register_post_type( 'wptests_pt_public', array( 'public' => true ) );
- register_post_type( 'wptests_pt_private', array( 'public' => false ) );
- self::factory()->post->create(
- array(
- 'post_author' => self::$author_ids[0],
- 'post_status' => 'draft',
- 'post_type' => 'wptests_pt_public',
- )
- );
- self::factory()->post->create(
- array(
- 'post_author' => self::$author_ids[1],
- 'post_status' => 'inherit',
- 'post_type' => 'wptests_pt_private',
- )
- );
- self::factory()->post->create(
- array(
- 'post_author' => self::$author_ids[2],
- 'post_status' => 'publish',
- 'post_type' => 'post',
- )
- );
- $q = new WP_User_Query(
- array(
- 'has_published_posts' => array( 'wptests_pt_public', 'wptests_pt_private', 'post' ),
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $expected = array( self::$author_ids[2] );
- $this->assertSameSets( $expected, $found );
- }
- /**
- * @ticket 32250
- * @group ms-required
- */
- public function test_has_published_posts_should_respect_blog_id() {
- $blogs = self::factory()->blog->create_many( 2 );
- add_user_to_blog( $blogs[0], self::$author_ids[0], 'author' );
- add_user_to_blog( $blogs[0], self::$author_ids[1], 'author' );
- add_user_to_blog( $blogs[1], self::$author_ids[0], 'author' );
- add_user_to_blog( $blogs[1], self::$author_ids[1], 'author' );
- switch_to_blog( $blogs[0] );
- self::factory()->post->create(
- array(
- 'post_author' => self::$author_ids[0],
- 'post_status' => 'publish',
- 'post_type' => 'post',
- )
- );
- restore_current_blog();
- switch_to_blog( $blogs[1] );
- self::factory()->post->create(
- array(
- 'post_author' => self::$author_ids[1],
- 'post_status' => 'publish',
- 'post_type' => 'post',
- )
- );
- restore_current_blog();
- $q = new WP_User_Query(
- array(
- 'has_published_posts' => array( 'post' ),
- 'blog_id' => $blogs[1],
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $expected = array( self::$author_ids[1] );
- $this->assertSameSets( $expected, $found );
- }
- /**
- * @ticket 32592
- */
- public function test_top_level_or_meta_query_should_eliminate_duplicate_matches() {
- add_user_meta( self::$author_ids[0], 'foo', 'bar' );
- add_user_meta( self::$author_ids[1], 'foo', 'bar' );
- add_user_meta( self::$author_ids[0], 'foo2', 'bar2' );
- $q = new WP_User_Query(
- array(
- 'meta_query' => array(
- 'relation' => 'OR',
- array(
- 'key' => 'foo',
- 'value' => 'bar',
- ),
- array(
- 'key' => 'foo2',
- 'value' => 'bar2',
- ),
- ),
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $expected = array( self::$author_ids[0], self::$author_ids[1] );
- $this->assertSameSets( $expected, $found );
- }
- /**
- * @ticket 32592
- */
- public function test_nested_or_meta_query_should_eliminate_duplicate_matches() {
- add_user_meta( self::$author_ids[0], 'foo', 'bar' );
- add_user_meta( self::$author_ids[1], 'foo', 'bar' );
- add_user_meta( self::$author_ids[0], 'foo2', 'bar2' );
- add_user_meta( self::$author_ids[1], 'foo3', 'bar3' );
- $q = new WP_User_Query(
- array(
- 'meta_query' => array(
- 'relation' => 'AND',
- array(
- 'key' => 'foo',
- 'value' => 'bar',
- ),
- array(
- 'relation' => 'OR',
- array(
- 'key' => 'foo',
- 'value' => 'bar',
- ),
- array(
- 'key' => 'foo2',
- 'value' => 'bar2',
- ),
- ),
- ),
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $expected = array( self::$author_ids[0], self::$author_ids[1] );
- $this->assertSameSets( $expected, $found );
- }
- /**
- * @ticket 36624
- */
- public function test_nicename_returns_user_with_nicename() {
- wp_update_user(
- array(
- 'ID' => self::$author_ids[0],
- 'user_nicename' => 'peter',
- )
- );
- $q = new WP_User_Query(
- array(
- 'nicename' => 'peter',
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $expected = array( self::$author_ids[0] );
- $this->assertContains( "AND user_nicename = 'peter'", $q->query_where );
- $this->assertSameSets( $expected, $found );
- }
- /**
- * @ticket 36624
- */
- public function test_nicename__in_returns_users_with_included_nicenames() {
- wp_update_user(
- array(
- 'ID' => self::$author_ids[0],
- 'user_nicename' => 'peter',
- )
- );
- wp_update_user(
- array(
- 'ID' => self::$author_ids[1],
- 'user_nicename' => 'paul',
- )
- );
- wp_update_user(
- array(
- 'ID' => self::$author_ids[2],
- 'user_nicename' => 'mary',
- )
- );
- $q = new WP_User_Query(
- array(
- 'nicename__in' => array( 'peter', 'paul', 'mary' ),
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $expected = array( self::$author_ids[0], self::$author_ids[1], self::$author_ids[2] );
- $this->assertContains( "AND user_nicename IN ( 'peter','paul','mary' )", $q->query_where );
- $this->assertSameSets( $expected, $found );
- }
- /**
- * @ticket 36624
- */
- public function test_nicename__not_in_returns_users_without_included_nicenames() {
- wp_update_user(
- array(
- 'ID' => self::$author_ids[0],
- 'user_nicename' => 'peter',
- )
- );
- wp_update_user(
- array(
- 'ID' => self::$author_ids[1],
- 'user_nicename' => 'paul',
- )
- );
- wp_update_user(
- array(
- 'ID' => self::$author_ids[2],
- 'user_nicename' => 'mary',
- )
- );
- $q = new WP_User_Query(
- array(
- 'nicename__not_in' => array( 'peter', 'paul', 'mary' ),
- )
- );
- $found_count = count( $q->get_results() );
- $expected_count = 10; // 13 total users minus 3 from query.
- $this->assertContains( "AND user_nicename NOT IN ( 'peter','paul','mary' )", $q->query_where );
- $this->assertSame( $expected_count, $found_count );
- }
- /**
- * @ticket 36624
- */
- public function test_orderby_nicename__in() {
- wp_update_user(
- array(
- 'ID' => self::$author_ids[0],
- 'user_nicename' => 'peter',
- )
- );
- wp_update_user(
- array(
- 'ID' => self::$author_ids[1],
- 'user_nicename' => 'paul',
- )
- );
- wp_update_user(
- array(
- 'ID' => self::$author_ids[2],
- 'user_nicename' => 'mary',
- )
- );
- $q = new WP_User_Query(
- array(
- 'nicename__in' => array( 'mary', 'peter', 'paul' ),
- 'orderby' => 'nicename__in',
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $expected = array( self::$author_ids[2], self::$author_ids[0], self::$author_ids[1] );
- $this->assertContains( "FIELD( user_nicename, 'mary','peter','paul' )", $q->query_orderby );
- $this->assertSame( $expected, $found );
- }
- /**
- * @ticket 36624
- */
- public function test_login_returns_user_with_login() {
- $user_login = get_userdata( self::$author_ids[0] )->user_login;
- $q = new WP_User_Query(
- array(
- 'login' => $user_login,
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $expected = array( self::$author_ids[0] );
- $this->assertContains( "AND user_login = '$user_login'", $q->query_where );
- $this->assertSameSets( $expected, $found );
- }
- /**
- * @ticket 36624
- */
- public function test_login__in_returns_users_with_included_logins() {
- $user_login1 = get_userdata( self::$author_ids[0] )->user_login;
- $user_login2 = get_userdata( self::$author_ids[1] )->user_login;
- $user_login3 = get_userdata( self::$author_ids[2] )->user_login;
- $q = new WP_User_Query(
- array(
- 'login__in' => array( $user_login1, $user_login2, $user_login3 ),
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $expected = array( self::$author_ids[0], self::$author_ids[1], self::$author_ids[2] );
- $this->assertContains( "AND user_login IN ( '$user_login1','$user_login2','$user_login3' )", $q->query_where );
- $this->assertSameSets( $expected, $found );
- }
- /**
- * @ticket 36624
- */
- public function test_login__not_in_returns_users_without_included_logins() {
- $user_login1 = get_userdata( self::$author_ids[0] )->user_login;
- $user_login2 = get_userdata( self::$author_ids[1] )->user_login;
- $user_login3 = get_userdata( self::$author_ids[2] )->user_login;
- $q = new WP_User_Query(
- array(
- 'login__not_in' => array( $user_login1, $user_login2, $user_login3 ),
- )
- );
- $found_count = count( $q->get_results() );
- $expected_count = 10; // 13 total users minus 3 from query.
- $this->assertContains( "AND user_login NOT IN ( '$user_login1','$user_login2','$user_login3' )", $q->query_where );
- $this->assertSame( $expected_count, $found_count );
- }
- /**
- * @ticket 36624
- */
- public function test_orderby_login__in() {
- $user_login1 = get_userdata( self::$author_ids[0] )->user_login;
- $user_login2 = get_userdata( self::$author_ids[1] )->user_login;
- $user_login3 = get_userdata( self::$author_ids[2] )->user_login;
- $q = new WP_User_Query(
- array(
- 'login__in' => array( $user_login2, $user_login3, $user_login1 ),
- 'orderby' => 'login__in',
- )
- );
- $found = wp_list_pluck( $q->get_results(), 'ID' );
- $expected = array( self::$author_ids[1], self::$author_ids[2], self::$author_ids[0] );
- $this->assertContains( "FIELD( user_login, '$user_login2','$user_login3','$user_login1' )", $q->query_orderby );
- $this->assertSame( $expected, $found );
- }
- /**
- * @ticket 25145
- */
- public function test_paged() {
- $q = new WP_User_Query(
- array(
- 'number' => 2,
- 'paged' => 2,
- 'orderby' => 'ID',
- 'order' => 'DESC', // Avoid funkiness with user 1.
- 'fields' => 'ids',
- )
- );
- $this->assertEquals( array( self::$contrib_id, self::$editor_ids[2] ), $q->results );
- }
- /**
- * @ticket 33449
- */
- public function test_query_vars_should_be_filled_in_after_pre_get_users() {
- $query_vars = array( 'blog_id', 'role', 'meta_key', 'meta_value', 'meta_compare', 'include', 'exclude', 'search', 'search_columns', 'orderby', 'order', 'offset', 'number', 'paged', 'count_total', 'fields', 'who', 'has_published_posts' );
- add_action( 'pre_get_users', array( $this, 'filter_pre_get_users_args' ) );
- $q = new WP_User_Query( array_fill_keys( $query_vars, '1' ) );
- remove_action( 'pre_get_users', array( $this, 'filter_pre_get_users_args' ) );
- foreach ( $query_vars as $query_var ) {
- $this->assertTrue( array_key_exists( $query_var, $q->query_vars ), "$query_var does not exist." );
- }
- }
- public function filter_pre_get_users_args( $q ) {
- foreach ( $q->query_vars as $k => $v ) {
- unset( $q->query_vars[ $k ] );
- }
- }
- /**
- * @ticket 22212
- */
- public function test_get_single_role_by_user_query() {
- $wp_user_search = new WP_User_Query( array( 'role' => 'subscriber' ) );
- $users = $wp_user_search->get_results();
- $this->assertSame( 2, count( $users ) );
- }
- /**
- * @ticket 22212
- */
- public function test_get_multiple_roles_by_user_query() {
- $wp_user_search = new WP_User_Query( array( 'role__in' => array( 'subscriber', 'editor' ) ) );
- $users = $wp_user_search->get_results();
- $this->assertSame( 5, count( $users ) );
- }
- /**
- * @ticket 22212
- */
- public function test_get_single_role_by_string() {
- $users = get_users(
- array(
- 'role' => 'subscriber',
- )
- );
- $this->assertSame( 2, count( $users ) );
- }
- /**
- * @ticket 22212
- */
- public function test_get_single_role_by_string_which_is_similar() {
- $another_editor = self::factory()->user->create(
- array(
- 'user_email' => 'another_editor@another_editor.com',
- 'user_login' => 'another_editor',
- 'role' => 'another-editor',
- )
- );
- $users = get_users(
- array(
- 'role' => 'editor',
- 'fields' => 'ids',
- )
- );
- $this->assertEqualSets( self::$editor_ids, $users );
- }
- /**
- * @ticket 22212
- */
- public function test_get_single_role_by_array() {
- $users = get_users(
- array(
- 'role' => array( 'subscriber' ),
- )
- );
- $this->assertSame( 2, count( $users ) );
- }
- /**
- * @ticket 22212
- */
- public function test_get_multiple_roles_should_only_match_users_who_have_each_role() {
- $users = new WP_User_Query( array( 'role' => array( 'subscriber', 'editor' ) ) );
- $users = $users->get_results();
- $this->assertEmpty( $users );
- foreach ( self::$sub_ids as $subscriber ) {
- $subscriber = get_user_by( 'ID', $subscriber );
- $subscriber->add_role( 'editor' );
- }
- $users = new WP_User_Query( array( 'role' => array( 'subscriber', 'editor' ) ) );
- $users = $users->get_results();
- $this->assertSame( 2, count( $users ) );
- foreach ( $users as $user ) {
- $this->assertInstanceOf( 'WP_User', $user );
- }
- }
- /**
- * @ticket 22212
- */
- public function test_get_multiple_roles_or() {
- $users = new WP_User_Query( array( 'role__in' => array( 'subscriber', 'editor', 'administrator' ) ) );
- $users = $users->get_results();
- // +1 for the default user created during installation.
- $this->assertSame( 8, count( $users ) );
- foreach ( $users as $user ) {
- $this->assertInstanceOf( 'WP_User', $user );
- }
- }
- /**
- * @ticket 22212
- */
- public function test_get_multiple_roles_by_comma_separated_list() {
- $users = get_users(
- array(
- 'role' => 'subscriber, editor',
- )
- );
- $this->assertEmpty( $users );
- foreach ( self::$sub_ids as $subscriber ) {
- $subscriber = get_user_by( 'ID', $subscriber );
- $subscriber->add_role( 'editor' );
- }
- $users = get_users(
- array(
- 'role' => 'subscriber, editor',
- )
- );
- $this->assertSame( 2, count( $users ) );
- }
- /**
- * @ticket 22212
- */
- public function test_get_multiple_roles_with_meta() {
- // Create administrator user + meta.
- update_user_meta( self::$admin_ids[0], 'mk1', 1 );
- update_user_meta( self::$admin_ids[0], 'mk2', 1 );
- // Create editor user + meta.
- update_user_meta( self::$editor_ids[0], 'mk1', 1 );
- update_user_meta( self::$editor_ids[0], 'mk2', 2 );
- // Create subscriber user + meta.
- update_user_meta( self::$sub_ids[0], 'mk1', 1 );
- update_user_meta( self::$sub_ids[0], 'mk2', 1 );
- // Create contributor user + meta.
- update_user_meta( self::$contrib_id, 'mk1', 1 );
- update_user_meta( self::$contrib_id, 'mk2', 2 );
- // Fetch users.
- $users = get_users(
- array(
- 'role__in' => array( 'administrator', 'editor', 'subscriber' ),
- 'meta_query' => array(
- 'relation' => 'AND',
- array(
- 'key' => 'mk1',
- 'value' => '1',
- 'compare' => '=',
- 'type' => 'numeric',
- ),
- array(
- 'key' => 'mk2',
- 'value' => '2',
- 'compare' => '=',
- 'type' => 'numeric',
- ),
- ),
- )
- );
- // Check results.
- $this->assertSame( 1, count( $users ) );
- $this->assertSame( self::$editor_ids[0], (int) $users[0]->ID );
- }
- /**
- * @ticket 22212
- */
- public function test_role_exclusion() {
- $users = get_users(
- array(
- 'role__not_in' => 'subscriber',
- )
- );
- // +1 for the default user created during installation.
- $this->assertSame( 11, count( $users ) );
- $users = get_users(
- array(
- 'role__not_in' => 'editor',
- )
- );
- // +1 for the default user created during installation.
- $this->assertSame( 10, count( $users ) );
- }
- /**
- * @ticket 22212
- */
- public function test_role__in_role__not_in_combined() {
- foreach ( self::$sub_ids as $subscriber ) {
- $subscriber = get_user_by( 'ID', $subscriber );
- $subscriber->add_role( 'editor' );
- }
- $users = get_users(
- array(
- 'role__in' => 'editor',
- )
- );
- $this->assertSame( 5, count( $users ) );
- $users = get_users(
- array(
- 'role__in' => 'editor',
- 'role__not_in' => 'subscriber',
- )
- );
- $this->assertSame( 3, count( $users ) );
- }
- /**
- * @ticket 22212
- */
- public function test_role__not_in_role_combined() {
- $subscriber = get_user_by( 'ID', self::$sub_ids[0] );
- $subscriber->add_role( 'editor' );
- $users = get_users(
- array(
- 'role' => 'subscriber',
- 'role__not_in' => array( 'editor' ),
- )
- );
- $this->assertSame( 1, count( $users ) );
- }
- /**
- * @ticket 22212
- */
- public function test_role__not_in_user_without_role() {
- $user_without_rule = get_user_by( 'ID', self::$sub_ids[0] );
- $user_without_rule->remove_role( 'subscriber' );
- $users = get_users(
- array(
- 'role__not_in' => 'subscriber',
- )
- );
- // +1 for the default user created during installation.
- $this->assertSame( 12, count( $users ) );
- $users = get_users(
- array(
- 'role__not_in' => 'editor',
- )
- );
- // +1 for the default user created during installation.
- $this->assertSame( 10, count( $users ) );
- }
- /**
- * @ticket 22212
- * @group ms-required
- */
- public function test_blog_id_should_restrict_by_blog_without_requiring_a_named_role() {
- $sites = self::factory()->blog->create_many( 2 );
- add_user_to_blog( $sites[0], self::$author_ids[0], 'author' );
- add_user_to_blog( $sites[1], self::$author_ids[1], 'author' );
- $found = get_users(
- array(
- 'blog_id' => $sites[1],
- 'fields' => 'ID',
- )
- );
- $this->assertEqualSets( array( self::$author_ids[1] ), $found );
- }
- /**
- * @ticket 22212
- * @ticket 21119
- * @group ms-required
- */
- public function test_calling_prepare_query_a_second_time_should_not_add_another_cap_query_on_multisite() {
- $site_id = get_current_blog_id();
- add_user_to_blog( $site_id, self::$author_ids[0], 'author' );
- $q = new WP_User_Query(
- array(
- 'include' => self::$author_ids[0],
- )
- );
- $r1 = $q->request;
- $q->prepare_query(
- array(
- 'include' => self::$author_ids[0],
- )
- );
- $r2 = $q->request;
- $q->prepare_query(
- array(
- 'include' => self::$author_ids[0],
- )
- );
- $r3 = $q->request;
- $this->assertSame( $r1, $r2 );
- $this->assertSame( $r1, $r3 );
- }
- /**
- * @ticket 39643
- */
- public function test_search_by_display_name_only() {
- $new_user1 = $this->factory->user->create(
- array(
- 'user_login' => 'name1',
- 'display_name' => 'Sophia Andresen',
- )
- );
- self::$author_ids[] = $new_user1;
- $q = new WP_User_Query(
- array(
- 'search' => '*Sophia*',
- 'fields' => '',
- 'search_columns' => array( 'display_name' ),
- 'include' => self::$author_ids,
- )
- );
- $ids = $q->get_results();
- // Must include user that has the same string in display_name.
- $this->assertEquals( array( $new_user1 ), $ids );
- }
- /**
- * @ticket 39643
- */
- public function test_search_by_display_name_only_ignore_others() {
- $new_user1 = $this->factory->user->create(
- array(
- 'user_login' => 'Sophia Andresen',
- 'display_name' => 'name1',
- )
- );
- self::$author_ids[] = $new_user1;
- $q = new WP_User_Query(
- array(
- 'search' => '*Sophia*',
- 'fields' => '',
- 'search_columns' => array( 'display_name' ),
- 'include' => self::$author_ids,
- )
- );
- $ids = $q->get_results();
- // Must not include user that has the same string in other fields.
- $this->assertSame( array(), $ids );
- }
- /**
- * @ticket 44169
- */
- public function test_users_pre_query_filter_should_bypass_database_query() {
- global $wpdb;
- add_filter( 'users_pre_query', array( __CLASS__, 'filter_users_pre_query' ), 10, 2 );
- $num_queries = $wpdb->num_queries;
- $q = new WP_User_Query(
- array(
- 'fields' => 'ID',
- )
- );
- remove_filter( 'users_pre_query', array( __CLASS__, 'filter_users_pre_query' ), 10, 2 );
- // Make sure no queries were executed.
- $this->assertSame( $num_queries, $wpdb->num_queries );
- // We manually inserted a non-existing user and overrode the results with it.
- $this->assertSame( array( 555 ), $q->results );
- // Make sure manually setting total_users doesn't get overwritten.
- $this->assertSame( 1, $q->total_users );
- }
- public static function filter_users_pre_query( $posts, $query ) {
- $query->total_users = 1;
- return array( 555 );
- }
- }
|