2016-07-31 13:33:55 +02:00
|
|
|
<?php
|
2019-10-05 17:26:10 +02:00
|
|
|
|
2017-10-12 10:13:20 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-07-31 13:33:55 +02:00
|
|
|
namespace ShlinkioTest\Shlink\Rest\Action;
|
|
|
|
|
2017-03-24 20:34:18 +01:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2017-12-27 16:23:54 +01:00
|
|
|
use Prophecy\Argument;
|
2016-07-31 13:33:55 +02:00
|
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
|
|
|
use Shlinkio\Shlink\Rest\Action\AuthenticateAction;
|
2016-08-07 19:13:40 +02:00
|
|
|
use Shlinkio\Shlink\Rest\Authentication\JWTService;
|
|
|
|
use Shlinkio\Shlink\Rest\Entity\ApiKey;
|
2016-08-07 10:26:34 +02:00
|
|
|
use Shlinkio\Shlink\Rest\Service\ApiKeyService;
|
2018-12-25 23:01:30 +01:00
|
|
|
use Zend\Diactoros\ServerRequest;
|
2019-02-26 22:56:43 +01:00
|
|
|
|
2018-10-28 08:34:02 +01:00
|
|
|
use function strpos;
|
2016-07-31 13:33:55 +02:00
|
|
|
|
2019-12-29 22:48:40 +01:00
|
|
|
/** @deprecated */
|
2016-07-31 13:33:55 +02:00
|
|
|
class AuthenticateActionTest extends TestCase
|
|
|
|
{
|
2018-11-20 19:30:27 +01:00
|
|
|
/** @var AuthenticateAction */
|
2018-11-20 19:37:22 +01:00
|
|
|
private $action;
|
2018-11-20 19:30:27 +01:00
|
|
|
/** @var ObjectProphecy */
|
2018-11-20 19:37:22 +01:00
|
|
|
private $apiKeyService;
|
2018-11-20 19:30:27 +01:00
|
|
|
/** @var ObjectProphecy */
|
2018-11-20 19:37:22 +01:00
|
|
|
private $jwtService;
|
2016-07-31 13:33:55 +02:00
|
|
|
|
2019-02-16 10:53:45 +01:00
|
|
|
public function setUp(): void
|
2016-07-31 13:33:55 +02:00
|
|
|
{
|
2016-08-07 10:26:34 +02:00
|
|
|
$this->apiKeyService = $this->prophesize(ApiKeyService::class);
|
2016-08-07 19:13:40 +02:00
|
|
|
$this->jwtService = $this->prophesize(JWTService::class);
|
2017-12-27 16:23:54 +01:00
|
|
|
$this->jwtService->create(Argument::cetera())->willReturn('');
|
|
|
|
|
2018-11-18 16:28:04 +01:00
|
|
|
$this->action = new AuthenticateAction($this->apiKeyService->reveal(), $this->jwtService->reveal());
|
2016-07-31 13:33:55 +02:00
|
|
|
}
|
|
|
|
|
2019-02-17 20:28:34 +01:00
|
|
|
/** @test */
|
2016-07-31 13:33:55 +02:00
|
|
|
public function notProvidingAuthDataReturnsError()
|
|
|
|
{
|
2018-12-25 23:01:30 +01:00
|
|
|
$resp = $this->action->handle(new ServerRequest());
|
2016-07-31 13:33:55 +02:00
|
|
|
$this->assertEquals(400, $resp->getStatusCode());
|
|
|
|
}
|
|
|
|
|
2019-02-17 20:28:34 +01:00
|
|
|
/** @test */
|
2016-08-07 10:26:34 +02:00
|
|
|
public function properApiKeyReturnsTokenInResponse()
|
2016-07-31 13:33:55 +02:00
|
|
|
{
|
2018-09-15 10:03:42 +02:00
|
|
|
$this->apiKeyService->getByKey('foo')->willReturn((new ApiKey())->setId('5'))
|
2018-11-11 13:18:21 +01:00
|
|
|
->shouldBeCalledOnce();
|
2016-07-31 13:33:55 +02:00
|
|
|
|
2018-12-25 23:01:30 +01:00
|
|
|
$request = (new ServerRequest())->withParsedBody([
|
2016-08-07 10:26:34 +02:00
|
|
|
'apiKey' => 'foo',
|
2016-07-31 13:33:55 +02:00
|
|
|
]);
|
2018-03-26 19:02:41 +02:00
|
|
|
$response = $this->action->handle($request);
|
2016-07-31 13:33:55 +02:00
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
|
|
|
|
|
|
$response->getBody()->rewind();
|
2016-08-07 10:26:34 +02:00
|
|
|
$this->assertTrue(strpos($response->getBody()->getContents(), '"token"') > 0);
|
2016-07-31 13:33:55 +02:00
|
|
|
}
|
|
|
|
|
2019-02-17 20:28:34 +01:00
|
|
|
/** @test */
|
2016-08-07 10:26:34 +02:00
|
|
|
public function invalidApiKeyReturnsErrorResponse()
|
2016-07-31 13:33:55 +02:00
|
|
|
{
|
2018-10-28 15:24:41 +01:00
|
|
|
$this->apiKeyService->getByKey('foo')->willReturn((new ApiKey())->disable())
|
2018-11-11 13:18:21 +01:00
|
|
|
->shouldBeCalledOnce();
|
2016-07-31 13:33:55 +02:00
|
|
|
|
2018-12-25 23:01:30 +01:00
|
|
|
$request = (new ServerRequest())->withParsedBody([
|
2016-08-07 10:26:34 +02:00
|
|
|
'apiKey' => 'foo',
|
2016-07-31 13:33:55 +02:00
|
|
|
]);
|
2018-03-26 19:02:41 +02:00
|
|
|
$response = $this->action->handle($request);
|
2016-07-31 13:33:55 +02:00
|
|
|
$this->assertEquals(401, $response->getStatusCode());
|
|
|
|
}
|
|
|
|
}
|