mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-01 03:04:34 +00:00
Sitemaps: Rename wp_get_sitemaps() to wp_get_sitemaps_providers()
Following [48536], rename the function to match the rest of the sitemaps logic. Also eliminates some dead code after [48523]. Props pbiron. See #50724. See #50643. git-svn-id: https://develop.svn.wordpress.org/trunk@48540 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -43,8 +43,8 @@ class Test_Sitemaps_Functions extends WP_UnitTestCase {
|
||||
/**
|
||||
* Test wp_get_sitemaps default functionality
|
||||
*/
|
||||
public function test_wp_get_sitemaps() {
|
||||
$sitemaps = wp_get_sitemaps();
|
||||
public function test_wp_get_sitemaps_providers() {
|
||||
$sitemaps = wp_get_sitemaps_providers();
|
||||
|
||||
$expected = array(
|
||||
'posts' => 'WP_Sitemaps_Posts',
|
||||
|
||||
@@ -8,12 +8,12 @@ class Test_WP_Sitemaps_Registry extends WP_UnitTestCase {
|
||||
$provider = new WP_Sitemaps_Test_Provider();
|
||||
$registry = new WP_Sitemaps_Registry();
|
||||
|
||||
$actual = $registry->add_provider( 'foo', $provider );
|
||||
$sitemaps = $registry->get_providers();
|
||||
$actual = $registry->add_provider( 'foo', $provider );
|
||||
$providers = $registry->get_providers();
|
||||
|
||||
$this->assertTrue( $actual );
|
||||
$this->assertCount( 1, $sitemaps );
|
||||
$this->assertSame( $sitemaps['foo'], $provider, 'Can not confirm sitemap registration is working.' );
|
||||
$this->assertCount( 1, $providers );
|
||||
$this->assertSame( $providers['foo'], $provider, 'Can not confirm sitemap registration is working.' );
|
||||
}
|
||||
|
||||
public function test_add_provider_prevent_duplicates() {
|
||||
@@ -21,13 +21,13 @@ class Test_WP_Sitemaps_Registry extends WP_UnitTestCase {
|
||||
$provider2 = new WP_Sitemaps_Test_Provider();
|
||||
$registry = new WP_Sitemaps_Registry();
|
||||
|
||||
$actual1 = $registry->add_provider( 'foo', $provider1 );
|
||||
$actual2 = $registry->add_provider( 'foo', $provider2 );
|
||||
$sitemaps = $registry->get_providers();
|
||||
$actual1 = $registry->add_provider( 'foo', $provider1 );
|
||||
$actual2 = $registry->add_provider( 'foo', $provider2 );
|
||||
$providers = $registry->get_providers();
|
||||
|
||||
$this->assertTrue( $actual1 );
|
||||
$this->assertFalse( $actual2 );
|
||||
$this->assertCount( 1, $sitemaps );
|
||||
$this->assertSame( $sitemaps['foo'], $provider1, 'Can not confirm sitemap registration is working.' );
|
||||
$this->assertCount( 1, $providers );
|
||||
$this->assertSame( $providers['foo'], $provider1, 'Can not confirm sitemap registration is working.' );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -100,7 +100,7 @@ class Test_Sitemaps extends WP_UnitTestCase {
|
||||
public function _get_sitemap_entries() {
|
||||
$entries = array();
|
||||
|
||||
$providers = wp_get_sitemaps();
|
||||
$providers = wp_get_sitemaps_providers();
|
||||
|
||||
foreach ( $providers as $provider ) {
|
||||
// Using `array_push` is more efficient than `array_merge` in the loop.
|
||||
@@ -218,7 +218,7 @@ class Test_Sitemaps extends WP_UnitTestCase {
|
||||
* Tests getting a URL list for post type post.
|
||||
*/
|
||||
public function test_get_url_list_post() {
|
||||
$providers = wp_get_sitemaps();
|
||||
$providers = wp_get_sitemaps_providers();
|
||||
|
||||
$post_list = $providers['posts']->get_url_list( 1, 'post' );
|
||||
|
||||
@@ -234,7 +234,7 @@ class Test_Sitemaps extends WP_UnitTestCase {
|
||||
// Short circuit the show on front option.
|
||||
add_filter( 'pre_option_show_on_front', '__return_true' );
|
||||
|
||||
$providers = wp_get_sitemaps();
|
||||
$providers = wp_get_sitemaps_providers();
|
||||
|
||||
$post_list = $providers['posts']->get_url_list( 1, 'page' );
|
||||
|
||||
@@ -247,7 +247,7 @@ class Test_Sitemaps extends WP_UnitTestCase {
|
||||
* Tests getting a URL list for post type page with included home page.
|
||||
*/
|
||||
public function test_get_url_list_page_with_home() {
|
||||
$providers = wp_get_sitemaps();
|
||||
$providers = wp_get_sitemaps_providers();
|
||||
|
||||
$post_list = $providers['posts']->get_url_list( 1, 'page' );
|
||||
|
||||
@@ -270,7 +270,7 @@ class Test_Sitemaps extends WP_UnitTestCase {
|
||||
public function test_get_url_list_private_post() {
|
||||
wp_set_current_user( self::$editor_id );
|
||||
|
||||
$providers = wp_get_sitemaps();
|
||||
$providers = wp_get_sitemaps_providers();
|
||||
|
||||
$post_list_before = $providers['posts']->get_url_list( 1, 'post' );
|
||||
|
||||
@@ -297,7 +297,7 @@ class Test_Sitemaps extends WP_UnitTestCase {
|
||||
|
||||
$ids = self::factory()->post->create_many( 10, array( 'post_type' => $post_type ) );
|
||||
|
||||
$providers = wp_get_sitemaps();
|
||||
$providers = wp_get_sitemaps_providers();
|
||||
|
||||
$post_list = $providers['posts']->get_url_list( 1, $post_type );
|
||||
|
||||
@@ -320,7 +320,7 @@ class Test_Sitemaps extends WP_UnitTestCase {
|
||||
|
||||
self::factory()->post->create_many( 10, array( 'post_type' => $post_type ) );
|
||||
|
||||
$providers = wp_get_sitemaps();
|
||||
$providers = wp_get_sitemaps_providers();
|
||||
|
||||
$post_list = $providers['posts']->get_url_list( 1, $post_type );
|
||||
|
||||
@@ -348,7 +348,7 @@ class Test_Sitemaps extends WP_UnitTestCase {
|
||||
|
||||
self::factory()->post->create_many( 10, array( 'post_type' => $post_type ) );
|
||||
|
||||
$providers = wp_get_sitemaps();
|
||||
$providers = wp_get_sitemaps_providers();
|
||||
|
||||
$post_list = $providers['posts']->get_url_list( 1, $post_type );
|
||||
|
||||
@@ -391,7 +391,7 @@ class Test_Sitemaps extends WP_UnitTestCase {
|
||||
public function test_register_sitemap_provider() {
|
||||
wp_register_sitemap( 'test_sitemap', self::$test_provider );
|
||||
|
||||
$sitemaps = wp_get_sitemaps();
|
||||
$sitemaps = wp_get_sitemaps_providers();
|
||||
|
||||
$this->assertEquals( $sitemaps['test_sitemap'], self::$test_provider, 'Can not confirm sitemap registration is working.' );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user