mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
See #43207, #38176 git-svn-id: https://develop.svn.wordpress.org/trunk@42659 602fd350-edb4-49c9-b593-d223f7449a82
113 lines
2.8 KiB
PHP
113 lines
2.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group option
|
|
*/
|
|
class Tests_Option_Registration extends WP_UnitTestCase {
|
|
public function test_register() {
|
|
register_setting( 'test_group', 'test_option' );
|
|
|
|
$registered = get_registered_settings();
|
|
$this->assertArrayHasKey( 'test_option', $registered );
|
|
|
|
$args = $registered['test_option'];
|
|
$this->assertEquals( 'test_group', $args['group'] );
|
|
|
|
// Check defaults.
|
|
$this->assertEquals( 'string', $args['type'] );
|
|
$this->assertEquals( false, $args['show_in_rest'] );
|
|
$this->assertEquals( '', $args['description'] );
|
|
}
|
|
|
|
public function test_register_with_callback() {
|
|
register_setting( 'test_group', 'test_option', array( $this, 'filter_registered_setting' ) );
|
|
|
|
$filtered = apply_filters( 'sanitize_option_test_option', 'smart', 'test_option', 'smart' );
|
|
$this->assertEquals( 'S-M-R-T', $filtered );
|
|
}
|
|
|
|
public function test_register_with_array() {
|
|
register_setting(
|
|
'test_group', 'test_option', array(
|
|
'sanitize_callback' => array( $this, 'filter_registered_setting' ),
|
|
)
|
|
);
|
|
|
|
$filtered = apply_filters( 'sanitize_option_test_option', 'smart', 'test_option', 'smart' );
|
|
$this->assertEquals( 'S-M-R-T', $filtered );
|
|
}
|
|
|
|
public function filter_registered_setting() {
|
|
return 'S-M-R-T';
|
|
}
|
|
|
|
/**
|
|
* @ticket 38176
|
|
*/
|
|
public function test_register_with_default() {
|
|
register_setting(
|
|
'test_group', 'test_default', array(
|
|
'default' => 'Eat your greens',
|
|
)
|
|
);
|
|
|
|
$this->assertEquals( 'Eat your greens', get_option( 'test_default' ) );
|
|
}
|
|
|
|
/**
|
|
* @ticket 38176
|
|
*/
|
|
public function test_register_with_default_override() {
|
|
register_setting(
|
|
'test_group', 'test_default', array(
|
|
'default' => 'Eat your greens',
|
|
)
|
|
);
|
|
|
|
$this->assertEquals( 'Ice cream is better', get_option( 'test_default', 'Ice cream is better' ) );
|
|
}
|
|
|
|
/**
|
|
* @ticket 38930
|
|
*/
|
|
public function test_add_option_with_no_options_cache() {
|
|
register_setting(
|
|
'test_group', 'test_default', array(
|
|
'default' => 'My Default :)',
|
|
)
|
|
);
|
|
wp_cache_delete( 'notoptions', 'options' );
|
|
$this->assertTrue( add_option( 'test_default', 'hello' ) );
|
|
$this->assertEquals( 'hello', get_option( 'test_default' ) );
|
|
}
|
|
|
|
/**
|
|
* @expectedDeprecated register_setting
|
|
*/
|
|
public function test_register_deprecated_group_misc() {
|
|
register_setting( 'misc', 'test_option' );
|
|
}
|
|
|
|
/**
|
|
* @expectedDeprecated register_setting
|
|
*/
|
|
public function test_register_deprecated_group_privacy() {
|
|
register_setting( 'privacy', 'test_option' );
|
|
}
|
|
|
|
/**
|
|
* @ticket 43207
|
|
*/
|
|
public function test_unregister_setting_removes_default() {
|
|
register_setting(
|
|
'test_group', 'test_default', array(
|
|
'default' => 'Eat your greens',
|
|
)
|
|
);
|
|
|
|
unregister_setting( 'test_group', 'test_default' );
|
|
|
|
$this->assertFalse( has_filter( 'default_option_test_default', 'filter_default_option' ) );
|
|
}
|
|
}
|