wordpress-develop/tests/phpunit/tests/term/getTermLink.php
Sergey Biryukov fd6c5606b1 Coding Standards: Include one space after function keyword for closures.
Note: This is enforced by WPCS 3.0.0.

Reference: [https://github.com/WordPress/WordPress-Coding-Standards/pull/2328 WPCS: PR #2328 Core: properly check formatting of function declaration statements].

Props jrf.
See #59161, #58831.

git-svn-id: https://develop.svn.wordpress.org/trunk@56559 602fd350-edb4-49c9-b593-d223f7449a82
2023-09-12 15:21:02 +00:00

334 lines
7.7 KiB
PHP

<?php
/**
* @group taxonomy
* @covers ::get_term_link
*/
class Tests_Term_GetTermLink extends WP_UnitTestCase {
public static $terms;
public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) {
self::register_custom_taxonomy();
$taxonomies = array( 'category', 'post_tag', 'wptests_tax' );
foreach ( $taxonomies as $taxonomy ) {
self::$terms[ $taxonomy ] = $factory->term->create_and_get( array( 'taxonomy' => $taxonomy ) );
}
}
public function set_up() {
parent::set_up();
self::register_custom_taxonomy();
}
/**
* Helper to register a custom taxonomy for use in tests.
*
* @since 5.9.0
*/
private static function register_custom_taxonomy() {
register_taxonomy( 'wptests_tax', 'post' );
}
/**
* Helper to get the term for the given taxonomy.
*
* @since 5.9.0
*
* @param string $taxonomy Taxonomy being tested (used for index of term keys).
* @param bool $use_id Whether to return term ID or term object.
* @return WP_Term|int Term ID if `$use_id` is true, WP_Term instance otherwise.
*/
private function get_term( $taxonomy, $use_id ) {
$term = self::$terms[ $taxonomy ];
if ( $use_id ) {
$term = $term->term_id;
}
return $term;
}
public function test_integer_should_be_interpreted_as_term_id() {
$t1 = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax',
'name' => 'foo',
)
);
$t2 = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax',
'slug' => $t1,
)
);
$term = (int) $t1;
$actual = get_term_link( $term, 'wptests_tax' );
$this->assertStringContainsString( 'wptests_tax=foo', $actual );
}
public function test_numeric_string_should_be_interpreted_as_term_slug() {
$t1 = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax',
'name' => 'foo',
)
);
$t2 = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax',
'slug' => $t1,
)
);
$term = (string) $t1;
$actual = get_term_link( $term, 'wptests_tax' );
$this->assertStringContainsString( 'wptests_tax=' . $term, $actual );
}
public function test_invalid_term_should_return_wp_error() {
$actual = get_term_link( 'foo', 'wptests_tax' );
$this->assertWPError( $actual );
}
public function test_category_should_use_cat_query_var_with_term_id() {
$c = self::factory()->category->create();
$actual = get_term_link( $c, 'category' );
$this->assertStringContainsString( 'cat=' . $c, $actual );
}
public function test_taxonomy_with_query_var_should_use_that_query_var_with_term_slug() {
register_taxonomy(
'wptests_tax2',
'post',
array(
'query_var' => 'foo',
)
);
$t = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax2',
'slug' => 'bar',
)
);
$actual = get_term_link( $t, 'wptests_tax2' );
$this->assertStringContainsString( 'foo=bar', $actual );
}
public function test_taxonomy_without_query_var_should_use_taxonomy_query_var_and_term_query_var_with_term_slug() {
register_taxonomy(
'wptests_tax2',
'post',
array(
'query_var' => false,
)
);
$t = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax2',
'slug' => 'bar',
)
);
$actual = get_term_link( $t, 'wptests_tax2' );
$this->assertStringContainsString( 'taxonomy=wptests_tax2', $actual );
$this->assertStringContainsString( 'term=bar', $actual );
}
/**
* @ticket 52882
*/
public function test_taxonomy_with_rewrite_false_and_custom_permalink_structure() {
$this->set_permalink_structure( '/%year%/%monthnum%/%day%/%postname%/' );
register_taxonomy(
'wptests_tax2',
'post',
array(
'rewrite' => false,
)
);
add_permastruct( 'wptests_tax2', 'foo/%wptests_tax2%' );
$t = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax2',
'slug' => 'bar',
)
);
$actual = get_term_link( $t, 'wptests_tax2' );
remove_permastruct( 'wptests_tax2' );
$this->assertStringContainsString( '/foo/bar/', $actual );
}
public function test_taxonomy_permastruct_with_hierarchical_rewrite_should_put_term_ancestors_in_link() {
$this->set_permalink_structure( '/%year%/%monthnum%/%day%/%postname%/' );
register_taxonomy(
'wptests_tax2',
'post',
array(
'hierarchical' => true,
'rewrite' => array(
'slug' => 'foo',
'hierarchical' => true,
),
)
);
flush_rewrite_rules();
$t1 = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax2',
'slug' => 'term1',
)
);
$t2 = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax2',
'slug' => 'term2',
'parent' => $t1,
)
);
$actual = get_term_link( $t2, 'wptests_tax2' );
$this->assertStringContainsString( '/foo/term1/term2/', $actual );
}
public function test_taxonomy_permastruct_with_nonhierarchical_rewrite_should_not_put_term_ancestors_in_link() {
$this->set_permalink_structure( '/%year%/%monthnum%/%day%/%postname%/' );
register_taxonomy(
'wptests_tax2',
'post',
array(
'hierarchical' => true,
'rewrite' => array(
'slug' => 'foo',
'hierarchical' => false,
),
)
);
flush_rewrite_rules();
$t1 = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax2',
'slug' => 'term1',
)
);
$t2 = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax2',
'slug' => 'term2',
'parent' => $t1,
)
);
$actual = get_term_link( $t2, 'wptests_tax2' );
$this->assertStringContainsString( '/foo/term2/', $actual );
}
/**
* @dataProvider data_term_link_filter_should_receive_term_object
*
* @ticket 50225
*
* @param string $taxonomy Taxonomy being tested.
* @param bool $use_id Whether to pass term ID or term object to `get_term_link()`.
*/
public function test_term_link_filter_should_receive_term_object( $taxonomy, $use_id ) {
$term = $this->get_term( $taxonomy, $use_id );
add_filter(
'term_link',
function ( $location, $term ) {
$this->assertInstanceOf( 'WP_Term', $term );
},
10,
2
);
get_term_link( $term, $taxonomy );
}
/**
* Data provider.
*
* @return array
*/
public function data_term_link_filter_should_receive_term_object() {
return array(
'category passing term_id' => array(
'taxonomy' => 'category',
'use_id' => true,
),
'category passing term object' => array(
'taxonomy' => 'category',
'use_id' => false,
),
'post_tag passing term_id' => array(
'taxonomy' => 'post_tag',
'use_id' => true,
),
'post_tag passing term object' => array(
'taxonomy' => 'post_tag',
'use_id' => false,
),
'a custom taxonomy passing term_id' => array(
'taxonomy' => 'wptests_tax',
'use_id' => true,
),
'a custom taxonomy passing term object' => array(
'taxonomy' => 'wptests_tax',
'use_id' => false,
),
);
}
/**
* @dataProvider data_get_term_feed_link_should_use_term_taxonomy_when_term_id_is_passed
*
* @ticket 50225
*
* @param string $taxonomy Taxonomy being tested.
*/
public function test_get_term_feed_link_should_use_term_taxonomy_when_term_id_is_passed( $taxonomy ) {
$term = $this->get_term( $taxonomy, true );
$term_feed_link = get_term_feed_link( $term, $taxonomy );
$this->assertIsString( $term_feed_link );
$term_feed_link = get_term_feed_link( $term, '' );
$this->assertIsString( $term_feed_link );
}
/**
* Data provider.
*
* @return array
*/
public function data_get_term_feed_link_should_use_term_taxonomy_when_term_id_is_passed() {
$taxonomies = array( 'category', 'post_tag', 'wptests_tax' );
return $this->text_array_to_dataprovider( $taxonomies );
}
}