You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.6 KiB
PHP
75 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace Engelsystem\Test\Unit\Middleware;
|
|
|
|
use Engelsystem\Config\Config;
|
|
use Engelsystem\Middleware\LegacyMiddleware;
|
|
use Engelsystem\Middleware\RouteDispatcher;
|
|
use Engelsystem\Middleware\RouteDispatcherServiceProvider;
|
|
use Engelsystem\Test\Unit\ServiceProviderTest;
|
|
use FastRoute\Dispatcher as FastRouteDispatcher;
|
|
use Illuminate\Contracts\Container\ContextualBindingBuilder;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use Psr\Http\Server\MiddlewareInterface;
|
|
|
|
class RouteDispatcherServiceProviderTest extends ServiceProviderTest
|
|
{
|
|
/**
|
|
* @covers \Engelsystem\Middleware\RouteDispatcherServiceProvider::register()
|
|
*/
|
|
public function testRegister()
|
|
{
|
|
/** @var ContextualBindingBuilder|MockObject $bindingBuilder */
|
|
$bindingBuilder = $this->createMock(ContextualBindingBuilder::class);
|
|
/** @var FastRouteDispatcher|MockObject $routeDispatcher */
|
|
$routeDispatcher = $this->getMockForAbstractClass(FastRouteDispatcher::class);
|
|
$config = new Config(['environment' => 'development']);
|
|
|
|
$app = $this->getApp(['alias', 'when', 'get']);
|
|
|
|
$app->expects($this->exactly(2))
|
|
->method('get')
|
|
->withConsecutive(['config'], ['path.cache.routes'])
|
|
->willReturn($config, '/foo/routes.cache');
|
|
|
|
$app->expects($this->once())
|
|
->method('alias')
|
|
->with(RouteDispatcher::class, 'route.dispatcher');
|
|
|
|
$app->expects($this->exactly(2))
|
|
->method('when')
|
|
->with(RouteDispatcher::class)
|
|
->willReturn($bindingBuilder);
|
|
|
|
$bindingBuilder->expects($this->exactly(2))
|
|
->method('needs')
|
|
->withConsecutive(
|
|
[FastRouteDispatcher::class],
|
|
[MiddlewareInterface::class]
|
|
)
|
|
->willReturn($bindingBuilder);
|
|
|
|
$bindingBuilder->expects($this->exactly(2))
|
|
->method('give')
|
|
->with($this->callback(function ($subject) {
|
|
if (is_callable($subject)) {
|
|
$subject();
|
|
}
|
|
|
|
return is_callable($subject) || $subject == LegacyMiddleware::class;
|
|
}));
|
|
|
|
/** @var RouteDispatcherServiceProvider|MockObject $serviceProvider */
|
|
$serviceProvider = $this->getMockBuilder(RouteDispatcherServiceProvider::class)
|
|
->setConstructorArgs([$app])
|
|
->setMethods(['generateRouting'])
|
|
->getMock();
|
|
|
|
$serviceProvider->expects($this->once())
|
|
->method('generateRouting')
|
|
->willReturn($routeDispatcher);
|
|
|
|
$serviceProvider->register();
|
|
}
|
|
}
|