Changeset 43492 for branches/4.9/tests/phpunit/tests/term/query.php
- Timestamp:
- 07/17/2018 04:27:12 PM (6 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
- Property svn:mergeinfo changed
/trunk merged: 43049,43491
- Property svn:mergeinfo changed
-
branches/4.9/tests/phpunit/tests/term/query.php
r43314 r43492 507 507 $this->assertSame( $expected, $found3 ); 508 508 } 509 510 /** 511 * @ticket 42691 512 */ 513 public function test_null_term_object_should_be_discarded() { 514 register_taxonomy( 'wptests_tax', 'post' ); 515 516 $terms = self::factory()->term->create_many( 3, array( 517 'taxonomy' => 'wptests_tax', 518 ) ); 519 520 $this->term_id = $terms[1]; 521 522 add_filter( 'get_term', array( $this, 'filter_term_to_null' ) ); 523 $found = get_terms( array( 524 'taxonomy' => 'wptests_tax', 525 'hide_empty' => false, 526 ) ); 527 remove_filter( 'get_term', array( $this, 'filter_term_to_null' ) ); 528 529 $expected = array( $terms[0], $terms[2] ); 530 531 $this->assertEqualSets( $expected, wp_list_pluck( $found, 'term_id' ) ); 532 } 533 534 public function filter_term_to_null( $term ) { 535 if ( $this->term_id === $term->term_id ) { 536 return null; 537 } 538 539 return $term; 540 } 541 542 /** 543 * @ticket 42691 544 */ 545 public function test_error_term_object_should_be_discarded() { 546 register_taxonomy( 'wptests_tax', 'post' ); 547 548 $terms = self::factory()->term->create_many( 3, array( 549 'taxonomy' => 'wptests_tax', 550 ) ); 551 552 $this->term_id = $terms[1]; 553 554 add_filter( 'get_term', array( $this, 'filter_term_to_wp_error' ) ); 555 $found = get_terms( array( 556 'taxonomy' => 'wptests_tax', 557 'hide_empty' => false, 558 ) ); 559 remove_filter( 'get_term', array( $this, 'filter_term_to_wp_error' ) ); 560 561 $expected = array( $terms[0], $terms[2] ); 562 563 $this->assertEqualSets( $expected, wp_list_pluck( $found, 'term_id' ) ); 564 } 565 566 public function filter_term_to_wp_error( $term ) { 567 if ( $this->term_id === $term->term_id ) { 568 return new WP_Error( 'foo' ); 569 } 570 571 return $term; 572 } 509 573 }
Note: See TracChangeset
for help on using the changeset viewer.