mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Options, Meta APIs: Add test coverage for update_network_option() comparison of new and existing value.
Having those tests in `trunk` already will help ensure potential future fixes to this logic maintain backward compatibility. Props mukesh27, spacedmonkey. See #59360. git-svn-id: https://develop.svn.wordpress.org/trunk@56797 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
cc64ed22bd
commit
36d4e7ebcc
@ -228,4 +228,475 @@ class Tests_Option_NetworkOption extends WP_UnitTestCase {
|
||||
// Check that no new database queries were performed.
|
||||
$this->assertSame( $num_queries_pre_update, get_num_queries() );
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that update_network_option() triggers one additional query and returns true
|
||||
* for some loosely equal old and new values when the old value is retrieved from the cache.
|
||||
*
|
||||
* The additional query is triggered to update the value in the database.
|
||||
*
|
||||
* If the old value is false, the additional queries are triggered to:
|
||||
* 1. get the old value from the database via get_network_option() -> get_option().
|
||||
* 2. (Single Site only) get the old value from the database via update_network_option() -> update_option() -> get_option().
|
||||
* 3. update the value in the database via update_network_options() -> update_option().
|
||||
*
|
||||
* @ticket 59360
|
||||
*
|
||||
* @covers ::update_network_option
|
||||
*
|
||||
* @dataProvider data_loosely_equal_values_that_should_update
|
||||
*
|
||||
* @param mixed $old_value The old value.
|
||||
* @param mixed $new_value The new value to try to set.
|
||||
*/
|
||||
public function test_update_network_option_should_update_some_loosely_equal_values_from_cache( $old_value, $new_value ) {
|
||||
add_network_option( null, 'foo', $old_value );
|
||||
|
||||
$num_queries = get_num_queries();
|
||||
|
||||
// Comparison will happen against value cached during add_network_option() above.
|
||||
$updated = update_network_option( null, 'foo', $new_value );
|
||||
|
||||
$expected_queries = 1;
|
||||
|
||||
if ( false === $old_value ) {
|
||||
$expected_queries = is_multisite() ? 2 : 3;
|
||||
}
|
||||
|
||||
$this->assertSame( $expected_queries, get_num_queries() - $num_queries, "The number of queries should have increased by $expected_queries." );
|
||||
$this->assertTrue( $updated, 'update_network_option() should have returned true.' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that update_network_option() triggers two additional queries and returns true
|
||||
* for some loosely equal old and new values when the old value is retrieved from the database.
|
||||
*
|
||||
* The two additional queries are triggered to:
|
||||
* 1. retrieve the old value from the database, as the option does not exist in the cache.
|
||||
* 2. update the value in the database.
|
||||
*
|
||||
* On Single Site, if the old value is false, the four additional queries are triggered to:
|
||||
* 1. get the old value from the database via get_network_option() -> get_option().
|
||||
* 2. get the alloptions cache via get_network_option() -> get_option().
|
||||
* 3. get the old value from the database via update_network_option() -> update_option() -> get_option().
|
||||
* 4. update the value in the database via update_network_options() -> update_option().
|
||||
*
|
||||
* @ticket 59360
|
||||
*
|
||||
* @covers ::update_network_option
|
||||
*
|
||||
* @dataProvider data_loosely_equal_values_that_should_update
|
||||
*
|
||||
* @param mixed $old_value The old value.
|
||||
* @param mixed $new_value The new value to try to set.
|
||||
*/
|
||||
public function test_update_network_option_should_update_some_loosely_equal_values_from_db( $old_value, $new_value ) {
|
||||
add_network_option( null, 'foo', $old_value );
|
||||
|
||||
$num_queries = get_num_queries();
|
||||
|
||||
// Delete cache.
|
||||
$network_cache_key = get_current_network_id() . ':foo';
|
||||
wp_cache_delete( $network_cache_key, 'site-options' );
|
||||
wp_cache_delete( 'alloptions', 'options' );
|
||||
|
||||
$updated = update_network_option( null, 'foo', $new_value );
|
||||
|
||||
$expected_queries = false === $old_value && ! is_multisite() ? 4 : 2;
|
||||
|
||||
$this->assertSame( $expected_queries, get_num_queries() - $num_queries, "The number of queries should have increased by $expected_queries." );
|
||||
$this->assertTrue( $updated, 'update_network_option() should have returned true.' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that update_network_option() triggers one additional query and returns true
|
||||
* for some loosely equal old and new values when the old value is retrieved from a refreshed cache.
|
||||
*
|
||||
* The additional query is triggered to update the value in the database.
|
||||
*
|
||||
* If the old value is false, the additional queries are triggered to:
|
||||
* 1. get the old value from the database via get_network_option() -> get_option().
|
||||
* 2. get the old value from the database via update_network_option() -> update_option() -> get_option().
|
||||
* 3. update the value in the database via update_network_options() -> update_option().
|
||||
*
|
||||
* @ticket 59360
|
||||
*
|
||||
* @covers ::update_network_option
|
||||
*
|
||||
* @dataProvider data_loosely_equal_values_that_should_update
|
||||
*
|
||||
* @param mixed $old_value The old value.
|
||||
* @param mixed $new_value The new value to try to set.
|
||||
*/
|
||||
public function test_update_network_option_should_update_some_loosely_equal_values_from_refreshed_cache( $old_value, $new_value ) {
|
||||
add_network_option( null, 'foo', $old_value );
|
||||
|
||||
// Delete and refresh cache from DB.
|
||||
wp_cache_delete( 'alloptions', 'options' );
|
||||
wp_load_alloptions();
|
||||
|
||||
$num_queries = get_num_queries();
|
||||
$updated = update_network_option( null, 'foo', $new_value );
|
||||
|
||||
$expected_queries = 1;
|
||||
|
||||
if ( false === $old_value ) {
|
||||
$expected_queries = is_multisite() ? 2 : 3;
|
||||
}
|
||||
|
||||
$this->assertSame( $expected_queries, get_num_queries() - $num_queries, "The number of queries should have increased by $expected_queries." );
|
||||
$this->assertTrue( $updated, 'update_network_option() should have returned true.' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Data provider.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function data_loosely_equal_values_that_should_update() {
|
||||
return array(
|
||||
// Falsey values.
|
||||
'(string) "0" to false' => array( '0', false ),
|
||||
'empty string to (int) 0' => array( '', 0 ),
|
||||
'empty string to (float) 0.0' => array( '', 0.0 ),
|
||||
'(int) 0 to empty string' => array( 0, '' ),
|
||||
'(int) 0 to false' => array( 0, false ),
|
||||
'(float) 0.0 to empty string' => array( 0.0, '' ),
|
||||
'(float) 0.0 to false' => array( 0.0, false ),
|
||||
'false to (string) "0"' => array( false, '0' ),
|
||||
'false to (int) 0' => array( false, 0 ),
|
||||
'false to (float) 0.0' => array( false, 0.0 ),
|
||||
|
||||
// Non-scalar values.
|
||||
'false to array()' => array( false, array() ),
|
||||
'(string) "false" to array()' => array( 'false', array() ),
|
||||
'empty string to array()' => array( '', array() ),
|
||||
'(int 0) to array()' => array( 0, array() ),
|
||||
'(string) "0" to array()' => array( '0', array() ),
|
||||
'(string) "false" to null' => array( 'false', null ),
|
||||
'(int) 0 to null' => array( 0, null ),
|
||||
'(string) "0" to null' => array( '0', null ),
|
||||
'array() to false' => array( array(), false ),
|
||||
'array() to (string) "false"' => array( array(), 'false' ),
|
||||
'array() to empty string' => array( array(), '' ),
|
||||
'array() to (int) 0' => array( array(), 0 ),
|
||||
'array() to (string) "0"' => array( array(), '0' ),
|
||||
'array() to null' => array( array(), null ),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that update_network_option() triggers no additional queries and returns false
|
||||
* for some values when the old value is retrieved from the cache.
|
||||
*
|
||||
* @ticket 59360
|
||||
*
|
||||
* @covers ::update_network_option
|
||||
*
|
||||
* @dataProvider data_loosely_equal_values_that_should_not_update
|
||||
* @dataProvider data_strictly_equal_values
|
||||
*
|
||||
* @param mixed $old_value The old value.
|
||||
* @param mixed $new_value The new value to try to set.
|
||||
*/
|
||||
public function test_update_option_should_not_update_some_values_from_cache( $old_value, $new_value ) {
|
||||
add_network_option( null, 'foo', $old_value );
|
||||
|
||||
$num_queries = get_num_queries();
|
||||
|
||||
// Comparison will happen against value cached during add_option() above.
|
||||
$updated = update_network_option( null, 'foo', $new_value );
|
||||
|
||||
$expected_queries = $old_value === $new_value || ! is_multisite() ? 0 : 1;
|
||||
$this->assertSame( $expected_queries, get_num_queries() - $num_queries, "The number of queries should have increased by $expected_queries." );
|
||||
|
||||
$this->assertFalse( $updated, 'update_network_option() should have returned false.' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that update_network_option() triggers one additional query and returns false
|
||||
* for some values when the old value is retrieved from the database.
|
||||
*
|
||||
* The additional query is triggered to retrieve the old value from the database.
|
||||
*
|
||||
* @ticket 59360
|
||||
*
|
||||
* @covers ::update_network_option
|
||||
*
|
||||
* @dataProvider data_loosely_equal_values_that_should_not_update
|
||||
* @dataProvider data_strictly_equal_values
|
||||
*
|
||||
* @param mixed $old_value The old value.
|
||||
* @param mixed $new_value The new value to try to set.
|
||||
*/
|
||||
public function test_update_network_option_should_not_update_some_values_from_db( $old_value, $new_value ) {
|
||||
add_network_option( null, 'foo', $old_value );
|
||||
|
||||
$num_queries = get_num_queries();
|
||||
|
||||
// Delete cache.
|
||||
$network_cache_key = get_current_network_id() . ':foo';
|
||||
wp_cache_delete( $network_cache_key, 'site-options' );
|
||||
wp_cache_delete( 'alloptions', 'options' );
|
||||
|
||||
$updated = update_network_option( null, 'foo', $new_value );
|
||||
|
||||
// Mimic the behavior of the database by casting the old value to string.
|
||||
if ( is_scalar( $old_value ) ) {
|
||||
$old_value = (string) $old_value;
|
||||
}
|
||||
|
||||
$expected_queries = $old_value === $new_value || ! is_multisite() ? 1 : 2;
|
||||
$this->assertSame( $expected_queries, get_num_queries() - $num_queries, "The number of queries should have increased by $expected_queries." );
|
||||
|
||||
$this->assertFalse( $updated, 'update_network_option() should have returned false.' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that update_network_option() triggers no additional queries and returns false
|
||||
* for some values when the old value is retrieved from a refreshed cache.
|
||||
*
|
||||
* @ticket 59360
|
||||
*
|
||||
* @covers ::update_network_option
|
||||
*
|
||||
* @dataProvider data_loosely_equal_values_that_should_not_update
|
||||
* @dataProvider data_strictly_equal_values
|
||||
*
|
||||
* @param mixed $old_value The old value.
|
||||
* @param mixed $new_value The new value to try to set.
|
||||
*/
|
||||
public function test_update_network_option_should_not_update_some_values_from_refreshed_cache( $old_value, $new_value ) {
|
||||
add_network_option( null, 'foo', $old_value );
|
||||
|
||||
// Delete and refresh cache from DB.
|
||||
wp_cache_delete( 'alloptions', 'options' );
|
||||
wp_load_alloptions();
|
||||
|
||||
$num_queries = get_num_queries();
|
||||
$updated = update_network_option( null, 'foo', $new_value );
|
||||
|
||||
/*
|
||||
* Strictly equal old and new values will cause an early return
|
||||
* with no additional queries.
|
||||
*/
|
||||
$expected_queries = $old_value === $new_value || ! is_multisite() ? 0 : 1;
|
||||
$this->assertSame( $expected_queries, get_num_queries() - $num_queries, "The number of queries should have increased by $expected_queries." );
|
||||
|
||||
$this->assertFalse( $updated, 'update_network_option() should have returned false.' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Data provider.
|
||||
*
|
||||
* @return array[]
|
||||
*/
|
||||
public function data_loosely_equal_values_that_should_not_update() {
|
||||
return array(
|
||||
// Truthy values.
|
||||
'(string) "1" to (int) 1' => array( '1', 1 ),
|
||||
'(string) "1" to (float) 1.0' => array( '1', 1.0 ),
|
||||
'(string) "1" to true' => array( '1', true ),
|
||||
'(int) 1 to (string) "1"' => array( 1, '1' ),
|
||||
'1 to (float) 1.0' => array( 1, 1.0 ),
|
||||
'(int) 1 to true' => array( 1, true ),
|
||||
'(float) 1.0 to (string) "1"' => array( 1.0, '1' ),
|
||||
'(float) 1.0 to (int) 1' => array( 1.0, 1 ),
|
||||
'1.0 to true' => array( 1.0, true ),
|
||||
'true to (string) "1"' => array( true, '1' ),
|
||||
'true to 1' => array( true, 1 ),
|
||||
'true to (float) 1.0' => array( true, 1.0 ),
|
||||
|
||||
// Falsey values.
|
||||
'(string) "0" to (int) 0' => array( '0', 0 ),
|
||||
'(string) "0" to (float) 0.0' => array( '0', 0.0 ),
|
||||
'(int) 0 to (string) "0"' => array( 0, '0' ),
|
||||
'(int) 0 to (float) 0.0' => array( 0, 0.0 ),
|
||||
'(float) 0.0 to (string) "0"' => array( 0.0, '0' ),
|
||||
'(float) 0.0 to (int) 0' => array( 0.0, 0 ),
|
||||
'empty string to false' => array( '', false ),
|
||||
|
||||
/*
|
||||
* null as an initial value behaves differently by triggering
|
||||
* a query, so it is not included in these datasets.
|
||||
*
|
||||
* See data_stored_as_empty_string() and its related test.
|
||||
*/
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Data provider.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function data_strictly_equal_values() {
|
||||
$obj = new stdClass();
|
||||
|
||||
return array(
|
||||
// Truthy values.
|
||||
'(string) "1"' => array( '1', '1' ),
|
||||
'(int) 1' => array( 1, 1 ),
|
||||
'(float) 1.0' => array( 1.0, 1.0 ),
|
||||
'true' => array( true, true ),
|
||||
'string with spaces' => array( ' ', ' ' ),
|
||||
'non-empty array' => array( array( 'false' ), array( 'false' ) ),
|
||||
'object' => array( $obj, $obj ),
|
||||
|
||||
// Falsey values.
|
||||
'(string) "0"' => array( '0', '0' ),
|
||||
'empty string' => array( '', '' ),
|
||||
'(int) 0' => array( 0, 0 ),
|
||||
'(float) 0.0' => array( 0.0, 0.0 ),
|
||||
'empty array' => array( array(), array() ),
|
||||
|
||||
/*
|
||||
* false and null are not included in these datasets
|
||||
* because false is the default value, which triggers
|
||||
* a call to add_network_option().
|
||||
*
|
||||
* See data_stored_as_empty_string() and its related test.
|
||||
*/
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that update_network_option() handles a null new value when the new value
|
||||
* is retrieved from the cache.
|
||||
*
|
||||
* On Single Site, this will result in no additional queries as
|
||||
* the option_value database field is not nullable.
|
||||
*
|
||||
* On Multisite, this will result in one additional query as
|
||||
* the meta_value database field is nullable.
|
||||
*
|
||||
* @ticket 59360
|
||||
*
|
||||
* @covers ::update_network_option
|
||||
*/
|
||||
public function test_update_option_should_handle_a_null_new_value_from_cache() {
|
||||
add_network_option( null, 'foo', '' );
|
||||
|
||||
$num_queries = get_num_queries();
|
||||
|
||||
// Comparison will happen against value cached during add_option() above.
|
||||
$updated = update_network_option( null, 'foo', null );
|
||||
|
||||
$expected_queries = is_multisite() ? 1 : 0;
|
||||
$this->assertSame( $expected_queries, get_num_queries() - $num_queries, "The number of queries should have increased by $expected_queries." );
|
||||
|
||||
if ( is_multisite() ) {
|
||||
$this->assertTrue( $updated, 'update_network_option() should have returned true.' );
|
||||
} else {
|
||||
$this->assertFalse( $updated, 'update_network_option() should have returned false.' );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that update_network_option() handles a null new value when the new value
|
||||
* is retrieved from the database.
|
||||
*
|
||||
* On Single Site, this will result in only 1 additional query as
|
||||
* the option_value database field is not nullable.
|
||||
*
|
||||
* On Multisite, this will result in two additional queries as
|
||||
* the meta_value database field is nullable.
|
||||
*
|
||||
* @ticket 59360
|
||||
*
|
||||
* @covers ::update_network_option
|
||||
*/
|
||||
public function test_update_option_should_handle_a_null_new_value_from_db() {
|
||||
add_network_option( null, 'foo', '' );
|
||||
|
||||
$num_queries = get_num_queries();
|
||||
|
||||
// Delete cache.
|
||||
$network_cache_key = get_current_network_id() . ':foo';
|
||||
wp_cache_delete( $network_cache_key, 'site-options' );
|
||||
wp_cache_delete( 'alloptions', 'options' );
|
||||
|
||||
$updated = update_network_option( null, 'foo', null );
|
||||
|
||||
$expected_queries = is_multisite() ? 2 : 1;
|
||||
$this->assertSame( $expected_queries, get_num_queries() - $num_queries, "The number of queries should have increased by $expected_queries." );
|
||||
|
||||
if ( is_multisite() ) {
|
||||
$this->assertTrue( $updated, 'update_network_option() should have returned true.' );
|
||||
} else {
|
||||
$this->assertFalse( $updated, 'update_network_option() should have returned false.' );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that update_network_option() handles a null new value when the new value
|
||||
* is retrieved from a refreshed cache.
|
||||
*
|
||||
* On Single Site, this will result in no additional queries as
|
||||
* the option_value database field is not nullable.
|
||||
*
|
||||
* On Multisite, this will result in one additional query as
|
||||
* the meta_value database field is nullable.
|
||||
*
|
||||
* @ticket 59360
|
||||
*
|
||||
* @covers ::update_network_option
|
||||
*/
|
||||
public function test_update_option_should_handle_a_null_new_value_from_refreshed_cache() {
|
||||
add_network_option( null, 'foo', '' );
|
||||
|
||||
// Delete and refresh cache from DB.
|
||||
wp_cache_delete( 'alloptions', 'options' );
|
||||
wp_load_alloptions();
|
||||
|
||||
$num_queries = get_num_queries();
|
||||
$updated = update_network_option( null, 'foo', null );
|
||||
|
||||
$expected_queries = is_multisite() ? 1 : 0;
|
||||
$this->assertSame( $expected_queries, get_num_queries() - $num_queries, "The number of queries should have increased by $expected_queries." );
|
||||
|
||||
if ( is_multisite() ) {
|
||||
$this->assertTrue( $updated, 'update_network_option() should have returned true.' );
|
||||
} else {
|
||||
$this->assertFalse( $updated, 'update_network_option() should have returned false.' );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that update_network_option() adds a non-existent option when the new value
|
||||
* is stored as an empty string and false is the default value for the option.
|
||||
*
|
||||
* @ticket 59360
|
||||
*
|
||||
* @dataProvider data_stored_as_empty_string
|
||||
*
|
||||
* @param mixed $new_value A value that casts to an empty string.
|
||||
*/
|
||||
public function test_update_network_option_should_add_network_option_when_the_new_value_is_stored_as_an_empty_string_and_matches_default_value_false( $new_value ) {
|
||||
global $wpdb;
|
||||
|
||||
if ( is_multisite() ) {
|
||||
$this->markTestSkipped( 'This test should only run on Single Site.' );
|
||||
}
|
||||
|
||||
$this->assertTrue( update_network_option( null, 'foo', $new_value ), 'update_network_option() should have returned true.' );
|
||||
|
||||
$actual = $wpdb->get_row( "SELECT option_value FROM $wpdb->options WHERE option_name = 'foo' LIMIT 1" );
|
||||
|
||||
$this->assertIsObject( $actual, 'The option was not added to the database.' );
|
||||
$this->assertObjectHasProperty( 'option_value', $actual, 'The "option_value" property was not included.' );
|
||||
$this->assertSame( '', $actual->option_value, 'The value was not stored as an empty string.' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Data provider.
|
||||
*
|
||||
* @return array[]
|
||||
*/
|
||||
public function data_stored_as_empty_string() {
|
||||
return array(
|
||||
'empty string' => array( '' ),
|
||||
'null' => array( null ),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user