Make WordPress Core


Ignore:
Timestamp:
08/22/2022 10:42:59 PM (16 months ago)
Author:
SergeyBiryukov
Message:

Tests: Consistently skip tests for non-implemented methods in REST API test classes.

WordPress core test suite uses PHPUnit's beStrictAboutTestsThatDoNotTestAnything option set to true, which marks a test as risky when no assertions are performed.

REST API test classes have some empty tests for non-implemented methods because these test classes extend the abstract WP_Test_REST_Controller_Testcase class, which requires several methods to be implemented that don't necessarily make sense for all REST API routes.

Some of these empty tests were already marked as skipped, but not in a consistent manner. Since skipping these tests is intentional for the time being, this commit aims to bring some consistency and adjust them all to be more accurately reported as skipped instead of risky.

The skipping can be reconsidered in the future when the tests are either removed as unnecessary or updated to actually perform assertions related to their behavior.

Follow-up to [40534], [41176], [41228].

Props Mte90, tomepajk, johnbillion, zieladam, SergeyBiryukov.
See #40538, #41463, #55652.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/rest-api/rest-themes-controller.php

    r53659 r53921  
    12021202     * The create_item() method does not exist for themes.
    12031203     */
    1204     public function test_create_item() {}
     1204    public function test_create_item() {
     1205        $this->markTestSkipped( 'Controller does not implement create_item().' );
     1206    }
    12051207
    12061208    /**
    12071209     * The update_item() method does not exist for themes.
    12081210     */
    1209     public function test_update_item() {}
     1211    public function test_update_item() {
     1212        $this->markTestSkipped( 'Controller does not implement update_item().' );
     1213    }
    12101214
    12111215    /**
     
    13961400     * The delete_item() method does not exist for themes.
    13971401     */
    1398     public function test_delete_item() {}
     1402    public function test_delete_item() {
     1403        $this->markTestSkipped( 'Controller does not implement delete_item().' );
     1404    }
    13991405
    14001406    /**
    14011407     * Context is not supported for themes.
    14021408     */
    1403     public function test_context_param() {}
     1409    public function test_context_param() {
     1410        $this->markTestSkipped( 'Controller does not use get_context_param().' );
     1411    }
    14041412}
Note: See TracChangeset for help on using the changeset viewer.