Changeset 53483 for trunk/tests/phpunit/tests/query.php
- Timestamp:
- 06/10/2022 03:15:07 PM (4 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/query.php
r53482 r53483 622 622 623 623 /** 624 * @ticket 55716625 */626 public function test_prime_user_cache() {627 $action = new MockAction();628 add_filter( 'update_user_metadata_cache', array( $action, 'filter' ), 10, 2 );629 $user_ids = array();630 $count = 5;631 for ( $i = 0; $i < $count; $i ++ ) {632 $user_ids[ $i ] = self::factory()->user->create();633 self::factory()->post->create(634 array(635 'post_type' => 'post',636 'post_author' => $user_ids[ $i ],637 )638 );639 }640 641 $q = new WP_Query(642 array(643 'post_type' => 'post',644 'posts_per_page' => $count,645 )646 );647 while ( $q->have_posts() ) {648 $q->the_post();649 }650 651 $args = $action->get_args();652 $last_args = end( $args );653 $this->assertSameSets( $user_ids, $last_args[1], 'Ensure that user ids are primed' );654 }655 656 /**657 624 * @ticket 35601 658 625 */
Note: See TracChangeset
for help on using the changeset viewer.