Removed LegacyUrlGenerator
parent
d323b75501
commit
6b1c22a743
@ -1,31 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Engelsystem\Http;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides urls when webserver rewriting is disabled.
|
|
||||||
*
|
|
||||||
* The urls have the form <app url>/index.php?p=<path>&<parameters>
|
|
||||||
*/
|
|
||||||
class LegacyUrlGenerator extends UrlGenerator
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @param string $path
|
|
||||||
* @param array $parameters
|
|
||||||
* @return string urls in the form <app url>/index.php?p=<path>&<parameters>
|
|
||||||
*/
|
|
||||||
public function to($path, $parameters = [])
|
|
||||||
{
|
|
||||||
$page = ltrim($path, '/');
|
|
||||||
if (!empty($page)) {
|
|
||||||
$page = str_replace('-', '_', $page);
|
|
||||||
$parameters = array_merge(['p' => $page], $parameters);
|
|
||||||
}
|
|
||||||
|
|
||||||
$uri = parent::to('index.php', $parameters);
|
|
||||||
$uri = preg_replace('~(/index\.php)+~', '/index.php', $uri);
|
|
||||||
$uri = preg_replace('~(/index\.php)$~', '/', $uri);
|
|
||||||
|
|
||||||
return $uri;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,54 +0,0 @@
|
|||||||
<?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);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue