diff --git a/src/wp-includes/canonical.php b/src/wp-includes/canonical.php index 040567fd0e..d97d263034 100644 --- a/src/wp-includes/canonical.php +++ b/src/wp-includes/canonical.php @@ -548,13 +548,23 @@ function redirect_canonical( $requested_url = null, $do_redirect = true ) { $is_attachment_redirect = false; if ( is_attachment() && ! get_option( 'wp_attachment_pages_enabled' ) ) { - $attachment_id = get_query_var( 'attachment_id' ); + $attachment_id = get_query_var( 'attachment_id' ); + $attachment_post = get_post( $attachment_id ); + $attachment_parent_id = $attachment_post ? $attachment_post->post_parent : 0; - if ( current_user_can( 'read_post', $attachment_id ) ) { - $redirect_url = wp_get_attachment_url( $attachment_id ); - - $is_attachment_redirect = true; + $attachment_url = wp_get_attachment_url( $attachment_id ); + if ( $attachment_url !== $redirect_url ) { + /* + * If an attachment is attached to a post, it inherits the parent post's status. Fetch the + * parent post to check its status later. + */ + if ( $attachment_parent_id ) { + $redirect_obj = get_post( $attachment_parent_id ); + } + $redirect_url = $attachment_url; } + + $is_attachment_redirect = true; } $redirect['query'] = preg_replace( '#^\??&*?#', '', $redirect['query'] ); diff --git a/tests/phpunit/tests/canonical.php b/tests/phpunit/tests/canonical.php index 8bad744061..ace306b87c 100644 --- a/tests/phpunit/tests/canonical.php +++ b/tests/phpunit/tests/canonical.php @@ -14,7 +14,7 @@ class Tests_Canonical extends WP_Canonical_UnitTestCase { parent::set_up(); wp_set_current_user( self::$author_id ); - add_filter( 'pre_option_wp_attachment_pages_enabled', '__return_true' ); + update_option( 'wp_attachment_pages_enabled', 1 ); } /** @@ -406,23 +406,83 @@ class Tests_Canonical extends WP_Canonical_UnitTestCase { } /** + * Test canonical redirects for attachment pages when the option is disabled. + * * @ticket 57913 + * @ticket 59866 + * + * @dataProvider data_canonical_attachment_page_redirect_with_option_disabled */ - public function test_canonical_attachment_page_redirect_with_option_disabled() { - add_filter( 'pre_option_wp_attachment_pages_enabled', '__return_false' ); + public function test_canonical_attachment_page_redirect_with_option_disabled( $expected, $user = null, $parent_post_status = '' ) { + update_option( 'wp_attachment_pages_enabled', 0 ); + + if ( '' !== $parent_post_status ) { + $parent_post_id = self::factory()->post->create( + array( + 'post_status' => $parent_post_status, + ) + ); + } else { + $parent_post_id = 0; + } $filename = DIR_TESTDATA . '/images/test-image.jpg'; $contents = file_get_contents( $filename ); $upload = wp_upload_bits( wp_basename( $filename ), null, $contents ); - $attachment_id = $this->_make_attachment( $upload ); + $attachment_id = $this->_make_attachment( $upload, $parent_post_id ); + $attachment_url = wp_get_attachment_url( $attachment_id ); $attachment_page = get_permalink( $attachment_id ); + // Set as anonymous/logged out user. + if ( null !== $user ) { + wp_set_current_user( $user ); + } + $this->go_to( $attachment_page ); - $url = redirect_canonical( $attachment_page, false ); - $expected = wp_get_attachment_url( $attachment_id ); + $url = redirect_canonical( $attachment_page, false ); + if ( is_string( $expected ) ) { + $expected = str_replace( '%%attachment_url%%', $attachment_url, $expected ); + } $this->assertSame( $expected, $url ); } + + /** + * Data provider for test_canonical_attachment_page_redirect_with_option_disabled(). + * + * @return array[] + */ + public function data_canonical_attachment_page_redirect_with_option_disabled() { + return array( + 'logged out user, no parent' => array( + '%%attachment_url%%', + 0, + ), + 'logged in user, no parent' => array( + '%%attachment_url%%', + ), + 'logged out user, private parent' => array( + null, + 0, + 'private', + ), + 'logged in user, private parent' => array( + '%%attachment_url%%', + null, + 'private', + ), + 'logged out user, public parent' => array( + '%%attachment_url%%', + 0, + 'publish', + ), + 'logged in user, public parent' => array( + '%%attachment_url%%', + null, + 'publish', + ), + ); + } } diff --git a/tests/phpunit/tests/canonical/postStatus.php b/tests/phpunit/tests/canonical/postStatus.php index 9b68e61f36..7620ccfdd1 100644 --- a/tests/phpunit/tests/canonical/postStatus.php +++ b/tests/phpunit/tests/canonical/postStatus.php @@ -169,8 +169,6 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { public function set_up() { parent::set_up(); self::setup_custom_types(); - - add_filter( 'pre_option_wp_attachment_pages_enabled', '__return_true' ); } /** @@ -223,8 +221,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { * @param string $user_role User role. * @param string $requested Requested URL. * @param string $expected Expected URL. + * @param string $enable_attachment_pages Whether to enable attachment pages. Default true. */ - public function test_canonical_redirects_to_plain_permalinks( $post_key, $user_role, $requested, $expected ) { + public function test_canonical_redirects_to_plain_permalinks( $post_key, $user_role, $requested, $expected, $enable_attachment_pages = true ) { + if ( $enable_attachment_pages ) { + update_option( 'wp_attachment_pages_enabled', 1 ); + } else { + update_option( 'wp_attachment_pages_enabled', 0 ); + } + wp_set_current_user( self::$users[ $user_role ] ); $this->set_permalink_structure( '' ); $post = self::$posts[ $post_key ]; @@ -243,12 +248,7 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { /** * Data provider for test_canonical_redirects_to_plain_permalinks. * - * @return array[] Array of arguments for tests { - * @type string $post_key Post key used for creating fixtures. - * @type string $user_role User role. - * @type string $requested Requested URL. - * @type string $expected Expected URL. - * } + * @return array[] */ public function data_canonical_redirects_to_plain_permalinks() { $data = array(); @@ -273,6 +273,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?post_type=page&p=%ID%', '/?post_type=page&p=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?post_type=page&p=%ID%', + '/?post_type=page&p=%ID%', + false, ); $data[] = array( @@ -280,6 +289,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key-post", "/?name=$post_key-post", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key-post", + "/?name=$post_key-post", + false, ); // Ensure rss redirects to rss2. @@ -288,6 +306,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?feed=rss2&p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?feed=rss2&p=%ID%', + false, ); // Ensure rss redirects to rss2. @@ -296,6 +323,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&page_id=%ID%', '/?feed=rss2&page_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?feed=rss&page_id=%ID%', + '/?feed=rss2&page_id=%ID%', + false, ); } } @@ -311,6 +347,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?post_type=page&p=%ID%', '/?post_type=page&p=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?post_type=page&p=%ID%', + '/?post_type=page&p=%ID%', + false, ); $data[] = array( @@ -318,6 +363,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key-post", "/?name=$post_key-post", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key-post", + "/?name=$post_key-post", + false, ); // Ensure rss redirects to rss2. @@ -326,6 +380,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?feed=rss2&p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?feed=rss2&p=%ID%', + false, ); // Ensure rss redirects to rss2. @@ -334,6 +397,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&page_id=%ID%', '/?feed=rss2&page_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?feed=rss&page_id=%ID%', + '/?feed=rss2&page_id=%ID%', + false, ); } @@ -347,6 +419,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?post_type=page&p=%ID%', '/?post_type=page&p=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?post_type=page&p=%ID%', + '/?post_type=page&p=%ID%', + false, ); $data[] = array( @@ -354,6 +435,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key-post", "/?name=$post_key-post", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key-post", + "/?name=$post_key-post", + false, ); // Ensure post's existence is not demonstrated by changing rss to rss2. @@ -362,6 +452,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?feed=rss&p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?feed=rss&p=%ID%', + false, ); // Ensure post's existence is not demonstrated by changing rss to rss2. @@ -370,6 +469,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&page_id=%ID%', '/?feed=rss&page_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?feed=rss&page_id=%ID%', + '/?feed=rss&page_id=%ID%', + false, ); } } @@ -385,6 +493,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?post_type=page&p=%ID%', '/?post_type=page&p=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?post_type=page&p=%ID%', + '/?post_type=page&p=%ID%', + false, ); $data[] = array( @@ -392,6 +509,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key-post", "/?name=$post_key-post", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key-post", + "/?name=$post_key-post", + false, ); // Ensure post's existence is not demonstrated by changing rss to rss2. @@ -400,6 +526,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?feed=rss&p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?feed=rss&p=%ID%', + false, ); // Ensure post's existence is not demonstrated by changing rss to rss2. @@ -408,6 +543,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&page_id=%ID%', '/?feed=rss&page_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?feed=rss&page_id=%ID%', + '/?feed=rss&page_id=%ID%', + false, ); } } @@ -423,6 +567,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?post_type=page&p=%ID%', '/?post_type=page&p=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?post_type=page&p=%ID%', + '/?post_type=page&p=%ID%', + false, ); $data[] = array( @@ -430,6 +583,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key-post", "/?name=$post_key-post", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key-post", + "/?name=$post_key-post", + false, ); // Ensure post's existence is not demonstrated by changing rss to rss2. @@ -438,6 +600,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?feed=rss&p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?feed=rss&p=%ID%', + false, ); // Ensure post's existence is not demonstrated by changing rss to rss2. @@ -446,6 +617,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&page_id=%ID%', '/?feed=rss&page_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?feed=rss&page_id=%ID%', + '/?feed=rss&page_id=%ID%', + false, ); } } @@ -457,6 +637,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?p=%ID%', '/?a-public-cpt=a-public-cpt', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?p=%ID%', + '/?a-public-cpt=a-public-cpt', + false, ); $data[] = array( @@ -464,6 +653,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?attachment_id=%ID%', '/?attachment_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/?attachment_id=%ID%', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -471,6 +669,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key&post_type=$post_key", "/?name=$post_key&post_type=$post_key", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key&post_type=$post_key", + "/?name=$post_key&post_type=$post_key", + false, ); // Ensure rss is replaced by rss2. @@ -479,6 +686,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?a-public-cpt=a-public-cpt&feed=rss2', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?a-public-cpt=a-public-cpt&feed=rss2', + false, ); } @@ -488,6 +704,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?p=%ID%', '/?p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?p=%ID%', + '/?p=%ID%', + false, ); $data[] = array( @@ -495,6 +720,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?attachment_id=%ID%', '/?attachment_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/?attachment_id=%ID%', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -502,6 +736,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key&post_type=$post_key", "/?name=$post_key&post_type=$post_key", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key&post_type=$post_key", + "/?name=$post_key&post_type=$post_key", + false, ); // Ensure rss is not replaced with rss2. @@ -510,6 +753,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?feed=rss&p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?feed=rss&p=%ID%', + false, ); } } @@ -521,6 +773,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?p=%ID%', '/?p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?p=%ID%', + '/?p=%ID%', + false, ); $data[] = array( @@ -528,6 +789,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?attachment_id=%ID%', '/?attachment_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/?attachment_id=%ID%', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -535,6 +805,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key&post_type=$post_key", "/?name=$post_key&post_type=$post_key", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key&post_type=$post_key", + "/?name=$post_key&post_type=$post_key", + false, ); $data[] = array( @@ -542,6 +821,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?feed=rss&p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?feed=rss&p=%ID%', + false, ); } } @@ -559,8 +847,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { * @param string $user_role User role. * @param string $requested Requested URL. * @param string $expected Expected URL. + * @param string $enable_attachment_pages Whether to enable attachment pages. Default true. */ - public function test_canonical_redirects_to_pretty_permalinks( $post_key, $user_role, $requested, $expected ) { + public function test_canonical_redirects_to_pretty_permalinks( $post_key, $user_role, $requested, $expected, $enable_attachment_pages = true ) { + if ( $enable_attachment_pages ) { + update_option( 'wp_attachment_pages_enabled', 1 ); + } else { + update_option( 'wp_attachment_pages_enabled', 0 ); + } + wp_set_current_user( self::$users[ $user_role ] ); $this->set_permalink_structure( '/%postname%/' ); $post = self::$posts[ $post_key ]; @@ -605,6 +900,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?p=%ID%', "/$post_key-post/", + true, + ); + + $data[] = array( + $post_key, + $user, + '/?p=%ID%', + "/$post_key-post/", + false, ); $data[] = array( @@ -612,6 +916,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?attachment_id=%ID%', "/$post_key-post/$post_key-inherited-attachment/", + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/?attachment_id=%ID%', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -619,6 +932,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?post_type=page&p=%ID%', "/$post_key-page/", + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?post_type=page&p=%ID%', + "/$post_key-page/", + false, ); $data[] = array( @@ -626,6 +948,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?page_id=%ID%', "/$post_key-page/", + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?page_id=%ID%', + "/$post_key-page/", + false, ); $data[] = array( @@ -633,6 +964,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key-post", "/$post_key-post/", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key-post", + "/$post_key-post/", + false, ); $data[] = array( @@ -640,6 +980,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', "/$post_key-post/feed/", + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + "/$post_key-post/feed/", + false, ); $data[] = array( @@ -647,6 +996,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&page_id=%ID%', "/$post_key-page/feed/", + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?feed=rss&page_id=%ID%', + "/$post_key-page/feed/", + false, ); } } @@ -658,6 +1016,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?p=%ID%', "/$post_key-post/", + true, + ); + + $data[] = array( + $post_key, + $user, + '/?p=%ID%', + "/$post_key-post/", + false, ); $data[] = array( @@ -665,6 +1032,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?attachment_id=%ID%', "/$post_key-post/$post_key-inherited-attachment/", + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/?attachment_id=%ID%', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -672,6 +1048,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?post_type=page&p=%ID%', "/$post_key-page/", + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?post_type=page&p=%ID%', + "/$post_key-page/", + false, ); $data[] = array( @@ -679,6 +1064,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?page_id=%ID%', "/$post_key-page/", + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?page_id=%ID%', + "/$post_key-page/", + false, ); $data[] = array( @@ -686,6 +1080,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key-post", "/$post_key-post/", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key-post", + "/$post_key-post/", + false, ); $data[] = array( @@ -693,6 +1096,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', "/$post_key-post/feed/", + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + "/$post_key-post/feed/", + false, ); $data[] = array( @@ -700,6 +1112,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&page_id=%ID%', "/$post_key-page/feed/", + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?feed=rss&page_id=%ID%', + "/$post_key-page/feed/", + false, ); } @@ -709,6 +1130,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?p=%ID%', '/?p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?p=%ID%', + '/?p=%ID%', + false, ); $data[] = array( @@ -716,6 +1146,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?attachment_id=%ID%', '/?attachment_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/?attachment_id=%ID%', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -723,6 +1162,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?post_type=page&p=%ID%', '/?post_type=page&p=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?post_type=page&p=%ID%', + '/?post_type=page&p=%ID%', + false, ); $data[] = array( @@ -730,6 +1178,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?page_id=%ID%', '/?page_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?page_id=%ID%', + '/?page_id=%ID%', + false, ); $data[] = array( @@ -737,6 +1194,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key-post", "/?name=$post_key-post", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key-post", + "/?name=$post_key-post", + false, ); $data[] = array( @@ -744,6 +1210,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?feed=rss&p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?feed=rss&p=%ID%', + false, ); $data[] = array( @@ -751,6 +1226,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&page_id=%ID%', '/?feed=rss&page_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?feed=rss&page_id=%ID%', + '/?feed=rss&page_id=%ID%', + false, ); } } @@ -762,6 +1246,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?p=%ID%', "/$post_key/$post_key/", + true, + ); + + $data[] = array( + $post_key, + $user, + '/?p=%ID%', + "/$post_key/$post_key/", + false, ); $data[] = array( @@ -769,6 +1262,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?attachment_id=%ID%', "/$post_key/$post_key/$post_key-inherited-attachment/", + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/?attachment_id=%ID%', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -776,6 +1278,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key&post_type=$post_key", "/$post_key/$post_key/?post_type=$post_key", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key&post_type=$post_key", + "/$post_key/$post_key/?post_type=$post_key", + false, ); $data[] = array( @@ -783,6 +1294,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', "/$post_key/$post_key/feed/", + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + "/$post_key/$post_key/feed/", + false, ); } @@ -792,6 +1312,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?p=%ID%', '/?p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?p=%ID%', + '/?p=%ID%', + false, ); $data[] = array( @@ -799,6 +1328,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?attachment_id=%ID%', '/?attachment_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/?attachment_id=%ID%', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -806,6 +1344,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key&post_type=$post_key", "/?name=$post_key&post_type=$post_key", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key&post_type=$post_key", + "/?name=$post_key&post_type=$post_key", + false, ); $data[] = array( @@ -813,6 +1360,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?feed=rss&p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?feed=rss&p=%ID%', + false, ); } } @@ -824,6 +1380,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?p=%ID%', '/?p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?p=%ID%', + '/?p=%ID%', + false, ); $data[] = array( @@ -831,7 +1396,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?attachment_id=%ID%', '/?attachment_id=%ID%', - // "/$post_key-inherited-attachment/", + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/?attachment_id=%ID%', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -839,6 +1412,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key&post_type=$post_key", "/?name=$post_key&post_type=$post_key", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key&post_type=$post_key", + "/?name=$post_key&post_type=$post_key", + false, ); $data[] = array( @@ -846,6 +1428,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?feed=rss&p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?feed=rss&p=%ID%', + false, ); } } @@ -857,6 +1448,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?p=%ID%', '/?p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?p=%ID%', + '/?p=%ID%', + false, ); $data[] = array( @@ -864,6 +1464,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?attachment_id=%ID%', '/?attachment_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/?attachment_id=%ID%', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -871,6 +1480,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?post_type=page&p=%ID%', '/?post_type=page&p=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?post_type=page&p=%ID%', + '/?post_type=page&p=%ID%', + false, ); $data[] = array( @@ -878,6 +1496,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?page_id=%ID%', '/?page_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?page_id=%ID%', + '/?page_id=%ID%', + false, ); $data[] = array( @@ -885,6 +1512,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key-post", "/?name=$post_key-post", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key-post", + "/?name=$post_key-post", + false, ); $data[] = array( @@ -892,6 +1528,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?feed=rss&p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?feed=rss&p=%ID%', + false, ); $data[] = array( @@ -899,6 +1544,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&page_id=%ID%', '/?feed=rss&page_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?feed=rss&page_id=%ID%', + '/?feed=rss&page_id=%ID%', + false, ); } } @@ -910,6 +1564,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?p=%ID%', '/?p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?p=%ID%', + '/?p=%ID%', + false, ); $data[] = array( @@ -917,6 +1580,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?attachment_id=%ID%', '/?attachment_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/?attachment_id=%ID%', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -924,6 +1596,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/trash-post/trash-post-inherited-attachment/', '/?attachment_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/trash-post/trash-post-inherited-attachment/', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -931,6 +1612,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/trash-post__trashed/trash-post-inherited-attachment/', '/?attachment_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-attachment", + $user, + '/trash-post__trashed/trash-post-inherited-attachment/', + '/?attachment_id=%ID%', + false, ); $data[] = array( @@ -938,6 +1628,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?post_type=page&p=%ID%', '/?post_type=page&p=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?post_type=page&p=%ID%', + '/?post_type=page&p=%ID%', + false, ); $data[] = array( @@ -945,6 +1644,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?page_id=%ID%', '/?page_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?page_id=%ID%', + '/?page_id=%ID%', + false, ); $data[] = array( @@ -952,6 +1660,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, "/?name=$post_key-post", "/?name=$post_key-post", + true, + ); + + $data[] = array( + $post_key, + $user, + "/?name=$post_key-post", + "/?name=$post_key-post", + false, ); $data[] = array( @@ -959,6 +1676,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&p=%ID%', '/?feed=rss&p=%ID%', + true, + ); + + $data[] = array( + $post_key, + $user, + '/?feed=rss&p=%ID%', + '/?feed=rss&p=%ID%', + false, ); $data[] = array( @@ -966,6 +1692,15 @@ class Tests_Canonical_PostStatus extends WP_Canonical_UnitTestCase { $user, '/?feed=rss&page_id=%ID%', '/?feed=rss&page_id=%ID%', + true, + ); + + $data[] = array( + "$post_key-page", + $user, + '/?feed=rss&page_id=%ID%', + '/?feed=rss&page_id=%ID%', + false, ); } }