summaryrefslogtreecommitdiff
path: root/tests/Unit/Routing/LegacyUrlGeneratorTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Routing/LegacyUrlGeneratorTest.php')
-rw-r--r--tests/Unit/Routing/LegacyUrlGeneratorTest.php54
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/Unit/Routing/LegacyUrlGeneratorTest.php b/tests/Unit/Routing/LegacyUrlGeneratorTest.php
deleted file mode 100644
index 3d42afbd..00000000
--- a/tests/Unit/Routing/LegacyUrlGeneratorTest.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?php
-
-namespace Engelsystem\Test\Unit\Routing;
-
-use Engelsystem\Application;
-use Engelsystem\Container\Container;
-use Engelsystem\Http\Request;
-use Engelsystem\Routing\LegacyUrlGenerator;
-use Engelsystem\Routing\UrlGeneratorInterface;
-use PHPUnit\Framework\TestCase;
-
-class LegacyUrlGeneratorTest extends TestCase
-{
- public function provideLinksTo()
- {
- return [
- ['/', 'http://foo.bar/index.php', [], 'http://foo.bar/'],
- ['/foo-path', 'http://foo.bar/index.php/index.php', [], 'http://foo.bar/index.php?p=foo_path'],
- ['/foo', 'http://foo.bar/index.php/index.php', [], 'http://foo.bar/index.php?p=foo'],
- ['foo', 'http://foo.bar/index.php', ['test' => 'abc'], 'http://foo.bar/index.php?p=foo&test=abc'],
- ];
- }
-
- /**
- * @dataProvider provideLinksTo
- * @covers \Engelsystem\Routing\LegacyUrlGenerator::linkTo
- *
- * @param string $urlToPath
- * @param string $willReturn
- * @param string[] $arguments
- * @param string $expectedUrl
- */
- public function testLinkTo($urlToPath, $willReturn, $arguments, $expectedUrl)
- {
- $app = new Container();
- Application::setInstance($app);
-
- $request = $this->getMockBuilder(Request::class)
- ->getMock();
-
- $request->expects($this->once())
- ->method('getUriForPath')
- ->with('/index.php')
- ->willReturn($willReturn);
-
- $app->instance('request', $request);
-
- $urlGenerator = new LegacyUrlGenerator();
- $this->assertInstanceOf(UrlGeneratorInterface::class, $urlGenerator);
-
- $url = $urlGenerator->linkTo($urlToPath, $arguments);
- $this->assertEquals($expectedUrl, $url);
- }
-}