diff options
author | msquare <msquare@notrademark.de> | 2018-09-07 20:50:31 +0200 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2018-09-07 20:50:31 +0200 |
commit | 2d6bca1357faff28bc1f86a56b432cc463ff7574 (patch) | |
tree | ce18461d2e170ac28dd365342a1f125a8a31aa3a /tests/Unit/Routing/UrlGeneratorTest.php | |
parent | b320fc779063ee80b8f0ba505cb323287ccccbf5 (diff) | |
parent | ce6d0fd13b54ac79a955b85d50860736a520d333 (diff) |
Merge branch 'MyIgel-routing'
Diffstat (limited to 'tests/Unit/Routing/UrlGeneratorTest.php')
-rw-r--r-- | tests/Unit/Routing/UrlGeneratorTest.php | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/tests/Unit/Routing/UrlGeneratorTest.php b/tests/Unit/Routing/UrlGeneratorTest.php deleted file mode 100644 index e128bfe7..00000000 --- a/tests/Unit/Routing/UrlGeneratorTest.php +++ /dev/null @@ -1,55 +0,0 @@ -<?php - -namespace Engelsystem\Test\Unit\Routing; - -use Engelsystem\Application; -use Engelsystem\Container\Container; -use Engelsystem\Http\Request; -use Engelsystem\Routing\UrlGenerator; -use Engelsystem\Routing\UrlGeneratorInterface; -use PHPUnit\Framework\TestCase; - -class UrlGeneratorTest extends TestCase -{ - public function provideLinksTo() - { - return [ - ['/', '/', 'http://foo.bar/', [], 'http://foo.bar/'], - ['/foo/path', '/foo/path', 'http://foo.bar/foo/path', [], 'http://foo.bar/foo/path'], - ['foo', '/foo', 'https://foo.bar/foo', [], 'https://foo.bar/foo'], - ['foo', '/foo', 'http://f.b/foo', ['test' => 'abc', 'bla' => 'foo'], 'http://f.b/foo?test=abc&bla=foo'], - ]; - } - - /** - * @dataProvider provideLinksTo - * @covers \Engelsystem\Routing\UrlGenerator::linkTo - * - * @param string $path - * @param string $willReturn - * @param string $urlToPath - * @param string[] $arguments - * @param string $expectedUrl - */ - public function testLinkTo($urlToPath, $path, $willReturn, $arguments, $expectedUrl) - { - $app = new Container(); - Application::setInstance($app); - - $request = $this->getMockBuilder(Request::class) - ->getMock(); - - $request->expects($this->once()) - ->method('getUriForPath') - ->with($path) - ->willReturn($willReturn); - - $app->instance('request', $request); - - $urlGenerator = new UrlGenerator(); - $this->assertInstanceOf(UrlGeneratorInterface::class, $urlGenerator); - - $url = $urlGenerator->linkTo($urlToPath, $arguments); - $this->assertEquals($expectedUrl, $url); - } -} |