Make WordPress Core

Ticket #39265: networkQuery.php.patch

File networkQuery.php.patch, 7.4 KB (added by pbearne, 4 years ago)

fixed formatting

  • tests/phpunit/tests/multisite/networkQuery.php

     
    6161                        }
    6262                }
    6363
     64                /**
     65                 * @covers WP_Network_Query::query
     66                 */
    6467                public function test_wp_network_query_by_number() {
    6568                        $q     = new WP_Network_Query();
    6669                        $found = $q->query(
     
    7376                        $this->assertSame( 3, count( $found ) );
    7477                }
    7578
     79                /**
     80                 * @covers WP_Network_Query::query
     81                 */
    7682                public function test_wp_network_query_by_network__in_with_order() {
    7783                        $expected = array( self::$network_ids['wordpress.org/'], self::$network_ids['make.wordpress.org/'] );
    7884
     
    98104                        $this->assertSame( array_reverse( $expected ), $found );
    99105                }
    100106
     107                /**
     108                 * @covers WP_Network_Query::query
     109                 */
    101110                public function test_wp_network_query_by_network__in_with_single_id() {
    102111                        $expected = array( self::$network_ids['wordpress.org/'] );
    103112
     
    112121                        $this->assertSameSets( $expected, $found );
    113122                }
    114123
     124                /**
     125                 * @covers WP_Network_Query::query
     126                 */
    115127                public function test_wp_network_query_by_network__in_with_multiple_ids() {
    116128                        $expected = array( self::$network_ids['wordpress.org/'], self::$network_ids['www.wordpress.net/'] );
    117129
     
    126138                        $this->assertSameSets( $expected, $found );
    127139                }
    128140
     141                /**
     142                 * @covers WP_Network_Query::query
     143                 */
    129144                public function test_wp_network_query_by_network__in_and_count_with_multiple_ids() {
    130145                        $expected = array( self::$network_ids['wordpress.org/'], self::$network_ids['make.wordpress.org/'] );
    131146
     
    141156                        $this->assertSame( 2, $found );
    142157                }
    143158
     159                /**
     160                 * @covers WP_Network_Query::query
     161                 */
    144162                public function test_wp_network_query_by_network__not_in_with_single_id() {
    145163                        $excluded = array( self::$network_ids['wordpress.org/'] );
    146164                        $expected = array_diff( self::$network_ids, $excluded );
     
    159177                        $this->assertSameSets( $expected, $found );
    160178                }
    161179
     180                /**
     181                 * @covers WP_Network_Query::query
     182                 */
    162183                public function test_wp_network_query_by_network__not_in_with_multiple_ids() {
    163184                        $excluded = array( self::$network_ids['wordpress.org/'], self::$network_ids['www.w.org/foo/'] );
    164185                        $expected = array_diff( self::$network_ids, $excluded );
     
    177198                        $this->assertSameSets( $expected, $found );
    178199                }
    179200
     201                /**
     202                 * @covers WP_Network_Query::query
     203                 */
    180204                public function test_wp_network_query_by_domain() {
    181205                        $q     = new WP_Network_Query();
    182206                        $found = $q->query(
     
    193217                        $this->assertSameSets( $expected, $found );
    194218                }
    195219
     220                /**
     221                 * @covers WP_Network_Query::query
     222                 */
    196223                public function test_wp_network_query_by_domain__in_with_single_domain() {
    197224                        $q     = new WP_Network_Query();
    198225                        $found = $q->query(
     
    209236                        $this->assertSameSets( $expected, $found );
    210237                }
    211238
     239                /**
     240                 * @covers WP_Network_Query::query
     241                 */
    212242                public function test_wp_network_query_by_domain__in_with_multiple_domains() {
    213243                        $q     = new WP_Network_Query();
    214244                        $found = $q->query(
     
    226256                        $this->assertSameSets( $expected, $found );
    227257                }
    228258
     259                /**
     260                 * @covers WP_Network_Query::query
     261                 */
    229262                public function test_wp_network_query_by_domain__in_with_multiple_domains_and_number() {
    230263                        $q     = new WP_Network_Query();
    231264                        $found = $q->query(
     
    243276                        $this->assertSameSets( $expected, $found );
    244277                }
    245278
     279                /**
     280                 * @covers WP_Network_Query::query
     281                 */
    246282                public function test_wp_network_query_by_domain__in_with_multiple_domains_and_number_and_offset() {
    247283                        $q     = new WP_Network_Query();
    248284                        $found = $q->query(
     
    261297                        $this->assertSameSets( $expected, $found );
    262298                }
    263299
     300                /**
     301                 * @covers WP_Network_Query::query
     302                 */
    264303                public function test_wp_network_query_by_domain__not_in_with_single_domain() {
    265304                        $q     = new WP_Network_Query();
    266305                        $found = $q->query(
     
    280319                        $this->assertSameSets( $expected, $found );
    281320                }
    282321
     322                /**
     323                 * @covers WP_Network_Query::query
     324                 */
    283325                public function test_wp_network_query_by_domain__not_in_with_multiple_domains() {
    284326                        $q     = new WP_Network_Query();
    285327                        $found = $q->query(
     
    298340                        $this->assertSameSets( $expected, $found );
    299341                }
    300342
     343                /**
     344                 * @covers WP_Network_Query::query
     345                 */
    301346                public function test_wp_network_query_by_domain__not_in_with_multiple_domains_and_number() {
    302347                        $q     = new WP_Network_Query();
    303348                        $found = $q->query(
     
    316361                        $this->assertSameSets( $expected, $found );
    317362                }
    318363
     364                /**
     365                 * @covers WP_Network_Query::query
     366                 */
    319367                public function test_wp_network_query_by_domain__not_in_with_multiple_domains_and_number_and_offset() {
    320368                        $q     = new WP_Network_Query();
    321369                        $found = $q->query(
     
    335383                        $this->assertSameSets( $expected, $found );
    336384                }
    337385
     386                /**
     387                 * @covers WP_Network_Query::query
     388                 */
    338389                public function test_wp_network_query_by_path_with_expected_results() {
    339390                        $q     = new WP_Network_Query();
    340391                        $found = $q->query(
     
    354405                        $this->assertSameSets( $expected, $found );
    355406                }
    356407
     408                /**
     409                 * @covers WP_Network_Query::query
     410                 */
    357411                public function test_wp_network_query_by_path_and_number_and_offset_with_expected_results() {
    358412                        $q     = new WP_Network_Query();
    359413                        $found = $q->query(
     
    373427                        $this->assertSameSets( $expected, $found );
    374428                }
    375429
     430                /**
     431                 * @covers WP_Network_Query::query
     432                 */
    376433                public function test_wp_network_query_by_path_with_no_expected_results() {
    377434                        $q     = new WP_Network_Query();
    378435                        $found = $q->query(
     
    385442                        $this->assertEmpty( $found );
    386443                }
    387444
     445                /**
     446                 * @covers WP_Network_Query::query
     447                 */
    388448                public function test_wp_network_query_by_search_with_text_in_domain() {
    389449                        $q     = new WP_Network_Query();
    390450                        $found = $q->query(
     
    401461                        $this->assertSameSets( $expected, $found );
    402462                }
    403463
     464                /**
     465                 * @covers WP_Network_Query::query
     466                 */
    404467                public function test_wp_network_query_by_search_with_text_in_path() {
    405468                        $q     = new WP_Network_Query();
    406469                        $found = $q->query(
     
    417480                        $this->assertSameSets( $expected, $found );
    418481                }
    419482
     483                /**
     484                 * @covers WP_Network_Query::query
     485                 */
    420486                public function test_wp_network_query_by_path_order_by_domain_desc() {
    421487                        $q     = new WP_Network_Query();
    422488                        $found = $q->query(
     
    440506
    441507                /**
    442508                 * @ticket 41347
     509                 *
     510                 * @covers WP_Network_Query::query
    443511                 */
    444512                public function test_wp_network_query_cache_with_different_fields_no_count() {
    445513                        global $wpdb;
     
    467535
    468536                /**
    469537                 * @ticket 41347
     538                 *
     539                 * @covers WP_Network_Query::query
    470540                 */
    471541                public function test_wp_network_query_cache_with_different_fields_active_count() {
    472542                        global $wpdb;
     
    496566
    497567                /**
    498568                 * @ticket 41347
     569                 *
     570                 * @covers WP_Network_Query::query
    499571                 */
    500572                public function test_wp_network_query_cache_with_same_fields_different_count() {
    501573                        global $wpdb;
     
    526598                /**
    527599                 * @ticket 45749
    528600                 * @ticket 47599
     601                 *
     602                 * @covers WP_Network_Query::query
    529603                 */
    530604                public function test_networks_pre_query_filter_should_bypass_database_query() {
    531605                        global $wpdb;
     
    557631
    558632                /**
    559633                 * @ticket 51333
     634                 *
     635                 * @covers WP_Network_Query::query
    560636                 */
    561637                public function test_networks_pre_query_filter_should_set_networks_property() {
    562638                        add_filter( 'networks_pre_query', array( __CLASS__, 'filter_networks_pre_query_and_set_networks' ), 10, 2 );