Make WordPress Core

Ticket #37181: 37181.7.diff

File 37181.7.diff, 23.6 KB (added by spacedmonkey, 7 years ago)
  • src/wp-includes/class-wp-network-query.php

     
    8989         * @param string|array $query {
    9090         *     Optional. Array or query string of network query parameters. Default empty.
    9191         *
    92          *     @type array        $network__in          Array of network IDs to include. Default empty.
    93          *     @type array        $network__not_in      Array of network IDs to exclude. Default empty.
    94          *     @type bool         $count                Whether to return a network count (true) or array of network objects.
    95          *                                              Default false.
    96          *     @type string       $fields               Network fields to return. Accepts 'ids' (returns an array of network IDs)
    97          *                                              or empty (returns an array of complete network objects). Default empty.
    98          *     @type int          $number               Maximum number of networks to retrieve. Default empty (no limit).
    99          *     @type int          $offset               Number of networks to offset the query. Used to build LIMIT clause.
    100          *                                              Default 0.
    101          *     @type bool         $no_found_rows        Whether to disable the `SQL_CALC_FOUND_ROWS` query. Default true.
    102          *     @type string|array $orderby              Network status or array of statuses. Accepts 'id', 'domain', 'path',
    103          *                                              'domain_length', 'path_length' and 'network__in'. Also accepts false,
    104          *                                              an empty array, or 'none' to disable `ORDER BY` clause. Default 'id'.
    105          *     @type string       $order                How to order retrieved networks. Accepts 'ASC', 'DESC'. Default 'ASC'.
    106          *     @type string       $domain               Limit results to those affiliated with a given domain. Default empty.
    107          *     @type array        $domain__in           Array of domains to include affiliated networks for. Default empty.
    108          *     @type array        $domain__not_in       Array of domains to exclude affiliated networks for. Default empty.
    109          *     @type string       $path                 Limit results to those affiliated with a given path. Default empty.
    110          *     @type array        $path__in             Array of paths to include affiliated networks for. Default empty.
    111          *     @type array        $path__not_in         Array of paths to exclude affiliated networks for. Default empty.
    112          *     @type string       $search               Search term(s) to retrieve matching networks for. Default empty.
    113          *     @type bool         $update_network_cache Whether to prime the cache for found networks. Default true.
    114          * }
     92         * @type array $network__in Array of network IDs to include. Default empty.
     93         * @type array $network__not_in Array of network IDs to exclude. Default empty.
     94         * @type bool  $count Whether to return a network count (true) or array of network objects.
     95         *                                                    Default false.
     96         * @type string $fields Network fields to return. Accepts 'ids' (returns an array of network IDs)
     97         *                                                    or empty (returns an array of complete network objects). Default empty.
     98         * @type int    $number Maximum number of networks to retrieve. Default empty (no limit).
     99         * @type int    $offset Number of networks to offset the query. Used to build LIMIT clause.
     100         *                                                     Default 0.
     101         * @type bool   $no_found_rows Whether to disable the `SQL_CALC_FOUND_ROWS` query. Default true.
     102         * @type string|array $orderby Network status or array of statuses. Accepts 'id', 'domain', 'path',
     103         *                                                    'domain_length', 'path_length' and 'network__in'. Also accepts false,
     104         *                                                    an empty array, or 'none' to disable `ORDER BY` clause. Default 'id'.
     105         * @type string $order How to order retrieved networks. Accepts 'ASC', 'DESC'. Default 'ASC'.
     106         * @type string $domain Limit results to those affiliated with a given domain. Default empty.
     107         * @type array  $domain__in Array of domains to include affiliated networks for. Default empty.
     108         * @type array  $domain__not_in Array of domains to exclude affiliated networks for. Default empty.
     109         * @type string $path Limit results to those affiliated with a given path. Default empty.
     110         * @type array  $path__in Array of paths to include affiliated networks for. Default empty.
     111         * @type array  $path__not_in Array of paths to exclude affiliated networks for. Default empty.
     112         * @type string $search Search term(s) to retrieve matching networks for. Default empty.
     113         * @type bool   $update_network_cache Whether to prime the cache for found networks. Default true.
     114         * @type bool   $update_network_meta_cache Whether to prime the metadata (option) cache for found networks.
     115         *                                                    Default true.
     116         *
    115117         */
    116118        public function __construct( $query = '' ) {
    117119                $this->query_var_defaults = array(
    118                         'network__in'          => '',
    119                         'network__not_in'      => '',
    120                         'count'                => false,
    121                         'fields'               => '',
    122                         'number'               => '',
    123                         'offset'               => '',
    124                         'no_found_rows'        => true,
    125                         'orderby'              => 'id',
    126                         'order'                => 'ASC',
    127                         'domain'               => '',
    128                         'domain__in'           => '',
    129                         'domain__not_in'       => '',
    130                         'path'                 => '',
    131                         'path__in'             => '',
    132                         'path__not_in'         => '',
    133                         'search'               => '',
    134                         'update_network_cache' => true,
     120                        'network__in'               => '',
     121                        'network__not_in'           => '',
     122                        'count'                     => false,
     123                        'fields'                    => '',
     124                        'number'                    => '',
     125                        'offset'                    => '',
     126                        'no_found_rows'             => true,
     127                        'orderby'                   => 'id',
     128                        'order'                     => 'ASC',
     129                        'domain'                    => '',
     130                        'domain__in'                => '',
     131                        'domain__not_in'            => '',
     132                        'path'                      => '',
     133                        'path__in'                  => '',
     134                        'path__not_in'              => '',
     135                        'search'                    => '',
     136                        'update_network_cache'      => true,
     137                        'update_network_meta_cache' => true,
    135138                );
    136139
    137140                if ( ! empty( $query ) ) {
     
    203206
    204207                // Ignore the $fields argument as the queried result will be the same regardless.
    205208                unset( $_args['fields'] );
     209                unset( $_args['update_network_cache'] );
     210                unset( $_args['update_network_meta_cache'] );
    206211
    207212                $key = md5( serialize( $_args ) );
    208213                $last_changed = wp_cache_get_last_changed( 'networks' );
     
    244249                }
    245250
    246251                if ( $this->query_vars['update_network_cache'] ) {
    247                         _prime_network_caches( $network_ids );
     252                        _prime_network_caches( $network_ids, $this->query_vars['update_network_meta_cache'] );
    248253                }
    249254
    250255                // Fetch full network objects from the primed cache.
  • src/wp-includes/load.php

     
    517517        }
    518518
    519519        if ( function_exists( 'wp_cache_add_global_groups' ) ) {
    520                 wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'site-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites' ) );
     520                wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'site-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site_meta' ) );
    521521                wp_cache_add_non_persistent_groups( array( 'counts', 'plugins' ) );
    522522        }
    523523}
     
    542542
    543543                require( ABSPATH . WPINC . '/kses.php' );
    544544                require( ABSPATH . WPINC . '/pluggable.php' );
    545                 require( ABSPATH . WPINC . '/formatting.php' );
    546545
    547546                $link = wp_guess_url() . '/wp-admin/install.php';
    548547
  • src/wp-includes/ms-blogs.php

     
    848848                        if ( is_array( $global_groups ) ) {
    849849                                wp_cache_add_global_groups( $global_groups );
    850850                        } else {
    851                                 wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details' ) );
     851                                wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details', 'site_meta' ) );
    852852                        }
    853853                        wp_cache_add_non_persistent_groups( array( 'counts', 'plugins' ) );
    854854                }
     
    916916                        if ( is_array( $global_groups ) ) {
    917917                                wp_cache_add_global_groups( $global_groups );
    918918                        } else {
    919                                 wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details' ) );
     919                                wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details', 'site_meta' ) );
    920920                        }
    921921                        wp_cache_add_non_persistent_groups( array( 'counts', 'plugins' ) );
    922922                }
     
    11861186
    11871187        foreach ( (array) $ids as $id ) {
    11881188                wp_cache_delete( $id, 'networks' );
     1189                wp_cache_delete( $id, 'site_meta' );
    11891190
    11901191                /**
    11911192                 * Fires immediately after a network has been removed from the object cache.
     
    12081209 * cache using the network group with the key using the ID of the networks.
    12091210 *
    12101211 * @since 4.6.0
     1212 * @since 4.9.0 Introduced the `$update_meta_cache` parameter.
    12111213 *
    12121214 * @param array $networks Array of network row objects.
     1215 * @param bool  $update_meta_cache Whether to update sitemeta cache. Default true.
    12131216 */
    1214 function update_network_cache( $networks ) {
     1217function update_network_cache( $networks, $update_meta_cache = true ) {
     1218        $network_ids = array();
    12151219        foreach ( (array) $networks as $network ) {
     1220                $network_ids[] = $network->id;
    12161221                wp_cache_add( $network->id, $network, 'networks' );
    12171222        }
     1223
     1224        if ( $update_meta_cache ) {
     1225                update_meta_cache( 'site', $network_ids );
     1226        }
    12181227}
    12191228
    12201229/**
    12211230 * Adds any networks from the given IDs to the cache that do not already exist in cache.
    12221231 *
    12231232 * @since 4.6.0
     1233 * @since 4.9.0 Introduced the `$update_meta_cache` parameter.
    12241234 * @access private
    12251235 *
    12261236 * @see update_network_cache()
    12271237 * @global wpdb $wpdb WordPress database abstraction object.
    12281238 *
    12291239 * @param array $network_ids Array of network IDs.
     1240 * @param bool  $update_meta_cache Optional. Whether to update the meta cache. Default true.
    12301241 */
    1231 function _prime_network_caches( $network_ids ) {
     1242function _prime_network_caches( $network_ids, $update_meta_cache = true ) {
    12321243        global $wpdb;
    12331244
    12341245        $non_cached_ids = _get_non_cached_ids( $network_ids, 'networks' );
    12351246        if ( !empty( $non_cached_ids ) ) {
    12361247                $fresh_networks = $wpdb->get_results( sprintf( "SELECT $wpdb->site.* FROM $wpdb->site WHERE id IN (%s)", join( ",", array_map( 'intval', $non_cached_ids ) ) ) );
    12371248
    1238                 update_network_cache( $fresh_networks );
     1249                update_network_cache( $fresh_networks, $update_meta_cache );
    12391250        }
    12401251}
    12411252
  • src/wp-includes/option.php

     
    232232 *
    233233 * @since 3.0.0
    234234 *
    235  * @global wpdb $wpdb WordPress database abstraction object.
    236  *
    237235 * @param int $network_id Optional site ID for which to query the options. Defaults to the current site.
    238236 */
    239237function wp_load_core_site_options( $network_id = null ) {
    240         global $wpdb;
    241238
    242         if ( ! is_multisite() || wp_using_ext_object_cache() || wp_installing() )
     239        if ( ! is_multisite() || wp_using_ext_object_cache() || wp_installing() ) {
    243240                return;
     241        }
    244242
    245         if ( empty($network_id) )
     243        if ( empty( $network_id ) ) {
    246244                $network_id = get_current_network_id();
    247 
    248         $core_options = array('site_name', 'siteurl', 'active_sitewide_plugins', '_site_transient_timeout_theme_roots', '_site_transient_theme_roots', 'site_admins', 'can_compress_scripts', 'global_terms_enabled', 'ms_files_rewriting' );
    249 
    250         $core_options_in = "'" . implode("', '", $core_options) . "'";
    251         $options = $wpdb->get_results( $wpdb->prepare( "SELECT meta_key, meta_value FROM $wpdb->sitemeta WHERE meta_key IN ($core_options_in) AND site_id = %d", $network_id ) );
    252 
    253         foreach ( $options as $option ) {
    254                 $key = $option->meta_key;
    255                 $cache_key = "{$network_id}:$key";
    256                 $option->meta_value = maybe_unserialize( $option->meta_value );
    257 
    258                 wp_cache_set( $cache_key, $option->meta_value, 'site-options' );
    259245        }
     246
     247        update_meta_cache( 'site', $network_id );
    260248}
    261249
    262250/**
     
    12151203                return $pre;
    12161204        }
    12171205
    1218         // prevent non-existent options from triggering multiple queries
    1219         $notoptions_key = "$network_id:notoptions";
    1220         $notoptions = wp_cache_get( $notoptions_key, 'site-options' );
    1221 
    1222         if ( isset( $notoptions[ $option ] ) ) {
    1223 
    1224                 /**
    1225                  * Filters a specific default network option.
    1226                  *
    1227                  * The dynamic portion of the hook name, `$option`, refers to the option name.
    1228                  *
    1229                  * @since 3.4.0
    1230                  * @since 4.4.0 The `$option` parameter was added.
    1231                  * @since 4.7.0 The `$network_id` parameter was added.
    1232                  *
    1233                  * @param mixed  $default    The value to return if the site option does not exist
    1234                  *                           in the database.
    1235                  * @param string $option     Option name.
    1236                  * @param int    $network_id ID of the network.
    1237                  */
    1238                 return apply_filters( "default_site_option_{$option}", $default, $option, $network_id );
    1239         }
    12401206
    12411207        if ( ! is_multisite() ) {
    12421208                /** This filter is documented in wp-includes/option.php */
    12431209                $default = apply_filters( 'default_site_option_' . $option, $default, $option, $network_id );
    1244                 $value = get_option( $option, $default );
     1210                $value   = get_option( $option, $default );
    12451211        } else {
    1246                 $cache_key = "$network_id:$option";
    1247                 $value = wp_cache_get( $cache_key, 'site-options' );
    1248 
    1249                 if ( ! isset( $value ) || false === $value ) {
    1250                         $row = $wpdb->get_row( $wpdb->prepare( "SELECT meta_value FROM $wpdb->sitemeta WHERE meta_key = %s AND site_id = %d", $option, $network_id ) );
    1251 
    1252                         // Has to be get_row instead of get_var because of funkiness with 0, false, null values
    1253                         if ( is_object( $row ) ) {
    1254                                 $value = $row->meta_value;
    1255                                 $value = maybe_unserialize( $value );
    1256                                 wp_cache_set( $cache_key, $value, 'site-options' );
    1257                         } else {
    1258                                 if ( ! is_array( $notoptions ) ) {
    1259                                         $notoptions = array();
    1260                                 }
    1261                                 $notoptions[ $option ] = true;
    1262                                 wp_cache_set( $notoptions_key, $notoptions, 'site-options' );
    1263 
    1264                                 /** This filter is documented in wp-includes/option.php */
    1265                                 $value = apply_filters( 'default_site_option_' . $option, $default, $option, $network_id );
    1266                         }
     1212                $meta = get_metadata( 'site', $network_id, $option );
     1213                if ( is_array( $meta ) && ! empty( $meta ) ) {
     1214                        $value = array_shift( $meta );
     1215                        $value = maybe_unserialize( $value );
     1216                } else {
     1217                        $value = apply_filters( 'default_site_option_' . $option, $default, $option );
    12671218                }
    12681219        }
    12691220
     
    13321283         */
    13331284        $value = apply_filters( "pre_add_site_option_{$option}", $value, $option, $network_id );
    13341285
    1335         $notoptions_key = "$network_id:notoptions";
    1336 
    13371286        if ( ! is_multisite() ) {
    13381287                $result = add_option( $option, $value, '', 'no' );
    13391288        } else {
    1340                 $cache_key = "$network_id:$option";
    1341 
    1342                 // Make sure the option doesn't already exist. We can check the 'notoptions' cache before we ask for a db query
    1343                 $notoptions = wp_cache_get( $notoptions_key, 'site-options' );
    1344                 if ( ! is_array( $notoptions ) || ! isset( $notoptions[ $option ] ) ) {
    1345                         if ( false !== get_network_option( $network_id, $option, false ) ) {
    1346                                 return false;
    1347                         }
    1348                 }
    1349 
    1350                 $value = sanitize_option( $option, $value );
    1351 
    1352                 $serialized_value = maybe_serialize( $value );
    1353                 $result = $wpdb->insert( $wpdb->sitemeta, array( 'site_id'    => $network_id, 'meta_key'   => $option, 'meta_value' => $serialized_value ) );
    1354 
    1355                 if ( ! $result ) {
    1356                         return false;
    1357                 }
    1358 
    1359                 wp_cache_set( $cache_key, $value, 'site-options' );
    1360 
    1361                 // This option exists now
    1362                 $notoptions = wp_cache_get( $notoptions_key, 'site-options' ); // yes, again... we need it to be fresh
    1363                 if ( is_array( $notoptions ) && isset( $notoptions[ $option ] ) ) {
    1364                         unset( $notoptions[ $option ] );
    1365                         wp_cache_set( $notoptions_key, $notoptions, 'site-options' );
    1366                 }
     1289                $value  = sanitize_option( $option, $value );
     1290                $value  = maybe_serialize( $value );
     1291                $result = add_metadata( 'site', $network_id, $option, $value, true );
    13671292        }
    13681293
    13691294        if ( $result ) {
     
    14451370        if ( ! is_multisite() ) {
    14461371                $result = delete_option( $option );
    14471372        } else {
    1448                 $row = $wpdb->get_row( $wpdb->prepare( "SELECT meta_id FROM {$wpdb->sitemeta} WHERE meta_key = %s AND site_id = %d", $option, $network_id ) );
    1449                 if ( is_null( $row ) || ! $row->meta_id ) {
    1450                         return false;
    1451                 }
    1452                 $cache_key = "$network_id:$option";
    1453                 wp_cache_delete( $cache_key, 'site-options' );
    1454 
    1455                 $result = $wpdb->delete( $wpdb->sitemeta, array( 'meta_key' => $option, 'site_id' => $network_id ) );
     1373                $result = delete_metadata( 'site', $network_id, $option, '' );
    14561374        }
    14571375
    14581376        if ( $result ) {
     
    15451463                return add_network_option( $network_id, $option, $value );
    15461464        }
    15471465
    1548         $notoptions_key = "$network_id:notoptions";
    1549         $notoptions = wp_cache_get( $notoptions_key, 'site-options' );
    1550         if ( is_array( $notoptions ) && isset( $notoptions[ $option ] ) ) {
    1551                 unset( $notoptions[ $option ] );
    1552                 wp_cache_set( $notoptions_key, $notoptions, 'site-options' );
    1553         }
    1554 
    15551466        if ( ! is_multisite() ) {
    15561467                $result = update_option( $option, $value, 'no' );
    15571468        } else {
    1558                 $value = sanitize_option( $option, $value );
    1559 
    1560                 $serialized_value = maybe_serialize( $value );
    1561                 $result = $wpdb->update( $wpdb->sitemeta, array( 'meta_value' => $serialized_value ), array( 'site_id' => $network_id, 'meta_key' => $option ) );
    1562 
    1563                 if ( $result ) {
    1564                         $cache_key = "$network_id:$option";
    1565                         wp_cache_set( $cache_key, $value, 'site-options' );
    1566                 }
     1469                $value  = sanitize_option( $option, $value );
     1470                $value  = maybe_serialize( $value );
     1471                $result = update_metadata( 'site', $network_id, $option, $value );
    15671472        }
    15681473
    15691474        if ( $result ) {
  • src/wp-settings.php

     
    9595// Load early WordPress files.
    9696require( ABSPATH . WPINC . '/compat.php' );
    9797require( ABSPATH . WPINC . '/class-wp-list-util.php' );
     98require( ABSPATH . WPINC . '/formatting.php' );
     99require( ABSPATH . WPINC . '/meta.php' );
    98100require( ABSPATH . WPINC . '/functions.php' );
    99101require( ABSPATH . WPINC . '/class-wp-matchesmapregex.php' );
    100102require( ABSPATH . WPINC . '/class-wp.php' );
     
    142144// Load most of WordPress.
    143145require( ABSPATH . WPINC . '/class-wp-walker.php' );
    144146require( ABSPATH . WPINC . '/class-wp-ajax-response.php' );
    145 require( ABSPATH . WPINC . '/formatting.php' );
     147
    146148require( ABSPATH . WPINC . '/capabilities.php' );
    147149require( ABSPATH . WPINC . '/class-wp-roles.php' );
    148150require( ABSPATH . WPINC . '/class-wp-role.php' );
     
    157159require( ABSPATH . WPINC . '/class-wp-user-query.php' );
    158160require( ABSPATH . WPINC . '/class-wp-session-tokens.php' );
    159161require( ABSPATH . WPINC . '/class-wp-user-meta-session-tokens.php' );
    160 require( ABSPATH . WPINC . '/meta.php' );
    161162require( ABSPATH . WPINC . '/class-wp-meta-query.php' );
    162163require( ABSPATH . WPINC . '/class-wp-metadata-lazyloader.php' );
    163164require( ABSPATH . WPINC . '/general-template.php' );
  • tests/phpunit/includes/testcase.php

     
    328328                        $wp_object_cache->__remoteset();
    329329                }
    330330                wp_cache_flush();
    331                 wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details' ) );
     331                wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details', 'site_meta' ) );
    332332                wp_cache_add_non_persistent_groups( array( 'comment', 'counts', 'plugins' ) );
    333333        }
    334334
  • tests/phpunit/tests/cache.php

     
    2222                global $wp_object_cache;
    2323                $cache_class = get_class( $wp_object_cache );
    2424                $cache = new $cache_class();
    25                 $cache->add_global_groups( array( 'global-cache-test', 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details' ) );
     25                $cache->add_global_groups( array( 'global-cache-test', 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details', 'site_meta' ) );
    2626                return $cache;
    2727        }
    2828
  • tests/phpunit/tests/option/multisite.php

     
    144144                //$this->assertFalse( get_option( $key2 ) ); // check get_option()
    145145        }
    146146
    147         /**
    148          * @group multisite
    149          */
    150         function test_site_notoptions() {
    151                 $network_id = get_current_network_id();
    152                 $notoptions_key = "{$network_id}:notoptions";
    153 
    154                 $_notoptions = wp_cache_get( 'notoptions', 'site-options' );
    155                 $this->assertEmpty( $_notoptions );
    156                 $_notoptions1 = wp_cache_get( $notoptions_key, 'site-options' );
    157                 $this->assertEmpty( $_notoptions1 );
    158 
    159                 get_site_option( 'burrito' );
    160 
    161                 $notoptions = wp_cache_get( 'notoptions', 'site-options' );
    162                 $this->assertEmpty( $notoptions );
    163                 $notoptions1 = wp_cache_get( $notoptions_key, 'site-options' );
    164                 $this->assertNotEmpty( $notoptions1 );
    165         }
    166 
    167147        function test_users_can_register_signup_filter() {
    168148
    169149                $registration = get_site_option('registration');
  • tests/phpunit/tests/option/networkOption.php

     
    7979        }
    8080
    8181        /**
     82         * @ticket 37181
     83         * @group ms-required
     84         */
     85        public function test_meta_api_use_in_network_option() {
     86                $network_id = self::factory()->network->create();
     87                $option     = 'test_option_name';
     88                add_metadata( 'site', $network_id, $option, 'monday', true );
     89                add_metadata( 'site', $network_id, $option, 'tuesday', true );
     90                add_metadata( 'site', $network_id, $option, 'wednesday', true );
     91                $this->assertEquals( 'monday', get_network_option( $network_id, $option, true ) );
     92        }
     93
     94        /**
    8295         * @dataProvider data_network_id_parameter
    8396         *
    8497         * @param $network_id