1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<?php
class Directory_helper_test extends CI_TestCase {
public function set_up()
{
$this->helper('directory');
vfsStreamWrapper::register();
vfsStreamWrapper::setRoot(new vfsStreamDirectory('testDir'));
$this->_test_dir = vfsStreamWrapper::getRoot();
}
public function test_directory_map()
{
$ds = DIRECTORY_SEPARATOR;
$structure = array(
'libraries' => array(
'benchmark.html' => '',
'database' => array('active_record.html' => '', 'binds.html' => ''),
'email.html' => '',
'0' => '',
'.hiddenfile.txt' => ''
)
);
vfsStream::create($structure, $this->_test_dir);
// is_dir(), opendir(), etc. seem to fail on Windows + vfsStream when there are trailing backslashes in directory names
if ( ! is_dir(vfsStream::url('testDir').DIRECTORY_SEPARATOR))
{
$this->markTestSkipped("Can't test this under Windows");
return;
}
// test default recursive behavior
$expected = array(
'libraries'.$ds => array(
'benchmark.html',
'database'.$ds => array('active_record.html', 'binds.html'),
'email.html',
'0'
)
);
$this->assertEquals($expected, directory_map(vfsStream::url('testDir')));
// test detection of hidden files
$expected['libraries'.$ds][] = '.hiddenfile.txt';
$this->assertEquals($expected, directory_map(vfsStream::url('testDir'), 0, TRUE));
// test recursion depth behavior
$this->assertEquals(array('libraries'.$ds), directory_map(vfsStream::url('testDir'), 1));
}
}
|