Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1237eea

Browse files
author
costdev
committedMar 20, 2023
Add tests for ::dirlist().
1 parent 01a903b commit 1237eea

File tree

1 file changed

+131
-0
lines changed
  • tests/phpunit/tests/filesystem/wpFilesystemDirect

1 file changed

+131
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
<?php
2+
/**
3+
* Tests for the WP_Filesystem_Direct::dirlist() method.
4+
*
5+
* @package WordPress
6+
*/
7+
8+
require_once __DIR__ . '/base.php';
9+
10+
/**
11+
* @group admin
12+
* @group filesystem
13+
* @group filesystem-direct
14+
*
15+
* @covers WP_Filesystem_Direct::dirlist
16+
*/
17+
class Tests_Filesystem_WpFilesystemDirect_Dirlist extends WP_Filesystem_Direct_UnitTestCase {
18+
19+
/**
20+
* Tests that `WP_Filesystem_Direct::dirlist()` returns
21+
* the expected result for a path.
22+
*
23+
* @ticket 57774
24+
*
25+
* @dataProvider data_should_get_dirlist
26+
*
27+
* @param string $path The path.
28+
* @param bool $include_hidden Whether to include hidden files.
29+
* @param bool $recursive Whether to recursive into subdirectories.
30+
* @param array|false $expected The expected result.
31+
*/
32+
public function test_should_get_dirlist( $path, $include_hidden, $recursive, $expected ) {
33+
$actual = self::$filesystem->dirlist( self::$file_structure['test_dir']['path'] . $path, $include_hidden, $recursive );
34+
35+
if ( is_array( $expected ) ) {
36+
$this->assertSameSets(
37+
$expected,
38+
array_keys( $actual ),
39+
'The array keys do not match.'
40+
);
41+
} else {
42+
$this->assertFalse(
43+
$actual,
44+
'`WP_Filesystem_Direct::dirlist()` did not return false.'
45+
);
46+
}
47+
}
48+
49+
/**
50+
* Data provider.
51+
*
52+
* @return array[]
53+
*/
54+
public function data_should_get_dirlist() {
55+
return array(
56+
'a directory that exists excluding hidden files' => array(
57+
'path' => '',
58+
'include_hidden' => false,
59+
'recursive' => false,
60+
'expected' => array(
61+
'a_file_that_exists.txt',
62+
'subdir',
63+
),
64+
),
65+
'a directory that exists including hidden files' => array(
66+
'path' => '',
67+
'include_hidden' => true,
68+
'recursive' => false,
69+
'expected' => array(
70+
'a_file_that_exists.txt',
71+
'.a_hidden_file',
72+
'subdir',
73+
),
74+
),
75+
'a directory that does not exist' => array(
76+
'path' => 'a_directory_that_does_not_exist/',
77+
'include_hidden' => true,
78+
'recursive' => false,
79+
'expected' => false,
80+
),
81+
'a file that exists' => array(
82+
'path' => 'a_file_that_exists.txt',
83+
'include_hidden' => true,
84+
'recursive' => false,
85+
'expected' => array(
86+
'a_file_that_exists.txt',
87+
),
88+
),
89+
'a file that does not exist' => array(
90+
'path' => 'a_file_that_does_not_exist.txt',
91+
'include_hidden' => true,
92+
'recursive' => false,
93+
'expected' => false,
94+
),
95+
);
96+
}
97+
98+
/**
99+
* Tests that `WP_Filesystem_Direct::dirlist()` recurses
100+
* into a subdirectory.
101+
*
102+
* @ticket 57774
103+
*/
104+
public function test_should_recurse_into_subdirectory() {
105+
$actual = self::$filesystem->dirlist( self::$file_structure['test_dir']['path'], true, true );
106+
107+
$this->assertIsArray( $actual, 'Did not return an array.' );
108+
$this->assertArrayHasKey( 'subdir', $actual, 'The subdirectory was not detected.' );
109+
$this->assertArrayHasKey( 'files', $actual['subdir'], 'The subdirectory does not have a "files" key.' );
110+
$this->assertNotEmpty( $actual['subdir']['files'], "The subdirectory's contents were not retrieved." );
111+
$this->assertArrayHasKey( 'subfile.txt', $actual['subdir']['files'], 'The subfile was not detected.' );
112+
}
113+
114+
/**
115+
* Tests that `WP_Filesystem_Direct::dirlist()` should not recurse
116+
* into a subdirectory.
117+
*
118+
* @ticket 57774
119+
*/
120+
public function test_should_not_recurse_into_subdirectory() {
121+
122+
$actual = self::$filesystem->dirlist( self::$file_structure['test_dir']['path'], true, false );
123+
124+
$this->assertIsArray( $actual, 'Did not return an array.' );
125+
$this->assertArrayHasKey( 'subdir', $actual, 'The subdirectory was not detected.' );
126+
$this->assertArrayHasKey( 'files', $actual['subdir'], 'The "files" key was not set.' );
127+
$this->assertIsArray( $actual['subdir']['files'], 'The "files" key was not set to an array.' );
128+
$this->assertEmpty( $actual['subdir']['files'], 'The "files" array was not empty.' );
129+
}
130+
131+
}

0 commit comments

Comments
 (0)
Please sign in to comment.