mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-29 05:28:44 +02:00
Package operations: 2 installs, 23 updates, 0 removals - Updating psr/log (1.1.0 => 1.1.2) - Updating symfony/debug (v3.4.30 => v3.4.35) - Updating symfony/console (v3.4.30 => v3.4.35) - Updating symfony/dotenv (v3.4.30 => v3.4.35) - Updating symfony/routing (v3.4.30 => v3.4.35) - Updating symfony/finder (v3.4.30 => v3.4.35) - Updating symfony/filesystem (v3.4.30 => v3.4.35) - Installing symfony/polyfill-util (v1.12.0) - Installing symfony/polyfill-php56 (v1.12.0) - Updating symfony/http-foundation (v3.4.30 => v3.4.35) - Updating symfony/event-dispatcher (v3.4.30 => v3.4.35) - Updating symfony/http-kernel (v3.4.30 => v3.4.35) - Updating symfony/config (v3.4.30 => v3.4.35) - Updating symfony/dependency-injection (v3.4.30 => v3.4.35) - Updating symfony/class-loader (v3.4.30 => v3.4.35) - Updating symfony/cache (v3.4.30 => v3.4.35) - Updating symfony/framework-bundle (v3.4.30 => v3.4.35) - Updating twig/twig (v1.42.2 => v1.42.4) - Updating symfony/twig-bridge (v3.4.30 => v3.4.35) - Updating symfony/twig-bundle (v3.4.30 => v3.4.35) - Updating symfony/yaml (v3.4.30 => v3.4.35) - Updating symfony/stopwatch (v3.4.30 => v3.4.35) - Updating symfony/var-dumper (v3.4.30 => v3.4.35) - Updating symfony/web-profiler-bundle (v3.4.30 => v3.4.35) - Updating symfony/css-selector (v3.4.30 => v3.4.35)
95 lines
3.2 KiB
PHP
95 lines
3.2 KiB
PHP
<?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\Routing\Tests\Loader;
|
|
|
|
use Symfony\Component\Config\FileLocator;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
use Symfony\Component\Routing\Loader\AnnotationFileLoader;
|
|
|
|
class AnnotationFileLoaderTest extends AbstractAnnotationLoaderTest
|
|
{
|
|
protected $loader;
|
|
protected $reader;
|
|
|
|
protected function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->reader = $this->getReader();
|
|
$this->loader = new AnnotationFileLoader(new FileLocator(), $this->getClassLoader($this->reader));
|
|
}
|
|
|
|
public function testLoad()
|
|
{
|
|
$this->reader->expects($this->once())->method('getClassAnnotation');
|
|
|
|
$this->loader->load(__DIR__.'/../Fixtures/AnnotatedClasses/FooClass.php');
|
|
}
|
|
|
|
public function testLoadTraitWithClassConstant()
|
|
{
|
|
$this->reader->expects($this->never())->method('getClassAnnotation');
|
|
|
|
$this->loader->load(__DIR__.'/../Fixtures/AnnotatedClasses/FooTrait.php');
|
|
}
|
|
|
|
public function testLoadFileWithoutStartTag()
|
|
{
|
|
$this->expectException('InvalidArgumentException');
|
|
$this->expectExceptionMessage('Did you forgot to add the "<?php" start tag at the beginning of the file?');
|
|
$this->loader->load(__DIR__.'/../Fixtures/OtherAnnotatedClasses/NoStartTagClass.php');
|
|
}
|
|
|
|
/**
|
|
* @requires PHP 5.6
|
|
*/
|
|
public function testLoadVariadic()
|
|
{
|
|
$route = new Route(['path' => '/path/to/{id}']);
|
|
$this->reader->expects($this->once())->method('getClassAnnotation');
|
|
$this->reader->expects($this->once())->method('getMethodAnnotations')
|
|
->willReturn([$route]);
|
|
|
|
$this->loader->load(__DIR__.'/../Fixtures/OtherAnnotatedClasses/VariadicClass.php');
|
|
}
|
|
|
|
/**
|
|
* @requires PHP 7.0
|
|
*/
|
|
public function testLoadAnonymousClass()
|
|
{
|
|
$this->reader->expects($this->never())->method('getClassAnnotation');
|
|
$this->reader->expects($this->never())->method('getMethodAnnotations');
|
|
|
|
$this->loader->load(__DIR__.'/../Fixtures/OtherAnnotatedClasses/AnonymousClassInTrait.php');
|
|
}
|
|
|
|
public function testLoadAbstractClass()
|
|
{
|
|
$this->reader->expects($this->never())->method('getClassAnnotation');
|
|
$this->reader->expects($this->never())->method('getMethodAnnotations');
|
|
|
|
$this->loader->load(__DIR__.'/../Fixtures/AnnotatedClasses/AbstractClass.php');
|
|
}
|
|
|
|
public function testSupports()
|
|
{
|
|
$fixture = __DIR__.'/../Fixtures/annotated.php';
|
|
|
|
$this->assertTrue($this->loader->supports($fixture), '->supports() returns true if the resource is loadable');
|
|
$this->assertFalse($this->loader->supports('foo.foo'), '->supports() returns true if the resource is loadable');
|
|
|
|
$this->assertTrue($this->loader->supports($fixture, 'annotation'), '->supports() checks the resource type if specified');
|
|
$this->assertFalse($this->loader->supports($fixture, 'foo'), '->supports() checks the resource type if specified');
|
|
}
|
|
}
|