mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Props ocean90. See #31491. git-svn-id: https://develop.svn.wordpress.org/trunk@34766 602fd350-edb4-49c9-b593-d223f7449a82
153 lines
4.8 KiB
PHP
153 lines
4.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group option
|
|
*/
|
|
class Tests_Option_SiteOption extends WP_UnitTestCase {
|
|
function __return_foo() {
|
|
return 'foo';
|
|
}
|
|
|
|
function test_get_site_option_returns_false_if_option_does_not_exist() {
|
|
$this->assertFalse( get_site_option( 'doesnotexist' ) );
|
|
}
|
|
|
|
function test_get_site_option_returns_false_after_deletion() {
|
|
$key = rand_str();
|
|
$value = rand_str();
|
|
add_site_option( $key, $value );
|
|
delete_site_option( $key );
|
|
$this->assertFalse( get_site_option( $key ) );
|
|
}
|
|
|
|
function test_get_site_option_returns_value() {
|
|
$key = rand_str();
|
|
$value = rand_str();
|
|
add_site_option( $key, $value );
|
|
$this->assertEquals( $value, get_site_option( $key ) );
|
|
}
|
|
|
|
function test_get_site_option_returns_updated_value() {
|
|
$key = rand_str();
|
|
$value = rand_str();
|
|
$new_value = rand_str();
|
|
add_site_option( $key, $value );
|
|
update_site_option( $key, $new_value );
|
|
$this->assertEquals( $new_value, get_site_option( $key ) );
|
|
}
|
|
|
|
function test_get_site_option_does_not_exist_returns_filtered_default_with_no_default_provided() {
|
|
add_filter( 'default_site_option_doesnotexist', array( $this, '__return_foo' ) );
|
|
$site_option = get_site_option( 'doesnotexist' );
|
|
remove_filter( 'default_site_option_doesnotexist', array( $this, '__return_foo' ) );
|
|
$this->assertEquals( 'foo', $site_option );
|
|
}
|
|
|
|
function test_get_site_option_does_not_exist_returns_filtered_default_with_default_provided() {
|
|
add_filter( 'default_site_option_doesnotexist', array( $this, '__return_foo' ) );
|
|
$site_option = get_site_option( 'doesnotexist', 'bar' );
|
|
remove_filter( 'default_site_option_doesnotexist', array( $this, '__return_foo' ) );
|
|
$this->assertEquals( 'foo', $site_option );
|
|
}
|
|
|
|
function test_get_site_option_does_not_exist_returns_provided_default() {
|
|
$this->assertEquals( 'bar', get_site_option( 'doesnotexist', 'bar' ) );
|
|
}
|
|
|
|
function test_get_site_option_exists_does_not_return_provided_default() {
|
|
$key = rand_str();
|
|
$value = rand_str();
|
|
add_site_option( $key, $value );
|
|
$this->assertEquals( $value, get_site_option( $key, 'foo' ) );
|
|
}
|
|
|
|
function test_get_site_option_exists_does_not_return_filtered_default() {
|
|
$key = rand_str();
|
|
$value = rand_str();
|
|
add_site_option( $key, $value );
|
|
add_filter( 'default_site_option_' . $key , array( $this, '__return_foo' ) );
|
|
$site_option = get_site_option( $key );
|
|
remove_filter( 'default_site_option_' . $key, array( $this, '__return_foo' ) );
|
|
$this->assertEquals( $value, $site_option );
|
|
}
|
|
|
|
function test_add_site_option_returns_true_for_new_option() {
|
|
$key = rand_str();
|
|
$value = rand_str();
|
|
$this->assertTrue( add_site_option( $key, $value ) );
|
|
}
|
|
|
|
function test_add_site_option_returns_false_for_existing_option() {
|
|
$key = rand_str();
|
|
$value = rand_str();
|
|
add_site_option( $key, $value );
|
|
$this->assertFalse( add_site_option( $key, $value ) );
|
|
}
|
|
|
|
function test_update_site_option_returns_false_for_same_value() {
|
|
$key = rand_str();
|
|
$value = rand_str();
|
|
add_site_option( $key, $value );
|
|
$this->assertFalse( update_site_option( $key, $value ) );
|
|
}
|
|
|
|
function test_update_site_option_returns_true_for_new_value() {
|
|
$key = rand_str();
|
|
$value = rand_str();
|
|
$new_value = rand_str();
|
|
add_site_option( $key, $value );
|
|
$this->assertTrue( update_site_option( $key, $new_value ) );
|
|
}
|
|
|
|
function test_delete_site_option_returns_true_if_option_exists() {
|
|
$key = rand_str();
|
|
$value = rand_str();
|
|
add_site_option( $key, $value );
|
|
$this->assertTrue( delete_site_option( $key ) );
|
|
}
|
|
|
|
function test_delete_site_option_returns_false_if_option_does_not_exist() {
|
|
$key = rand_str();
|
|
$value = rand_str();
|
|
add_site_option( $key, $value );
|
|
delete_site_option( $key );
|
|
$this->assertFalse( delete_site_option( $key ) );
|
|
}
|
|
|
|
function test_site_option_add_and_get_serialized_array() {
|
|
$key = rand_str();
|
|
$value = array( 'foo' => true, 'bar' => true );
|
|
add_site_option( $key, $value );
|
|
$this->assertEquals( $value, get_site_option( $key ) );
|
|
}
|
|
|
|
function test_site_option_add_and_get_serialized_object() {
|
|
$key = rand_str();
|
|
$value = new stdClass();
|
|
$value->foo = true;
|
|
$value->bar = true;
|
|
add_site_option( $key, $value );
|
|
$this->assertEquals( $value, get_site_option( $key ) );
|
|
}
|
|
|
|
// #15497 - ensure update_site_option will add options with false-y values
|
|
function test_update_adds_falsey_value() {
|
|
$key = rand_str();
|
|
$value = 0;
|
|
|
|
delete_site_option( $key );
|
|
$this->assertTrue( update_site_option( $key, $value ) );
|
|
$this->flush_cache(); // ensure we're getting the value from the DB
|
|
$this->assertEquals( $value, get_site_option( $key ) );
|
|
}
|
|
|
|
// #18955 - ensure get_site_option doesn't cache the default value for non-existent options
|
|
function test_get_doesnt_cache_default_value() {
|
|
$option = rand_str();
|
|
$default = 'a default';
|
|
|
|
$this->assertEquals( get_site_option( $option, $default ), $default );
|
|
$this->assertFalse( get_site_option( $option ) );
|
|
}
|
|
}
|