123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /*
- * This file is part of the Symfony package.
- * (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\Components\DependencyInjection;
- use Symfony\Components\DependencyInjection\FileResource;
- class FileResourceTest extends \PHPUnit_Framework_TestCase
- {
- protected $resource;
- protected $file;
- public function setUp()
- {
- $this->file = sys_get_temp_dir().'/tmp.xml';
- touch($this->file);
- $this->resource = new FileResource($this->file);
- }
- public function tearDown()
- {
- unlink($this->file);
- }
- public function testGetResource()
- {
- $this->assertEquals($this->file, $this->resource->getResource(), '->getResource() returns the path to the resource');
- }
- public function testIsUptodate()
- {
- $this->assertTrue($this->resource->isUptodate(time() + 10), '->isUptodate() returns true if the resource has not changed');
- $this->assertFalse($this->resource->isUptodate(time() - 86400), '->isUptodate() returns false if the resource has been updated');
- $resource = new FileResource('/____foo/foobar'.rand(1, 999999));
- $this->assertFalse($resource->isUptodate(time()), '->isUptodate() returns false if the resource does not exist');
- }
- }
|