Make WordPress Core


Ignore:
Timestamp:
09/02/2020 12:35:36 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Tests: First pass at using assertSame() instead of assertEquals() in most of the unit tests.

This ensures that not only the return values match the expected results, but also that their type is the same.

Going forward, stricter type checking by using assertSame() should generally be preferred to assertEquals() where appropriate, to make the tests more reliable.

Props johnbillion, jrf, SergeyBiryukov.
See #38266.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/admin/includesSchema.php

    r48124 r48937  
    111111        $wpdb->options = $orig_options;
    112112
    113         $this->assertEquals( $expected, $results );
     113        $this->assertSame( $expected, $results );
    114114    }
    115115
     
    120120                array(
    121121                    // Random options to check.
    122                     'posts_per_rss'    => 10,
    123                     'rss_use_excerpt'  => 0,
     122                    'posts_per_rss'    => '10',
     123                    'rss_use_excerpt'  => '0',
    124124                    'mailserver_url'   => 'mail.example.com',
    125125                    'mailserver_login' => 'login@example.com',
     
    129129            array(
    130130                array(
    131                     'posts_per_rss'   => 7,
    132                     'rss_use_excerpt' => 1,
     131                    'posts_per_rss'   => '7',
     132                    'rss_use_excerpt' => '1',
    133133                ),
    134134                array(
    135135                    // Random options to check.
    136                     'posts_per_rss'    => 7,
    137                     'rss_use_excerpt'  => 1,
     136                    'posts_per_rss'    => '7',
     137                    'rss_use_excerpt'  => '1',
    138138                    'mailserver_url'   => 'mail.example.com',
    139139                    'mailserver_login' => 'login@example.com',
     
    148148                    // Random options to check.
    149149                    'custom_option'    => '1',
    150                     'posts_per_rss'    => 10,
    151                     'rss_use_excerpt'  => 0,
     150                    'posts_per_rss'    => '10',
     151                    'rss_use_excerpt'  => '0',
    152152                    'mailserver_url'   => 'mail.example.com',
    153153                    'mailserver_login' => 'login@example.com',
     
    201201        $wpdb->blogmeta = $orig_blogmeta;
    202202
    203         $this->assertEquals( $expected, $results );
     203        $this->assertSame( $expected, $results );
    204204    }
    205205
     
    249249        $wpdb->sitemeta = $orig_sitemeta;
    250250
    251         $this->assertEquals( $expected, $results );
     251        $this->assertSame( $expected, $results );
    252252    }
    253253
     
    259259                    // Random meta to check.
    260260                    'registration'      => 'none',
    261                     'blog_upload_space' => 100,
    262                     'fileupload_maxk'   => 1500,
     261                    'blog_upload_space' => '100',
     262                    'fileupload_maxk'   => '1500',
    263263                ),
    264264            ),
     
    272272                    'site_name'         => 'My Great Network',
    273273                    'registration'      => 'none',
    274                     'blog_upload_space' => 100,
    275                     'fileupload_maxk'   => 1500,
     274                    'blog_upload_space' => '100',
     275                    'fileupload_maxk'   => '1500',
    276276                    'WPLANG'            => 'fr_FR',
    277277                ),
     
    285285                    'custom_meta'       => '1',
    286286                    'registration'      => 'none',
    287                     'blog_upload_space' => 100,
    288                     'fileupload_maxk'   => 1500,
     287                    'blog_upload_space' => '100',
     288                    'fileupload_maxk'   => '1500',
    289289                ),
    290290            ),
Note: See TracChangeset for help on using the changeset viewer.