2016-08-21 14:52:15 +03:00
|
|
|
<?php
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-08-21 14:52:15 +03:00
|
|
|
namespace ShlinkioTest\Shlink\Rest\Middleware;
|
|
|
|
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2017-03-25 11:22:00 +03:00
|
|
|
use Prophecy\Argument;
|
|
|
|
use Prophecy\Prophecy\MethodProphecy;
|
|
|
|
use Psr\Http\Message\ServerRequestInterface;
|
2018-03-26 19:49:28 +03:00
|
|
|
use Psr\Http\Server\RequestHandlerInterface as DelegateInterface;
|
2016-08-21 14:52:15 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Middleware\BodyParserMiddleware;
|
|
|
|
use Zend\Diactoros\Response;
|
|
|
|
use Zend\Diactoros\ServerRequestFactory;
|
|
|
|
use Zend\Diactoros\Stream;
|
|
|
|
|
|
|
|
class BodyParserMiddlewareTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var BodyParserMiddleware
|
|
|
|
*/
|
|
|
|
private $middleware;
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
$this->middleware = new BodyParserMiddleware();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function requestsFromOtherMethodsJustFallbackToNextMiddleware()
|
|
|
|
{
|
|
|
|
$request = ServerRequestFactory::fromGlobals()->withMethod('GET');
|
2017-03-25 11:22:00 +03:00
|
|
|
$delegate = $this->prophesize(DelegateInterface::class);
|
|
|
|
/** @var MethodProphecy $process */
|
|
|
|
$process = $delegate->process($request)->willReturn(new Response());
|
2016-08-21 14:52:15 +03:00
|
|
|
|
2017-03-25 11:22:00 +03:00
|
|
|
$this->middleware->process($request, $delegate->reveal());
|
|
|
|
|
|
|
|
$process->shouldHaveBeenCalledTimes(1);
|
2016-08-21 14:52:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function jsonRequestsAreJsonDecoded()
|
|
|
|
{
|
2017-03-25 11:22:00 +03:00
|
|
|
$test = $this;
|
2016-08-21 14:52:15 +03:00
|
|
|
$body = new Stream('php://temp', 'wr');
|
|
|
|
$body->write('{"foo": "bar", "bar": ["one", 5]}');
|
|
|
|
$request = ServerRequestFactory::fromGlobals()->withMethod('PUT')
|
|
|
|
->withBody($body)
|
|
|
|
->withHeader('content-type', 'application/json');
|
2017-03-25 11:22:00 +03:00
|
|
|
$delegate = $this->prophesize(DelegateInterface::class);
|
|
|
|
/** @var MethodProphecy $process */
|
|
|
|
$process = $delegate->process(Argument::type(ServerRequestInterface::class))->will(
|
|
|
|
function (array $args) use ($test) {
|
|
|
|
/** @var ServerRequestInterface $req */
|
|
|
|
$req = array_shift($args);
|
|
|
|
|
|
|
|
$test->assertEquals([
|
|
|
|
'foo' => 'bar',
|
|
|
|
'bar' => ['one', 5],
|
|
|
|
], $req->getParsedBody());
|
|
|
|
|
|
|
|
return new Response();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->middleware->process($request, $delegate->reveal());
|
|
|
|
|
|
|
|
$process->shouldHaveBeenCalledTimes(1);
|
2016-08-21 14:52:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function regularRequestsAreUrlDecoded()
|
|
|
|
{
|
2017-03-25 11:22:00 +03:00
|
|
|
$test = $this;
|
2016-08-21 14:52:15 +03:00
|
|
|
$body = new Stream('php://temp', 'wr');
|
|
|
|
$body->write('foo=bar&bar[]=one&bar[]=5');
|
|
|
|
$request = ServerRequestFactory::fromGlobals()->withMethod('PUT')
|
|
|
|
->withBody($body);
|
2017-03-25 11:22:00 +03:00
|
|
|
$delegate = $this->prophesize(DelegateInterface::class);
|
|
|
|
/** @var MethodProphecy $process */
|
|
|
|
$process = $delegate->process(Argument::type(ServerRequestInterface::class))->will(
|
|
|
|
function (array $args) use ($test) {
|
|
|
|
/** @var ServerRequestInterface $req */
|
|
|
|
$req = array_shift($args);
|
|
|
|
|
|
|
|
$test->assertEquals([
|
|
|
|
'foo' => 'bar',
|
|
|
|
'bar' => ['one', 5],
|
|
|
|
], $req->getParsedBody());
|
|
|
|
|
|
|
|
return new Response();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->middleware->process($request, $delegate->reveal());
|
|
|
|
|
|
|
|
$process->shouldHaveBeenCalledTimes(1);
|
2016-08-21 14:52:15 +03:00
|
|
|
}
|
|
|
|
}
|