PHP 8.2.30
Preview: PhpFileLoaderTest.php Size: 1.93 KB
/opt/cloudlinux/alt-php53/root/usr/share/pear/test/Routing/Symfony/Component/Routing/Tests/Loader/PhpFileLoaderTest.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\Loader\PhpFileLoader;

class PhpFileLoaderTest extends \PHPUnit_Framework_TestCase
{
    public function testSupports()
    {
        $loader = new PhpFileLoader($this->getMock('Symfony\Component\Config\FileLocator'));

        $this->assertTrue($loader->supports('foo.php'), '->supports() returns true if the resource is loadable');
        $this->assertFalse($loader->supports('foo.foo'), '->supports() returns true if the resource is loadable');

        $this->assertTrue($loader->supports('foo.php', 'php'), '->supports() checks the resource type if specified');
        $this->assertFalse($loader->supports('foo.php', 'foo'), '->supports() checks the resource type if specified');
    }

    public function testLoadWithRoute()
    {
        $loader = new PhpFileLoader(new FileLocator(array(__DIR__.'/../Fixtures')));
        $routeCollection = $loader->load('validpattern.php');
        $routes = $routeCollection->all();

        $this->assertCount(2, $routes, 'Two routes are loaded');
        $this->assertContainsOnly('Symfony\Component\Routing\Route', $routes);

        foreach ($routes as $route) {
            $this->assertSame('/blog/{slug}', $route->getPath());
            $this->assertSame('MyBlogBundle:Blog:show', $route->getDefault('_controller'));
            $this->assertSame('{locale}.example.com', $route->getHost());
            $this->assertSame('RouteCompiler', $route->getOption('compiler_class'));
            $this->assertEquals(array('GET', 'POST', 'PUT', 'OPTIONS'), $route->getMethods());
            $this->assertEquals(array('https'), $route->getSchemes());
        }
    }
}

Directory Contents

Dirs: 0 × Files: 8

Name Size Perms Modified Actions
820 B lrw-r--r-- 2019-12-18 11:20:42
Edit Download
4.70 KB lrw-r--r-- 2019-12-18 11:20:42
Edit Download
1.67 KB lrw-r--r-- 2019-12-18 11:20:42
Edit Download
1.50 KB lrw-r--r-- 2019-12-18 11:20:42
Edit Download
1.45 KB lrw-r--r-- 2019-12-18 11:20:42
Edit Download
1.93 KB lrw-r--r-- 2019-12-18 11:20:42
Edit Download
5.03 KB lrw-r--r-- 2019-12-18 11:20:42
Edit Download
4.38 KB lrw-r--r-- 2019-12-18 11:20:42
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).