shlink/module/Rest/test/Action/AuthenticateActionTest.php

76 lines
2.2 KiB
PHP
Raw Normal View History

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