wordpress-develop/tests/phpunit/tests/load/wpIsIniValueChangeable.php
Sergey Biryukov 2a6b527f73 Tests: Improve the @group annotation accuracy and consistency.
Includes removing `.php` from some older group names, because most of the groups are no longer named based on the file containing the function, and sometimes functions move around, making the file-based group name inaccurate.

Props afercia, aristath, poena, SergeyBiryukov.
See #59647.

git-svn-id: https://develop.svn.wordpress.org/trunk@56971 602fd350-edb4-49c9-b593-d223f7449a82
2023-10-19 13:51:04 +00:00

51 lines
1.4 KiB
PHP

<?php
/**
* Tests for wp_is_ini_value_changeable().
*
* @group load
*
* @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;
}
}