Files
wordpress-develop/tests/phpunit/tests/sitemaps/wpSitemapsTaxonomies.php
T
Sergey Biryukov 7f828b6b00 Tests: Rename classes in phpunit/tests/sitemaps/ per the naming conventions.
https://make.wordpress.org/core/handbook/testing/automated-testing/writing-phpunit-tests/#naming-and-organization

Follow-up to [47780], [48911], [49327], [50291], [50292], [50342], [50452], [50453], [50456], [50967], [50968], [50969], [51491].

See #53363.

git-svn-id: https://develop.svn.wordpress.org/trunk@51492 602fd350-edb4-49c9-b593-d223f7449a82
2021-07-26 19:09:41 +00:00

223 lines
7.1 KiB
PHP

<?php
/**
* @group sitemaps
*/
class Tests_Sitemaps_wpSitemapsTaxonomies extends WP_UnitTestCase {
/**
* List of post_tag IDs.
*
* @var array
*/
public static $post_tags;
/**
* List of category IDs.
*
* @var array
*/
public static $cats;
/**
* Editor ID for use in some tests.
*
* @var int
*/
public static $editor_id;
/**
* Set up fixtures.
*
* @param WP_UnitTest_Factory $factory A WP_UnitTest_Factory object.
*/
public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) {
self::$cats = $factory->term->create_many( 10, array( 'taxonomy' => 'category' ) );
self::$post_tags = $factory->term->create_many( 10 );
self::$editor_id = $factory->user->create( array( 'role' => 'editor' ) );
}
/**
* Test getting a URL list for default taxonomies via
* WP_Sitemaps_Taxonomies::get_url_list().
*/
public function test_get_url_list_taxonomies() {
// Add the default category to the list of categories we're testing.
$categories = array_merge( array( 1 ), self::$cats );
// Create a test post to calculate update times.
$post = self::factory()->post->create_and_get(
array(
'tags_input' => self::$post_tags,
'post_category' => $categories,
)
);
$tax_provider = new WP_Sitemaps_Taxonomies();
$cat_list = $tax_provider->get_url_list( 1, 'category' );
$expected_cats = array_map(
static function ( $id ) use ( $post ) {
return array(
'loc' => get_term_link( $id, 'category' ),
);
},
$categories
);
$this->assertSame( $expected_cats, $cat_list, 'Category URL list does not match.' );
$tag_list = $tax_provider->get_url_list( 1, 'post_tag' );
$expected_tags = array_map(
static function ( $id ) use ( $post ) {
return array(
'loc' => get_term_link( $id, 'post_tag' ),
);
},
self::$post_tags
);
$this->assertSame( $expected_tags, $tag_list, 'Post Tags URL list does not match.' );
}
/**
* Test getting a URL list for a custom taxonomy via
* WP_Sitemaps_Taxonomies::get_url_list().
*/
public function test_get_url_list_custom_taxonomy() {
wp_set_current_user( self::$editor_id );
// Create a custom taxonomy for this test.
$taxonomy = 'test_taxonomy';
register_taxonomy( $taxonomy, 'post' );
// Create test terms in the custom taxonomy.
$terms = self::factory()->term->create_many( 10, array( 'taxonomy' => $taxonomy ) );
// Create a test post applied to all test terms.
$post = self::factory()->post->create_and_get( array( 'tax_input' => array( $taxonomy => $terms ) ) );
$expected = array_map(
static function ( $id ) use ( $taxonomy, $post ) {
return array(
'loc' => get_term_link( $id, $taxonomy ),
);
},
$terms
);
$tax_provider = new WP_Sitemaps_Taxonomies();
$post_list = $tax_provider->get_url_list( 1, $taxonomy );
// Clean up.
unregister_taxonomy_for_object_type( $taxonomy, 'post' );
$this->assertSame( $expected, $post_list, 'Custom taxonomy term links are not visible.' );
}
/**
* Test getting a URL list for a private custom taxonomy via
* WP_Sitemaps_Taxonomies::get_url_list().
*/
public function test_get_url_list_custom_taxonomy_private() {
// Create a custom taxonomy for this test.
$taxonomy = 'private_taxonomy';
register_taxonomy( $taxonomy, 'post', array( 'public' => false ) );
// Create test terms in the custom taxonomy.
$terms = self::factory()->term->create_many( 10, array( 'taxonomy' => $taxonomy ) );
// Create a test post applied to all test terms.
self::factory()->post->create( array( 'tax_input' => array( $taxonomy => $terms ) ) );
$tax_provider = new WP_Sitemaps_Taxonomies();
$post_list = $tax_provider->get_url_list( 1, $taxonomy );
// Clean up.
unregister_taxonomy_for_object_type( $taxonomy, 'post' );
$this->assertEmpty( $post_list, 'Private taxonomy term links are visible.' );
}
/**
* Test getting a URL list for a custom taxonomy that is not publicly queryable.
*/
public function test_get_url_list_custom_taxonomy_not_publicly_queryable() {
// Create a custom taxonomy for this test.
$taxonomy = 'non_queryable_tax';
register_taxonomy( $taxonomy, 'post', array( 'publicly_queryable' => false ) );
// Create test terms in the custom taxonomy.
$terms = self::factory()->term->create_many( 10, array( 'taxonomy' => $taxonomy ) );
// Create a test post applied to all test terms.
self::factory()->post->create( array( 'tax_input' => array( $taxonomy => $terms ) ) );
$tax_provider = new WP_Sitemaps_Taxonomies();
$post_list = $tax_provider->get_url_list( 1, $taxonomy );
// Clean up.
unregister_taxonomy_for_object_type( $taxonomy, 'post' );
$this->assertEmpty( $post_list, 'Non-publicly queryable taxonomy term links are visible.' );
}
/**
* Test sitemap index entries with public and private taxonomies.
*/
public function test_get_sitemap_entries_custom_taxonomies() {
wp_set_current_user( self::$editor_id );
// Create a custom public and private taxonomies for this test.
register_taxonomy( 'public_taxonomy', 'post' );
register_taxonomy( 'non_queryable_taxonomy', 'post', array( 'publicly_queryable' => false ) );
register_taxonomy( 'private_taxonomy', 'post', array( 'public' => false ) );
// Create test terms in the custom taxonomy.
$public_term = self::factory()->term->create( array( 'taxonomy' => 'public_taxonomy' ) );
$non_queryable_term = self::factory()->term->create( array( 'taxonomy' => 'non_queryable_taxonomy' ) );
$private_term = self::factory()->term->create( array( 'taxonomy' => 'private_taxonomy' ) );
// Create a test post applied to all test terms.
self::factory()->post->create_and_get(
array(
'tax_input' => array(
'public_taxonomy' => array( $public_term ),
'non_queryable_taxonomy' => array( $non_queryable_term ),
'private_taxonomy' => array( $private_term ),
),
)
);
$tax_provider = new WP_Sitemaps_Taxonomies();
$entries = wp_list_pluck( $tax_provider->get_sitemap_entries(), 'loc' );
// Clean up.
unregister_taxonomy_for_object_type( 'public_taxonomy', 'post' );
unregister_taxonomy_for_object_type( 'non_queryable_taxonomy', 'post' );
unregister_taxonomy_for_object_type( 'private_taxonomy', 'post' );
$this->assertContains( 'http://' . WP_TESTS_DOMAIN . '/?sitemap=taxonomies&sitemap-subtype=public_taxonomy&paged=1', $entries, 'Public Taxonomies are not in the index.' );
$this->assertNotContains( 'http://' . WP_TESTS_DOMAIN . '/?sitemap=taxonomies&sitemap-subtype=non_queryable_taxonomy&paged=1', $entries, 'Private Taxonomies are visible in the index.' );
$this->assertNotContains( 'http://' . WP_TESTS_DOMAIN . '/?sitemap=taxonomies&sitemap-subtype=private_taxonomy&paged=1', $entries, 'Private Taxonomies are visible in the index.' );
}
/**
* Test ability to filter object subtypes.
*/
public function test_filter_sitemaps_taxonomies() {
$taxonomies_provider = new WP_Sitemaps_Taxonomies();
// Return an empty array to show that the list of subtypes is filterable.
add_filter( 'wp_sitemaps_taxonomies', '__return_empty_array' );
$subtypes = $taxonomies_provider->get_object_subtypes();
$this->assertSame( array(), $subtypes, 'Could not filter taxonomies subtypes.' );
}
}