wordpress-develop/tests/phpunit/tests/load/wpIsIniValueChangeable.php
Andrew Ozz fdcb89a307 Build/Test Tools: Update @covers tags for the load tests.
Props pbearne, jrf, hellofromTonya, patopaiar, ironprogrammer, antonvlasenko, SergeyBiryukov, costdev.
See #39265.

git-svn-id: https://develop.svn.wordpress.org/trunk@53867 602fd350-edb4-49c9-b593-d223f7449a82
2022-08-08 23:42:16 +00:00

51 lines
1.4 KiB
PHP

<?php
/**
* Tests for wp_is_ini_value_changeable().
*
* @group load.php
*
* @covers ::wp_is_ini_value_changeable
*/
class Tests_Load_wpIsIniValueChangeable extends WP_UnitTestCase {
/**
* Tests the determining of the changeability of a PHP ini value.
*
* @ticket 32075
*
* @dataProvider data_wp_is_ini_value_changeable
*
* @param string $setting The setting passed to wp_is_ini_value_changeable().
* @param bool $expected The expected output of wp_convert_hr_to_bytes().
*/
public function test_wp_is_ini_value_changeable( $setting, $expected ) {
$this->assertSame( $expected, wp_is_ini_value_changeable( $setting ) );
}
/**
* Data provider for test_wp_is_ini_value_changeable().
*
* @return array {
* @type array {
* @type string $setting The setting passed to wp_is_ini_value_changeable().
* @type bool $expected The expected output of wp_convert_hr_to_bytes().
* }
* }
*/
public function data_wp_is_ini_value_changeable() {
$array = array(
array( 'memory_limit', true ), // PHP_INI_ALL.
array( 'log_errors', true ), // PHP_INI_ALL.
array( 'upload_max_filesize', false ), // PHP_INI_PERDIR.
array( 'upload_tmp_dir', false ), // PHP_INI_SYSTEM.
);
if ( PHP_VERSION_ID > 70000 && extension_loaded( 'Tidy' ) ) {
$array[] = array( 'tidy.clean_output', true ); // PHP_INI_USER.
}
return $array;
}
}