blob: 3b84e901a15706f0ebd113b08f359e6245cadbc7 [file] [log] [blame]
<?php
/**
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @version //autogentag//
* @filesource
* @package File
* @subpackage Tests
*/
/**
* @package File
* @subpackage Tests
*/
class ezcFileFindRecursiveTest extends ezcTestCase
{
public function testRecursive1()
{
$expected = array (
0 => 'File/CREDITS',
1 => 'File/ChangeLog',
2 => 'File/DESCRIPTION',
3 => 'File/design/class_diagram.png',
4 => 'File/design/design.txt',
5 => 'File/design/file.xml',
6 => 'File/design/file_operations.png',
7 => 'File/design/md5.png',
8 => 'File/design/requirements.txt',
9 => 'File/src/file.php',
10 => 'File/src/file_autoload.php',
11 => 'File/tests/file_calculate_relative_path_test.php',
12 => 'File/tests/file_find_recursive_test.php',
13 => 'File/tests/file_remove_recursive_test.php',
14 => 'File/tests/suite.php',
);
self::assertEquals( $expected, ezcFile::findRecursive( "File", array(), array( '@/docs/@', '@svn@', '@\.swp$@' ) ) );
}
public function testRecursive2()
{
$expected = array (
0 => './File/CREDITS',
1 => './File/ChangeLog',
2 => './File/DESCRIPTION',
3 => './File/design/class_diagram.png',
4 => './File/design/design.txt',
5 => './File/design/file.xml',
6 => './File/design/file_operations.png',
7 => './File/design/md5.png',
8 => './File/design/requirements.txt',
9 => './File/src/file.php',
10 => './File/src/file_autoload.php',
11 => './File/tests/file_calculate_relative_path_test.php',
12 => './File/tests/file_find_recursive_test.php',
13 => './File/tests/file_remove_recursive_test.php',
14 => './File/tests/suite.php',
);
self::assertEquals( $expected, ezcFile::findRecursive( ".", array( '@^\./File/@' ), array( '@/docs/@', '@\.svn@', '@\.swp$@' ) ) );
}
public function testRecursive3()
{
$expected = array (
0 => 'File/design/class_diagram.png',
1 => 'File/design/file_operations.png',
2 => 'File/design/md5.png',
);
self::assertEquals( $expected, ezcFile::findRecursive( "File", array( '@\.png$@' ), array( '@\.svn@' ) ) );
}
public function testRecursive4()
{
$expected = array (
0 => 'File/design/class_diagram.png',
1 => 'File/design/design.txt',
2 => 'File/design/file.xml',
3 => 'File/design/file_operations.png',
4 => 'File/design/md5.png',
5 => 'File/design/requirements.txt',
);
self::assertEquals( $expected, ezcFile::findRecursive( "File", array( '@/design/@' ), array( '@\.svn@' ) ) );
}
public function testRecursive5()
{
$expected = array (
0 => 'File/design/design.txt',
1 => 'File/design/requirements.txt',
2 => 'File/src/file.php',
3 => 'File/src/file_autoload.php',
4 => 'File/tests/file_calculate_relative_path_test.php',
5 => 'File/tests/file_find_recursive_test.php',
6 => 'File/tests/file_remove_recursive_test.php',
7 => 'File/tests/suite.php',
);
self::assertEquals( $expected, ezcFile::findRecursive( "File", array( '@\.(php|txt)$@' ), array( '@/docs/@', '@\.svn@' ) ) );
}
public function testRecursive6()
{
$expected = array();
self::assertEquals( $expected, ezcFile::findRecursive( "File", array( '@xxx@' ) ) );
}
public function testNonExistingDirectory()
{
$expected = array();
try
{
ezcFile::findRecursive( "NotHere", array( '@xxx@' ) );
}
catch ( ezcBaseFileNotFoundException $e )
{
self::assertEquals( "The directory file 'NotHere' could not be found.", $e->getMessage() );
}
}
public static function suite()
{
return new PHPUnit_Framework_TestSuite( "ezcFileFindRecursiveTest" );
}
}
?>