2016-07-31 14:33:55 +03:00
|
|
|
<?php
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-07-31 14:33:55 +03:00
|
|
|
namespace ShlinkioTest\Shlink\Rest\Action;
|
|
|
|
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2017-12-27 18:23:54 +03:00
|
|
|
use Prophecy\Argument;
|
2016-07-31 14:33:55 +03:00
|
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
|
|
|
use Shlinkio\Shlink\Rest\Action\AuthenticateAction;
|
2016-08-07 20:13:40 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Authentication\JWTService;
|
|
|
|
use Shlinkio\Shlink\Rest\Entity\ApiKey;
|
2016-08-07 11:26:34 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Service\ApiKeyService;
|
2017-03-25 12:04:48 +03:00
|
|
|
use ShlinkioTest\Shlink\Common\Util\TestUtils;
|
2016-07-31 14:33:55 +03:00
|
|
|
use Zend\Diactoros\ServerRequestFactory;
|
|
|
|
use Zend\I18n\Translator\Translator;
|
|
|
|
|
|
|
|
class AuthenticateActionTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var AuthenticateAction
|
|
|
|
*/
|
|
|
|
protected $action;
|
|
|
|
/**
|
|
|
|
* @var ObjectProphecy
|
|
|
|
*/
|
2016-08-07 11:26:34 +03:00
|
|
|
protected $apiKeyService;
|
2016-08-07 20:13:40 +03:00
|
|
|
/**
|
|
|
|
* @var ObjectProphecy
|
|
|
|
*/
|
|
|
|
protected $jwtService;
|
2016-07-31 14:33:55 +03:00
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
2016-08-07 11:26:34 +03:00
|
|
|
$this->apiKeyService = $this->prophesize(ApiKeyService::class);
|
2016-08-07 20:13:40 +03:00
|
|
|
$this->jwtService = $this->prophesize(JWTService::class);
|
2017-12-27 18:23:54 +03:00
|
|
|
$this->jwtService->create(Argument::cetera())->willReturn('');
|
|
|
|
|
2016-08-07 20:13:40 +03:00
|
|
|
$this->action = new AuthenticateAction(
|
|
|
|
$this->apiKeyService->reveal(),
|
|
|
|
$this->jwtService->reveal(),
|
|
|
|
Translator::factory([])
|
|
|
|
);
|
2016-07-31 14:33:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function notProvidingAuthDataReturnsError()
|
|
|
|
{
|
2017-03-25 12:04:48 +03:00
|
|
|
$resp = $this->action->process(ServerRequestFactory::fromGlobals(), TestUtils::createDelegateMock()->reveal());
|
2016-07-31 14:33:55 +03:00
|
|
|
$this->assertEquals(400, $resp->getStatusCode());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2016-08-07 11:26:34 +03:00
|
|
|
public function properApiKeyReturnsTokenInResponse()
|
2016-07-31 14:33:55 +03:00
|
|
|
{
|
2016-08-07 20:13:40 +03:00
|
|
|
$this->apiKeyService->getByKey('foo')->willReturn((new ApiKey())->setId(5))
|
|
|
|
->shouldBeCalledTimes(1);
|
2016-07-31 14:33:55 +03:00
|
|
|
|
|
|
|
$request = ServerRequestFactory::fromGlobals()->withParsedBody([
|
2016-08-07 11:26:34 +03:00
|
|
|
'apiKey' => 'foo',
|
2016-07-31 14:33:55 +03:00
|
|
|
]);
|
2017-03-25 12:04:48 +03:00
|
|
|
$response = $this->action->process($request, TestUtils::createDelegateMock()->reveal());
|
2016-07-31 14:33:55 +03:00
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
|
|
|
|
|
|
$response->getBody()->rewind();
|
2016-08-07 11:26:34 +03:00
|
|
|
$this->assertTrue(strpos($response->getBody()->getContents(), '"token"') > 0);
|
2016-07-31 14:33:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2016-08-07 11:26:34 +03:00
|
|
|
public function invalidApiKeyReturnsErrorResponse()
|
2016-07-31 14:33:55 +03:00
|
|
|
{
|
2016-08-07 20:13:40 +03:00
|
|
|
$this->apiKeyService->getByKey('foo')->willReturn((new ApiKey())->setEnabled(false))
|
|
|
|
->shouldBeCalledTimes(1);
|
2016-07-31 14:33:55 +03:00
|
|
|
|
|
|
|
$request = ServerRequestFactory::fromGlobals()->withParsedBody([
|
2016-08-07 11:26:34 +03:00
|
|
|
'apiKey' => 'foo',
|
2016-07-31 14:33:55 +03:00
|
|
|
]);
|
2017-03-25 12:04:48 +03:00
|
|
|
$response = $this->action->process($request, TestUtils::createDelegateMock()->reveal());
|
2016-07-31 14:33:55 +03:00
|
|
|
$this->assertEquals(401, $response->getStatusCode());
|
|
|
|
}
|
|
|
|
}
|