Make WordPress Core

Ticket #39265: updated_files_form_post_folder.patch

File updated_files_form_post_folder.patch, 6.1 KB (added by pbearne, 4 years ago)

add this after post folder

  • tests/phpunit/tests/post/filtering.php

     
    88 *
    99 * @group post
    1010 * @group formatting
     11 *
     12 * @covers ::wp_insert_post
    1113 */
    1214class Tests_Post_Filtering extends WP_UnitTestCase {
    1315        function setUp() {
     
    2224                parent::tearDown();
    2325        }
    2426
    25         // A simple test to make sure unclosed tags are fixed.
     27        /**
     28         * A simple test to make sure unclosed tags are fixed.
     29         */
    2630        function test_post_content_unknown_tag() {
    2731
    2832                $content = <<<EOF
     
    3943                $this->assertSame( $expected, $post->post_content );
    4044        }
    4145
    42         // A simple test to make sure unbalanced tags are fixed.
     46        /**
     47         * A simple test to make sure unbalanced tags are fixed.
     48         */
    4349        function test_post_content_unbalanced_tag() {
    4450
    4551                $content = <<<EOF
     
    5662                $this->assertSame( $expected, $post->post_content );
    5763        }
    5864
    59         // Test KSES filtering of disallowed attribute.
     65        /**
     66         * Test KSES filtering of disallowed attribute.
     67         */
    6068        function test_post_content_disallowed_attr() {
    6169
    6270                $content = <<<EOF
     
    93101                $this->assertSame( $expected, $post->post_content );
    94102        }
    95103
    96         // Make sure unbalanced tags are untouched when the balance option is off.
     104        /**
     105         * Make sure unbalanced tags are untouched when the balance option is off.
     106         */
    97107        function test_post_content_nobalance_nextpage_more() {
    98108
    99109                update_option( 'use_balanceTags', 0 );
  • tests/phpunit/tests/post/wpInsertPost.php

     
    6767
    6868        /**
    6969         * @ticket 11863
     70         *
     71         * @covers ::wp_trash_post
    7072         */
    7173        function test_trashing_a_post_should_add_trashed_suffix_to_post_name() {
    7274                $trashed_about_page_id = self::factory()->post->create(
     
    8284
    8385        /**
    8486         * @ticket 11863
     87         *
     88         * @covers ::wp_trash_post
    8589         */
    8690        public function test_trashed_suffix_should_be_added_to_post_with__trashed_in_slug() {
    8791                $trashed_about_page_id = self::factory()->post->create(
     
    98102
    99103        /**
    100104         * @ticket 11863
     105         *
     106         * @covers ::wp_untrash_post
    101107         */
    102108        function test_trashed_posts_original_post_name_should_be_reassigned_after_untrashing() {
    103109                $about_page_id = self::factory()->post->create(
     
    115121
    116122        /**
    117123         * @ticket 11863
     124         *
     125         * @covers ::wp_insert_post
    118126         */
    119127        function test_creating_a_new_post_should_add_trashed_suffix_to_post_name_of_trashed_posts_with_the_desired_slug() {
    120128                $trashed_about_page_id = self::factory()->post->create(
     
    139147
    140148        /**
    141149         * @ticket 11863
     150         *
     151         * @covers ::wp_untrash_post
    142152         */
    143153        function test_untrashing_a_post_with_a_stored_desired_post_name_should_get_its_post_name_suffixed_if_another_post_has_taken_the_desired_post_name() {
    144154                $about_page_id = self::factory()->post->create(
     
    173183        /**
    174184         * @ticket 23022
    175185         * @dataProvider data_various_post_statuses
     186         *
     187         * @covers ::wp_untrash_post
    176188         */
    177189        function test_untrashing_a_post_should_always_restore_it_to_draft_status( $post_status ) {
    178190                $page_id = self::factory()->post->create(
     
    191203        /**
    192204         * @ticket 23022
    193205         * @dataProvider data_various_post_statuses
     206         *
     207         * @covers ::wp_untrash_post
    194208         */
    195209        function test_wp_untrash_post_status_filter_restores_post_to_correct_status( $post_status ) {
    196210                add_filter( 'wp_untrash_post_status', 'wp_untrash_post_set_previous_status', 10, 3 );
     
    256270         *
    257271         * @ticket 42464
    258272         * @dataProvider data_various_post_types
     273         *
     274         * @covers ::wp_insert_post
     275         * @covers ::wp_update_post
    259276         */
    260277        function test_contributor_cannot_set_post_slug( $post_type ) {
    261278                wp_set_current_user( self::$user_ids['contributor'] );
     
    295312         *
    296313         * @ticket 42464
    297314         * @dataProvider data_various_post_types
     315         *
     316         * @covers ::wp_insert_post
     317         * @covers ::wp_update_post
    298318         */
    299319        function test_administrator_can_set_post_slug( $post_type ) {
    300320                wp_set_current_user( self::$user_ids['administrator'] );
     
    336356         * These assertions failed prior to ticket #42464.
    337357         *
    338358         * @ticket 42464
     359         *
     360         * @covers ::wp_insert_post
     361         * @covers ::wp_update_post
    339362         */
    340363        function test_administrator_cannot_set_post_slug_on_post_type_they_cannot_publish() {
    341364                wp_set_current_user( self::$user_ids['administrator'] );
     
    372395
    373396        /**
    374397         * @ticket 25347
     398         *
     399         * @covers ::wp_insert_post
    375400         */
    376401        function test_scheduled_post_with_a_past_date_should_be_published() {
    377402
  • tests/phpunit/tests/post/wpPublishPost.php

     
    2525         * Ensure wp_publish_post does not add default category in error.
    2626         *
    2727         * @ticket 51292
     28         *
     29         * @covers ::wp_publish_post
    2830         */
    2931        function test_wp_publish_post_respects_current_categories() {
    3032                $post_id     = self::$auto_draft_id;
     
    4446        /**
    4547         * Ensure wp_publish_post adds default category.
    4648         *
     49         * @ticket 51292
     50         *
    4751         * @covers ::wp_publish_post
    48          * @ticket 51292
    4952         */
    5053        function test_wp_publish_post_adds_default_category() {
    5154                $post_id = self::$auto_draft_id;
     
    6467        /**
    6568         * Ensure wp_publish_post adds default category when tagged.
    6669         *
     70         * @ticket 51292
     71         *
    6772         * @covers ::wp_publish_post
    68          * @ticket 51292
    6973         */
    7074        function test_wp_publish_post_adds_default_category_when_tagged() {
    7175                $post_id = self::$auto_draft_id;
     
    8589        /**
    8690         * Ensure wp_publish_post does not add default term in error.
    8791         *
     92         * @ticket 51292
     93         *
    8894         * @covers ::wp_publish_post
    89          * @ticket 51292
    9095         */
    9196        function test_wp_publish_post_respects_current_terms() {
    9297                // Create custom taxonomy to test with.
     
    119124
    120125        /**
    121126         * Ensure wp_publish_post adds default term.
     127         *
     128         * @ticket 51292
    122129         *
    123130         * @covers ::wp_publish_post
    124          * @ticket 51292
    125131         */
    126132        function test_wp_publish_post_adds_default_term() {
    127133                // Create custom taxonomy to test with.