summaryrefslogtreecommitdiff
path: root/tests/Unit/Http/LegacyUrlGeneratorTest.php
blob: 8caf3c77daf40714814e25acea0715507d0bc4c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php

namespace Engelsystem\Test\Unit\Http;

use Engelsystem\Application;
use Engelsystem\Container\Container;
use Engelsystem\Http\LegacyUrlGenerator;
use Engelsystem\Http\Request;
use Engelsystem\Http\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\Http\LegacyUrlGenerator::to
     *
     * @param string   $urlToPath
     * @param string   $willReturn
     * @param string[] $arguments
     * @param string   $expectedUrl
     */
    public function testTo($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->to($urlToPath, $arguments);
        $this->assertEquals($expectedUrl, $url);
    }
}