Вход Регистрация
Файл: symfony-2.7/src/Symfony/Component/Finder/Tests/Iterator/SortableIteratorTest.php
Строк: 78
<?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 SymfonyComponentFinderTestsIterator;

use 
SymfonyComponentFinderIteratorSortableIterator;

class 
SortableIteratorTest extends RealIteratorTestCase
{
    public function 
testConstructor()
    {
        try {
            new 
SortableIterator(new Iterator(array()), 'foobar');
            
$this->fail('__construct() throws an InvalidArgumentException exception if the mode is not valid');
        } catch (
Exception $e) {
            
$this->assertInstanceOf('InvalidArgumentException'$e'__construct() throws an InvalidArgumentException exception if the mode is not valid');
        }
    }

    
/**
     * @dataProvider getAcceptData
     */
    
public function testAccept($mode$expected)
    {
        if (!
is_callable($mode)) {
            switch (
$mode) {
                case 
SortableIterator::SORT_BY_ACCESSED_TIME :
                    
file_get_contents(self::toAbsolute('.git'));
                    
sleep(1);
                    
file_get_contents(self::toAbsolute('.bar'));
                    break;
                case 
SortableIterator::SORT_BY_CHANGED_TIME :
                    
file_put_contents(self::toAbsolute('test.php'), 'foo');
                    
sleep(1);
                    
file_put_contents(self::toAbsolute('test.py'), 'foo');
                    break;
                case 
SortableIterator::SORT_BY_MODIFIED_TIME :
                    
file_put_contents(self::toAbsolute('test.php'), 'foo');
                    
sleep(1);
                    
file_put_contents(self::toAbsolute('test.py'), 'foo');
                    break;
            }
        }

        
$inner = new Iterator(self::$files);

        
$iterator = new SortableIterator($inner$mode);

        if (
$mode === SortableIterator::SORT_BY_ACCESSED_TIME
            
|| $mode === SortableIterator::SORT_BY_CHANGED_TIME
            
|| $mode === SortableIterator::SORT_BY_MODIFIED_TIME) {
            
$this->assertOrderedIteratorForGroups($expected$iterator);
        } else {
            
$this->assertOrderedIterator($expected$iterator);
        }
    }

    public function 
getAcceptData()
    {
        
$sortByName = array(
            
'.bar',
            
'.foo',
            
'.foo/.bar',
            
'.foo/bar',
            
'.git',
            
'foo',
            
'foo bar',
            
'foo/bar.tmp',
            
'test.php',
            
'test.py',
            
'toto',
        );

        
$sortByType = array(
            
'.foo',
            
'.git',
            
'foo',
            
'toto',
            
'.bar',
            
'.foo/.bar',
            
'.foo/bar',
            
'foo bar',
            
'foo/bar.tmp',
            
'test.php',
            
'test.py',
        );

        
$customComparison = array(
            
'.bar',
            
'.foo',
            
'.foo/.bar',
            
'.foo/bar',
            
'.git',
            
'foo',
            
'foo bar',
            
'foo/bar.tmp',
            
'test.php',
            
'test.py',
            
'toto',
        );

        
$sortByAccessedTime = array(
            
// For these two files the access time was set to 2005-10-15
            
array('foo/bar.tmp''test.php'),
            
// These files were created more or less at the same time
            
array(
                
'.git',
                
'.foo',
                
'.foo/.bar',
                
'.foo/bar',
                
'test.py',
                
'foo',
                
'toto',
                
'foo bar',
            ),
            
// This file was accessed after sleeping for 1 sec
            
array('.bar'),
        );

        
$sortByChangedTime = array(
            array(
                
'.git',
                
'.foo',
                
'.foo/.bar',
                
'.foo/bar',
                
'.bar',
                
'foo',
                
'foo/bar.tmp',
                
'toto',
                
'foo bar',
            ),
            array(
'test.php'),
            array(
'test.py'),
        );

        
$sortByModifiedTime = array(
            array(
                
'.git',
                
'.foo',
                
'.foo/.bar',
                
'.foo/bar',
                
'.bar',
                
'foo',
                
'foo/bar.tmp',
                
'toto',
                
'foo bar',
            ),
            array(
'test.php'),
            array(
'test.py'),
        );

        return array(
            array(
SortableIterator::SORT_BY_NAME$this->toAbsolute($sortByName)),
            array(
SortableIterator::SORT_BY_TYPE$this->toAbsolute($sortByType)),
            array(
SortableIterator::SORT_BY_ACCESSED_TIME$this->toAbsolute($sortByAccessedTime)),
            array(
SortableIterator::SORT_BY_CHANGED_TIME$this->toAbsolute($sortByChangedTime)),
            array(
SortableIterator::SORT_BY_MODIFIED_TIME$this->toAbsolute($sortByModifiedTime)),
            array(function (
SplFileInfo $aSplFileInfo $b) { return strcmp($a->getRealpath(), $b->getRealpath()); }, $this->toAbsolute($customComparison)),
        );
    }
}
Онлайн: 1
Реклама