Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/lookup-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'server/vendor/nikic/fast-route/test/RouteParser/StdTest.php')
-rw-r--r--server/vendor/nikic/fast-route/test/RouteParser/StdTest.php147
1 files changed, 0 insertions, 147 deletions
diff --git a/server/vendor/nikic/fast-route/test/RouteParser/StdTest.php b/server/vendor/nikic/fast-route/test/RouteParser/StdTest.php
deleted file mode 100644
index 41f194b..0000000
--- a/server/vendor/nikic/fast-route/test/RouteParser/StdTest.php
+++ /dev/null
@@ -1,147 +0,0 @@
-<?php
-
-namespace FastRoute\RouteParser;
-
-class StdTest extends \PhpUnit_Framework_TestCase {
- /** @dataProvider provideTestParse */
- public function testParse($routeString, $expectedRouteDatas) {
- $parser = new Std();
- $routeDatas = $parser->parse($routeString);
- $this->assertSame($expectedRouteDatas, $routeDatas);
- }
-
- /** @dataProvider provideTestParseError */
- public function testParseError($routeString, $expectedExceptionMessage) {
- $parser = new Std();
- $this->setExpectedException('FastRoute\\BadRouteException', $expectedExceptionMessage);
- $parser->parse($routeString);
- }
-
- public function provideTestParse() {
- return [
- [
- '/test',
- [
- ['/test'],
- ]
- ],
- [
- '/test/{param}',
- [
- ['/test/', ['param', '[^/]+']],
- ]
- ],
- [
- '/te{ param }st',
- [
- ['/te', ['param', '[^/]+'], 'st']
- ]
- ],
- [
- '/test/{param1}/test2/{param2}',
- [
- ['/test/', ['param1', '[^/]+'], '/test2/', ['param2', '[^/]+']]
- ]
- ],
- [
- '/test/{param:\d+}',
- [
- ['/test/', ['param', '\d+']]
- ]
- ],
- [
- '/test/{ param : \d{1,9} }',
- [
- ['/test/', ['param', '\d{1,9}']]
- ]
- ],
- [
- '/test[opt]',
- [
- ['/test'],
- ['/testopt'],
- ]
- ],
- [
- '/test[/{param}]',
- [
- ['/test'],
- ['/test/', ['param', '[^/]+']],
- ]
- ],
- [
- '/{param}[opt]',
- [
- ['/', ['param', '[^/]+']],
- ['/', ['param', '[^/]+'], 'opt']
- ]
- ],
- [
- '/test[/{name}[/{id:[0-9]+}]]',
- [
- ['/test'],
- ['/test/', ['name', '[^/]+']],
- ['/test/', ['name', '[^/]+'], '/', ['id', '[0-9]+']],
- ]
- ],
- [
- '',
- [
- [''],
- ]
- ],
- [
- '[test]',
- [
- [''],
- ['test'],
- ]
- ],
- [
- '/{foo-bar}',
- [
- ['/', ['foo-bar', '[^/]+']]
- ]
- ],
- [
- '/{_foo:.*}',
- [
- ['/', ['_foo', '.*']]
- ]
- ],
- ];
- }
-
- public function provideTestParseError() {
- return [
- [
- '/test[opt',
- "Number of opening '[' and closing ']' does not match"
- ],
- [
- '/test[opt[opt2]',
- "Number of opening '[' and closing ']' does not match"
- ],
- [
- '/testopt]',
- "Number of opening '[' and closing ']' does not match"
- ],
- [
- '/test[]',
- "Empty optional part"
- ],
- [
- '/test[[opt]]',
- "Empty optional part"
- ],
- [
- '[[test]]',
- "Empty optional part"
- ],
- [
- '/test[/opt]/required',
- "Optional segments can only occur at the end of a route"
- ],
- ];
- }
-}