!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/symfony/routing/Tests/   drwxr-xr-x
Free 116.86 GB of 200.55 GB (58.27%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     RouterTest.php (5.03 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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;

use 
Symfony\Component\Routing\Router;
use 
Symfony\Component\HttpFoundation\Request;

class 
RouterTest extends \PHPUnit_Framework_TestCase
{
    private 
$router null;

    private 
$loader null;

    protected function 
setUp()
    {
        
$this->loader $this->getMock('Symfony\Component\Config\Loader\LoaderInterface');
        
$this->router = new Router($this->loader'routing.yml');
    }

    public function 
testSetOptionsWithSupportedOptions()
    {
        
$this->router->setOptions(array(
            
'cache_dir' => './cache',
            
'debug' => true,
            
'resource_type' => 'ResourceType',
        ));

        
$this->assertSame('./cache'$this->router->getOption('cache_dir'));
        
$this->assertTrue($this->router->getOption('debug'));
        
$this->assertSame('ResourceType'$this->router->getOption('resource_type'));
    }

    
/**
     * @expectedException \InvalidArgumentException
     * @expectedExceptionMessage The Router does not support the following options: "option_foo", "option_bar"
     */
    
public function testSetOptionsWithUnsupportedOptions()
    {
        
$this->router->setOptions(array(
            
'cache_dir' => './cache',
            
'option_foo' => true,
            
'option_bar' => 'baz',
            
'resource_type' => 'ResourceType',
        ));
    }

    public function 
testSetOptionWithSupportedOption()
    {
        
$this->router->setOption('cache_dir''./cache');

        
$this->assertSame('./cache'$this->router->getOption('cache_dir'));
    }

    
/**
     * @expectedException \InvalidArgumentException
     * @expectedExceptionMessage The Router does not support the "option_foo" option
     */
    
public function testSetOptionWithUnsupportedOption()
    {
        
$this->router->setOption('option_foo'true);
    }

    
/**
     * @expectedException \InvalidArgumentException
     * @expectedExceptionMessage The Router does not support the "option_foo" option
     */
    
public function testGetOptionWithUnsupportedOption()
    {
        
$this->router->getOption('option_foo'true);
    }

    public function 
testThatRouteCollectionIsLoaded()
    {
        
$this->router->setOption('resource_type''ResourceType');

        
$routeCollection $this->getMock('Symfony\Component\Routing\RouteCollection');

        
$this->loader->expects($this->once())
            ->
method('load')->with('routing.yml''ResourceType')
            ->
will($this->returnValue($routeCollection));

        
$this->assertSame($routeCollection$this->router->getRouteCollection());
    }

    
/**
     * @dataProvider provideMatcherOptionsPreventingCaching
     */
    
public function testMatcherIsCreatedIfCacheIsNotConfigured($option)
    {
        
$this->router->setOption($optionnull);

        
$this->loader->expects($this->once())
            ->
method('load')->with('routing.yml'null)
            ->
will($this->returnValue($this->getMock('Symfony\Component\Routing\RouteCollection')));

        
$this->assertInstanceOf('Symfony\\Component\\Routing\\Matcher\\UrlMatcher'$this->router->getMatcher());
    }

    public function 
provideMatcherOptionsPreventingCaching()
    {
        return array(
            array(
'cache_dir'),
            array(
'matcher_cache_class'),
        );
    }

    
/**
     * @dataProvider provideGeneratorOptionsPreventingCaching
     */
    
public function testGeneratorIsCreatedIfCacheIsNotConfigured($option)
    {
        
$this->router->setOption($optionnull);

        
$this->loader->expects($this->once())
            ->
method('load')->with('routing.yml'null)
            ->
will($this->returnValue($this->getMock('Symfony\Component\Routing\RouteCollection')));

        
$this->assertInstanceOf('Symfony\\Component\\Routing\\Generator\\UrlGenerator'$this->router->getGenerator());
    }

    public function 
provideGeneratorOptionsPreventingCaching()
    {
        return array(
            array(
'cache_dir'),
            array(
'generator_cache_class'),
        );
    }

    public function 
testMatchRequestWithUrlMatcherInterface()
    {
        
$matcher $this->getMock('Symfony\Component\Routing\Matcher\UrlMatcherInterface');
        
$matcher->expects($this->once())->method('match');

        
$p = new \ReflectionProperty($this->router'matcher');
        
$p->setAccessible(true);
        
$p->setValue($this->router$matcher);

        
$this->router->matchRequest(Request::create('/'));
    }

    public function 
testMatchRequestWithRequestMatcherInterface()
    {
        
$matcher $this->getMock('Symfony\Component\Routing\Matcher\RequestMatcherInterface');
        
$matcher->expects($this->once())->method('matchRequest');

        
$p = new \ReflectionProperty($this->router'matcher');
        
$p->setAccessible(true);
        
$p->setValue($this->router$matcher);

        
$this->router->matchRequest(Request::create('/'));
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0114 ]--