apiKeyService = $this->prophesize(ApiKeyService::class); $this->jwtService = $this->prophesize(JWTService::class); $this->action = new AuthenticateAction( $this->apiKeyService->reveal(), $this->jwtService->reveal(), Translator::factory([]) ); } /** * @test */ public function notProvidingAuthDataReturnsError() { $resp = $this->action->__invoke(ServerRequestFactory::fromGlobals(), new Response()); $this->assertEquals(400, $resp->getStatusCode()); } /** * @test */ public function properApiKeyReturnsTokenInResponse() { $this->apiKeyService->getByKey('foo')->willReturn((new ApiKey())->setId(5)) ->shouldBeCalledTimes(1); $request = ServerRequestFactory::fromGlobals()->withParsedBody([ 'apiKey' => 'foo', ]); $response = $this->action->__invoke($request, new Response()); $this->assertEquals(200, $response->getStatusCode()); $response->getBody()->rewind(); $this->assertTrue(strpos($response->getBody()->getContents(), '"token"') > 0); } /** * @test */ public function invalidApiKeyReturnsErrorResponse() { $this->apiKeyService->getByKey('foo')->willReturn((new ApiKey())->setEnabled(false)) ->shouldBeCalledTimes(1); $request = ServerRequestFactory::fromGlobals()->withParsedBody([ 'apiKey' => 'foo', ]); $response = $this->action->__invoke($request, new Response()); $this->assertEquals(401, $response->getStatusCode()); } }