PATH:
opt
/
alt
/
php55
/
usr
/
share
/
pear
/
test
/
Finder
/
Symfony
/
Component
/
Finder
/
Tests
/
Iterator
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Finder\Tests\Iterator; use Symfony\Component\Finder\Iterator\DateRangeFilterIterator; use Symfony\Component\Finder\Comparator\DateComparator; class DateRangeFilterIteratorTest extends RealIteratorTestCase { /** * @dataProvider getAcceptData */ public function testAccept($size, $expected) { $inner = new Iterator(self::$files); $iterator = new DateRangeFilterIterator($inner, $size); $this->assertIterator($expected, $iterator); } public function getAcceptData() { $since20YearsAgo = array( '.git', 'test.py', 'foo', 'foo/bar.tmp', 'test.php', 'toto', '.bar', '.foo', '.foo/.bar', 'foo bar', '.foo/bar', ); $since2MonthsAgo = array( '.git', 'test.py', 'foo', 'toto', '.bar', '.foo', '.foo/.bar', 'foo bar', '.foo/bar', ); $untilLastMonth = array( '.git', 'foo', 'foo/bar.tmp', 'test.php', 'toto', '.foo', ); return array( array(array(new DateComparator('since 20 years ago')), $this->toAbsolute($since20YearsAgo)), array(array(new DateComparator('since 2 months ago')), $this->toAbsolute($since2MonthsAgo)), array(array(new DateComparator('until last month')), $this->toAbsolute($untilLastMonth)), ); } }
[-] FilecontentFilterIteratorTest.php
[edit]
[-] MultiplePcreFilterIteratorTest.php
[edit]
[-] MockSplFileInfo.php
[edit]
[-] PathFilterIteratorTest.php
[edit]
[-] FilePathsIteratorTest.php
[edit]
[-] DepthRangeFilterIteratorTest.php
[edit]
[-] RealIteratorTestCase.php
[edit]
[-] SizeRangeFilterIteratorTest.php
[edit]
[-] Iterator.php
[edit]
[-] RecursiveDirectoryIteratorTest.php
[edit]
[-] FileTypeFilterIteratorTest.php
[edit]
[-] ExcludeDirectoryFilterIteratorTest.php
[edit]
[-] CustomFilterIteratorTest.php
[edit]
[-] IteratorTestCase.php
[edit]
[-] FilterIteratorTest.php
[edit]
[-] MockFileListIterator.php
[edit]
[-] FilenameFilterIteratorTest.php
[edit]
[+]
..
[-] DateRangeFilterIteratorTest.php
[edit]
[-] SortableIteratorTest.php
[edit]