eZ\Publish\Core\MVC\Symfony\Security\Tests\HttpUtilsTest::checkRequestPathProvider PHP Method

checkRequestPathProvider() public method

    public function checkRequestPathProvider()
    {
        return array(array('/foo/bar', null, 'http://localhost/foo/bar', true), array('/foo', null, 'http://localhost/foo/bar', false), array('/foo/bar', null, 'http://localhost/foo/bar?some=thing&toto=tata', true), array('/foo/bar', '/test_access', 'http://ezpublish.dev/test_access/foo/bar?some=thing&toto=tata', true), array('/foo', '/test_access', 'http://ezpublish.dev/test_access/foo/bar?some=thing&toto=tata', false), array('/foo/bar', '/blabla', 'http://ezpublish.dev/blabla/foo/bar', true));
    }