123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- <?php
- /**
- * @group taxonomy
- */
- class Tests_Term_GetTermBy extends WP_UnitTestCase {
- function test_get_term_by_slug() {
- $term1 = wp_insert_term( 'Foo', 'category', array( 'slug' => 'foo' ) );
- $term2 = get_term_by( 'slug', 'foo', 'category' );
- $this->assertEquals( get_term( $term1['term_id'], 'category' ), $term2 );
- }
- function test_get_term_by_name() {
- $term1 = wp_insert_term( 'Foo', 'category', array( 'slug' => 'foo' ) );
- $term2 = get_term_by( 'name', 'Foo', 'category' );
- $this->assertEquals( get_term( $term1['term_id'], 'category' ), $term2 );
- }
- function test_get_term_by_id() {
- $term1 = wp_insert_term( 'Foo', 'category', array( 'slug' => 'foo' ) );
- $term2 = get_term_by( 'id', $term1['term_id'], 'category' );
- $this->assertEquals( get_term( $term1['term_id'], 'category' ), $term2 );
- }
- /**
- * 'term_id' is an alias of 'id'.
- */
- function test_get_term_by_term_id() {
- $term1 = wp_insert_term( 'Foo', 'category', array( 'slug' => 'foo' ) );
- $term2 = get_term_by( 'term_id', $term1['term_id'], 'category' );
- $this->assertEquals( get_term( $term1['term_id'], 'category' ), $term2 );
- }
- /**
- * @ticket 45163
- */
- function test_get_term_by_uppercase_id() {
- $term1 = wp_insert_term( 'Foo', 'category', array( 'slug' => 'foo' ) );
- $term2 = get_term_by( 'ID', $term1['term_id'], 'category' );
- $this->assertEquals( get_term( $term1['term_id'], 'category' ), $term2 );
- }
- /**
- * @ticket 21651
- */
- function test_get_term_by_tt_id() {
- $term1 = wp_insert_term( 'Foo', 'category' );
- $term2 = get_term_by( 'term_taxonomy_id', $term1['term_taxonomy_id'], 'category' );
- $this->assertEquals( get_term( $term1['term_id'], 'category' ), $term2 );
- }
- function test_get_term_by_unknown() {
- wp_insert_term( 'Foo', 'category', array( 'slug' => 'foo' ) );
- $term2 = get_term_by( 'unknown', 'foo', 'category' );
- $this->assertFalse( $term2 );
- }
- /**
- * @ticket 33281
- */
- function test_get_term_by_with_nonexistent_id_should_return_false() {
- $term = get_term_by( 'id', 123456, 'category' );
- $this->assertFalse( $term );
- }
- /**
- * @ticket 16282
- */
- public function test_get_term_by_slug_should_match_nonaccented_equivalents() {
- register_taxonomy( 'wptests_tax', 'post' );
- $slug = 'ńaș';
- $t = self::factory()->term->create(
- array(
- 'slug' => $slug,
- 'taxonomy' => 'wptests_tax',
- )
- );
- $found = get_term_by( 'slug', 'nas', 'wptests_tax' );
- $this->assertSame( $t, $found->term_id );
- }
- /**
- * @ticket 30620
- */
- public function test_taxonomy_should_be_ignored_if_matching_by_term_taxonomy_id() {
- global $wpdb;
- register_taxonomy( 'wptests_tax', 'post' );
- $t = self::factory()->term->create( array( 'taxonomy' => 'wptests_tax' ) );
- $term = get_term( $t, 'wptests_tax' );
- $new_ttid = $term->term_taxonomy_id + 1;
- // Offset just to be sure.
- $wpdb->update(
- $wpdb->term_taxonomy,
- array( 'term_taxonomy_id' => $new_ttid ),
- array( 'term_id' => $t )
- );
- $found = get_term_by( 'term_taxonomy_id', $new_ttid, 'foo' );
- $this->assertSame( $t, $found->term_id );
- }
- /**
- * @ticket 14162
- */
- public function test_should_prime_term_cache() {
- global $wpdb;
- register_taxonomy( 'wptests_tax', 'post' );
- $t = self::factory()->term->create(
- array(
- 'taxonomy' => 'wptests_tax',
- 'slug' => 'foo',
- )
- );
- clean_term_cache( $t, 'wptests_tax' );
- $num_queries = $wpdb->num_queries;
- $found = get_term_by( 'slug', 'foo', 'wptests_tax' );
- $num_queries++;
- $this->assertTrue( $found instanceof WP_Term );
- $this->assertSame( $t, $found->term_id );
- $this->assertSame( $num_queries, $wpdb->num_queries );
- // Calls to `get_term()` should now hit cache.
- $found2 = get_term( $t );
- $this->assertSame( $t, $found->term_id );
- $this->assertSame( $num_queries, $wpdb->num_queries );
- }
- /**
- * @ticket 21760
- */
- public function test_should_unslash_name() {
- register_taxonomy( 'wptests_tax', 'post' );
- $term_name = 'Foo " \o/';
- $term_name_slashed = wp_slash( $term_name );
- $t = self::factory()->term->create(
- array(
- 'taxonomy' => 'wptests_tax',
- 'name' => $term_name_slashed,
- )
- );
- $found = get_term_by( 'name', $term_name_slashed, 'wptests_tax' );
- $this->assertTrue( $found instanceof WP_Term );
- $this->assertSame( $t, $found->term_id );
- $this->assertSame( $term_name, $found->name );
- }
- /**
- * @ticket 21760
- */
- public function test_should_sanitize_slug() {
- register_taxonomy( 'wptests_tax', 'post' );
- $t1 = self::factory()->term->create(
- array(
- 'taxonomy' => 'wptests_tax',
- 'slug' => 'foo-foo',
- )
- );
- // Whitespace should get replaced by a '-'.
- $found1 = get_term_by( 'slug', 'foo foo', 'wptests_tax' );
- $this->assertTrue( $found1 instanceof WP_Term );
- $this->assertSame( $t1, $found1->term_id );
- $t2 = self::factory()->term->create(
- array(
- 'taxonomy' => 'wptests_tax',
- 'slug' => '%e4%bb%aa%e8%a1%a8%e7%9b%98',
- )
- );
- // Slug should get urlencoded.
- $found2 = get_term_by( 'slug', '仪表盘', 'wptests_tax' );
- $this->assertTrue( $found2 instanceof WP_Term );
- $this->assertSame( $t2, $found2->term_id );
- }
- /**
- * @ticket 21760
- */
- public function test_query_should_not_contain_order_by_clause() {
- global $wpdb;
- $term_id = $this->factory->term->create(
- array(
- 'name' => 'burrito',
- 'taxonomy' => 'post_tag',
- )
- );
- $found = get_term_by( 'name', 'burrito', 'post_tag' );
- $this->assertSame( $term_id, $found->term_id );
- $this->assertNotContains( 'ORDER BY', $wpdb->last_query );
- }
- /**
- * @ticket 21760
- */
- public function test_query_should_contain_limit_clause() {
- global $wpdb;
- $term_id = $this->factory->term->create(
- array(
- 'name' => 'burrito',
- 'taxonomy' => 'post_tag',
- )
- );
- $found = get_term_by( 'name', 'burrito', 'post_tag' );
- $this->assertSame( $term_id, $found->term_id );
- $this->assertContains( 'LIMIT 1', $wpdb->last_query );
- }
- /**
- * @ticket 21760
- */
- public function test_prevent_recursion_by_get_terms_filter() {
- $action = new MockAction();
- add_filter( 'get_terms', array( $action, 'filter' ) );
- get_term_by( 'name', 'burrito', 'post_tag' );
- remove_filter( 'get_terms', array( $action, 'filter' ) );
- $this->assertSame( 0, $action->get_call_count() );
- }
- /**
- * @ticket 21760
- */
- public function test_get_term_by_name_with_string_0() {
- register_taxonomy( 'wptests_tax', 'post', array( 'hierarchical' => true ) );
- $term_id = $this->factory->term->create(
- array(
- 'name' => '0',
- 'taxonomy' => 'wptests_tax',
- )
- );
- $found = get_term_by( 'name', '0', 'wptests_tax' );
- $this->assertSame( $term_id, $found->term_id );
- }
- /**
- * @ticket 21760
- */
- public function test_get_term_by_slug_with_string_0() {
- register_taxonomy( 'wptests_tax', 'post', array( 'hierarchical' => true ) );
- $term_id = $this->factory->term->create(
- array(
- 'taxonomy' => 'wptests_tax',
- 'name' => '0',
- 'slug' => '0',
- )
- );
- $found = get_term_by( 'slug', '0', 'wptests_tax' );
- $this->assertSame( $term_id, $found->term_id );
- }
- /**
- * @ticket 21760
- */
- public function test_get_term_by_with_empty_string() {
- register_taxonomy( 'wptests_tax', 'post', array( 'hierarchical' => true ) );
- $found_by_slug = get_term_by( 'slug', '', 'wptests_tax' );
- $found_by_name = get_term_by( 'name', '', 'wptests_tax' );
- $this->assertFalse( $found_by_slug );
- $this->assertFalse( $found_by_name );
- }
- }
|