This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/Finder/Iterator/RealIteratorTestCase.php

64 lines
1.7 KiB
PHP
Raw Normal View History

2010-04-21 08:31:18 +01:00
<?php
/*
2010-04-25 16:06:54 +01:00
* This file is part of the Symfony package.
2010-04-21 08:31:18 +01:00
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Tests\Component\Finder\Iterator;
2010-04-21 08:31:18 +01:00
require_once __DIR__.'/IteratorTestCase.php';
class RealIteratorTestCase extends IteratorTestCase
{
static protected $files;
2010-04-21 08:31:18 +01:00
static public function setUpBeforeClass()
2010-04-21 08:31:18 +01:00
{
$tmpDir = sys_get_temp_dir().'/symfony2_finder';
self::$files = array(
$tmpDir.'/.git/',
$tmpDir.'/test.py',
$tmpDir.'/foo/',
$tmpDir.'/foo/bar.tmp',
$tmpDir.'/test.php',
$tmpDir.'/toto/'
);
if (is_dir($tmpDir)) {
self::tearDownAfterClass();
rmdir($tmpDir);
}
mkdir($tmpDir);
foreach (self::$files as $file) {
if ('/' === $file[strlen($file) - 1]) {
mkdir($file);
} else {
touch($file);
}
}
file_put_contents($tmpDir.'/test.php', str_repeat(' ', 800));
file_put_contents($tmpDir.'/test.py', str_repeat(' ', 2000));
touch(sys_get_temp_dir().'/symfony2_finder/foo/bar.tmp', strtotime('2005-10-15'));
touch(sys_get_temp_dir().'/symfony2_finder/test.php', strtotime('2005-10-15'));
2010-04-21 08:31:18 +01:00
}
static public function tearDownAfterClass()
2010-04-21 08:31:18 +01:00
{
foreach (array_reverse(self::$files) as $file) {
if ('/' === $file[strlen($file) - 1]) {
@rmdir($file);
} else {
@unlink($file);
}
}
2010-04-21 08:31:18 +01:00
}
}