mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
This changeset replaces "behaviour" with "behavior" in various docblocks. Props kebbet, jrf. See #56811, #56792. git-svn-id: https://develop.svn.wordpress.org/trunk@54663 602fd350-edb4-49c9-b593-d223f7449a82
141 lines
3.8 KiB
PHP
141 lines
3.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Tests specific to the directory size caching.
|
|
*
|
|
* @group functions.php
|
|
*/
|
|
class Tests_Functions_CleanDirsizeCache extends WP_UnitTestCase {
|
|
|
|
/**
|
|
* Tests the handling of invalid data passed as the $path parameter.
|
|
*
|
|
* @ticket 52241
|
|
*
|
|
* @covers ::clean_dirsize_cache
|
|
*
|
|
* @dataProvider data_clean_dirsize_cache_with_invalid_inputs
|
|
*
|
|
* @param mixed $path Path input to use in the test.
|
|
* @param string $expected_message Expected notice message.
|
|
*/
|
|
public function test_clean_dirsize_cache_with_invalid_inputs( $path, $expected_message ) {
|
|
$this->expectNotice();
|
|
$this->expectNoticeMessage( $expected_message );
|
|
|
|
clean_dirsize_cache( $path );
|
|
}
|
|
|
|
/**
|
|
* Data provider.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function data_clean_dirsize_cache_with_invalid_inputs() {
|
|
return array(
|
|
'null' => array(
|
|
'path' => null,
|
|
'expected_message' => '<code>clean_dirsize_cache()</code> only accepts a non-empty path string, received <code>NULL</code>.',
|
|
),
|
|
'bool false' => array(
|
|
'path' => false,
|
|
'expected_message' => '<code>clean_dirsize_cache()</code> only accepts a non-empty path string, received <code>boolean</code>.',
|
|
),
|
|
'empty string' => array(
|
|
'path' => '',
|
|
'expected_message' => '<code>clean_dirsize_cache()</code> only accepts a non-empty path string, received <code>string</code>.',
|
|
),
|
|
'array' => array(
|
|
'path' => array( '.', './second/path/' ),
|
|
'expected_message' => '<code>clean_dirsize_cache()</code> only accepts a non-empty path string, received <code>array</code>.',
|
|
),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Tests the handling of a non-path text string passed as the $path parameter.
|
|
*
|
|
* @ticket 52241
|
|
*
|
|
* @covers ::clean_dirsize_cache
|
|
*
|
|
* @dataProvider data_clean_dirsize_cache_with_non_path_string
|
|
*
|
|
* @param string $path Path input to use in the test.
|
|
* @param int $expected_count Expected number of paths in the cache after cleaning.
|
|
*/
|
|
public function test_clean_dirsize_cache_with_non_path_string( $path, $expected_count ) {
|
|
// Set the dirsize cache to our mock.
|
|
set_transient( 'dirsize_cache', $this->mock_dirsize_cache_with_non_path_string() );
|
|
|
|
clean_dirsize_cache( $path );
|
|
|
|
$cache = get_transient( 'dirsize_cache' );
|
|
$this->assertIsArray( $cache );
|
|
$this->assertCount( $expected_count, $cache );
|
|
}
|
|
|
|
/**
|
|
* Data provider.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function data_clean_dirsize_cache_with_non_path_string() {
|
|
return array(
|
|
'single dot' => array(
|
|
'path' => '.',
|
|
'expected_count' => 1,
|
|
),
|
|
'non-path' => array(
|
|
'path' => 'string',
|
|
'expected_count' => 1,
|
|
),
|
|
'non-existant string, but non-path' => array(
|
|
'path' => 'doesnotexist',
|
|
'expected_count' => 2,
|
|
),
|
|
);
|
|
}
|
|
|
|
private function mock_dirsize_cache_with_non_path_string() {
|
|
return array(
|
|
'.' => array( 'size' => 50 ),
|
|
'string' => array( 'size' => 42 ),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Tests the behavior of the function when the transient doesn't exist.
|
|
*
|
|
* @ticket 52241
|
|
* @ticket 53635
|
|
*
|
|
* @covers ::recurse_dirsize
|
|
*/
|
|
public function test_recurse_dirsize_without_transient() {
|
|
delete_transient( 'dirsize_cache' );
|
|
|
|
$size = recurse_dirsize( DIR_TESTDATA . '/functions' );
|
|
|
|
$this->assertGreaterThan( 10, $size );
|
|
}
|
|
|
|
/**
|
|
* Tests the behavior of the function when the transient does exist, but is not an array.
|
|
*
|
|
* In particular, this tests that no PHP TypeErrors are being thrown.
|
|
*
|
|
* @ticket 52241
|
|
* @ticket 53635
|
|
*
|
|
* @covers ::recurse_dirsize
|
|
*/
|
|
public function test_recurse_dirsize_with_invalid_transient() {
|
|
set_transient( 'dirsize_cache', 'this is not a valid transient for dirsize cache' );
|
|
|
|
$size = recurse_dirsize( DIR_TESTDATA . '/functions' );
|
|
|
|
$this->assertGreaterThan( 10, $size );
|
|
}
|
|
}
|