Make WordPress Core

Ticket #39265: 39265-new-fixes.patch

File 39265-new-fixes.patch, 6.4 KB (added by jrf, 4 years ago)

Fixes the syntax of some @covers tags

  • tests/phpunit/tests/error-protection/recovery-mode-key-service.php

    From 74cb648aea7c3b199f1fc6dc717918e18de96189 Mon Sep 17 00:00:00 2001
    From: jrfnl <jrfnl@users.noreply.github.com>
    Date: Sun, 14 Mar 2021 02:58:06 +0100
    Subject: [PATCH] Build/tests: fix some newly introduced broken @covers tags
    
    ---
     .../recovery-mode-key-service.php             | 30 +++++++++----------
     tests/phpunit/tests/http/http.php             |  2 +-
     2 files changed, 16 insertions(+), 16 deletions(-)
    
    diff --git a/tests/phpunit/tests/error-protection/recovery-mode-key-service.php b/tests/phpunit/tests/error-protection/recovery-mode-key-service.php
    index 5d66b4bbff..66f15e6c1e 100644
    a b class Tests_Recovery_Mode_Key_Service extends WP_UnitTestCase { 
    88        /**
    99         * @ticket 46130
    1010         *
    11          * @covers WP_Recovery_Mode_Cookie_Service::generate_recovery_mode_token
    12          * @covers WP_Recovery_Mode_Cookie_Service::generate_and_store_recovery_mode_key
     11         * @covers WP_Recovery_Mode_Key_Service::generate_recovery_mode_token
     12         * @covers WP_Recovery_Mode_Key_Service::generate_and_store_recovery_mode_key
    1313         */
    1414        public function test_generate_and_store_recovery_mode_key_returns_recovery_key() {
    1515                $service = new WP_Recovery_Mode_Key_Service();
    class Tests_Recovery_Mode_Key_Service extends WP_UnitTestCase { 
    2222        /**
    2323         * @ticket 46130
    2424         *
    25          * @covers WP_Recovery_Mode_Cookie_Service::validate_recovery_mode_key
     25         * @covers WP_Recovery_Mode_Key_Service::validate_recovery_mode_key
    2626         */
    2727        public function test_validate_recovery_mode_key_returns_wp_error_if_no_key_set() {
    2828                $service = new WP_Recovery_Mode_Key_Service();
    class Tests_Recovery_Mode_Key_Service extends WP_UnitTestCase { 
    3535        /**
    3636         * @ticket 46130
    3737         *
    38          * @covers WP_Recovery_Mode_Cookie_Service::validate_recovery_mode_key
     38         * @covers WP_Recovery_Mode_Key_Service::validate_recovery_mode_key
    3939         */
    4040        public function test_validate_recovery_mode_key_returns_wp_error_if_data_missing() {
    4141                update_option( 'recovery_keys', 'gibberish' );
    class Tests_Recovery_Mode_Key_Service extends WP_UnitTestCase { 
    5050        /**
    5151         * @ticket 46130
    5252         *
    53          * @covers WP_Recovery_Mode_Cookie_Service::validate_recovery_mode_key
     53         * @covers WP_Recovery_Mode_Key_Service::validate_recovery_mode_key
    5454         */
    5555        public function test_validate_recovery_mode_key_returns_wp_error_if_bad() {
    5656                update_option( 'recovery_keys', array( 'token' => 'gibberish' ) );
    class Tests_Recovery_Mode_Key_Service extends WP_UnitTestCase { 
    6666        /**
    6767         * @ticket 46130
    6868         *
    69          * @covers WP_Recovery_Mode_Cookie_Service::validate_recovery_mode_key
     69         * @covers WP_Recovery_Mode_Key_Service::validate_recovery_mode_key
    7070         */
    7171        public function test_validate_recovery_mode_key_returns_wp_error_if_stored_format_is_invalid() {
    7272
    class Tests_Recovery_Mode_Key_Service extends WP_UnitTestCase { 
    8383        /**
    8484         * @ticket 46130
    8585         *
    86          * @covers WP_Recovery_Mode_Cookie_Service::validate_recovery_mode_key
     86         * @covers WP_Recovery_Mode_Key_Service::validate_recovery_mode_key
    8787         */
    8888        public function test_validate_recovery_mode_key_returns_wp_error_if_empty_key() {
    8989                $service = new WP_Recovery_Mode_Key_Service();
    class Tests_Recovery_Mode_Key_Service extends WP_UnitTestCase { 
    9898        /**
    9999         * @ticket 46130
    100100         *
    101          * @covers WP_Recovery_Mode_Cookie_Service::validate_recovery_mode_key
     101         * @covers WP_Recovery_Mode_Key_Service::validate_recovery_mode_key
    102102         */
    103103        public function test_validate_recovery_mode_key_returns_wp_error_if_hash_mismatch() {
    104104                $service = new WP_Recovery_Mode_Key_Service();
    class Tests_Recovery_Mode_Key_Service extends WP_UnitTestCase { 
    113113        /**
    114114         * @ticket 46130
    115115         *
    116          * @covers WP_Recovery_Mode_Cookie_Service::validate_recovery_mode_key
     116         * @covers WP_Recovery_Mode_Key_Service::validate_recovery_mode_key
    117117         */
    118118        public function test_validate_recovery_mode_key_returns_wp_error_if_expired() {
    119119                $service = new WP_Recovery_Mode_Key_Service();
    class Tests_Recovery_Mode_Key_Service extends WP_UnitTestCase { 
    133133        /**
    134134         * @ticket 46130
    135135         *
    136          * @covers WP_Recovery_Mode_Cookie_Service::validate_recovery_mode_key
     136         * @covers WP_Recovery_Mode_Key_Service::validate_recovery_mode_key
    137137         */
    138138        public function test_validate_recovery_mode_key_returns_true_for_valid_key() {
    139139                $service = new WP_Recovery_Mode_Key_Service();
    class Tests_Recovery_Mode_Key_Service extends WP_UnitTestCase { 
    145145        /**
    146146         * @ticket 46595
    147147         *
    148          * @covers WP_Recovery_Mode_Cookie_Service::validate_recovery_mode_key
     148         * @covers WP_Recovery_Mode_Key_Service::validate_recovery_mode_key
    149149         */
    150150        public function test_validate_recovery_mode_key_returns_error_if_token_used_more_than_once() {
    151151                $service = new WP_Recovery_Mode_Key_Service();
    class Tests_Recovery_Mode_Key_Service extends WP_UnitTestCase { 
    164164        /**
    165165         * @ticket 46595
    166166         *
    167          * @covers WP_Recovery_Mode_Cookie_Service::generate_recovery_mode_token
    168          * @covers WP_Recovery_Mode_Cookie_Service::generate_and_store_recovery_mode_key
    169          * @covers WP_Recovery_Mode_Cookie_Service::validate_recovery_mode_key
     167         * @covers WP_Recovery_Mode_Key_Service::generate_recovery_mode_token
     168         * @covers WP_Recovery_Mode_Key_Service::generate_and_store_recovery_mode_key
     169         * @covers WP_Recovery_Mode_Key_Service::validate_recovery_mode_key
    170170         */
    171171        public function test_validate_recovery_mode_key_returns_error_if_token_used_more_than_once_more_than_key_stored() {
    172172                $service = new WP_Recovery_Mode_Key_Service();
    class Tests_Recovery_Mode_Key_Service extends WP_UnitTestCase { 
    190190        /**
    191191         * @ticket 46595
    192192         *
    193          * @covers WP_Recovery_Mode_Cookie_Service::clean_expired_keys
     193         * @covers WP_Recovery_Mode_Key_Service::clean_expired_keys
    194194         */
    195195        public function test_clean_expired_keys() {
    196196                $service = new WP_Recovery_Mode_Key_Service();
  • tests/phpunit/tests/http/http.php

    diff --git a/tests/phpunit/tests/http/http.php b/tests/phpunit/tests/http/http.php
    index 6799b12cd9..f8ae30e6c2 100644
    a b class Tests_HTTP_HTTP extends WP_UnitTestCase { 
    1111        /**
    1212         * @dataProvider make_absolute_url_testcases
    1313         *
    14          * @covers ::WP_Http::make_absolute_url
     14         * @covers WP_Http::make_absolute_url
    1515         */
    1616        function test_make_absolute_url( $relative_url, $absolute_url, $expected ) {
    1717                $actual = WP_Http::make_absolute_url( $relative_url, $absolute_url );