Summary
We are writing unit tests to test the creation and invalidation of JWT tokens and receiving a "The token could not be parsed from the request" error back from a JWTException every time we try to JWTAuth::invalidate the token.
Description
Inside our controller, to create a user token, we are passing through the user email address and then returning the JWT token.
Afterwards, we are destroying the token by invalidating it using invalidateToken method and passing through the token by sending an Authorization header.
public function invalidateToken()
{
try {
JWTAuth::invalidate(JWTAuth::getToken());
return Response::json(['status' => 'success'], 200);
} catch (JWTException $e) {
return Response::json(['status' => 'error', 'message' => $e->getMessage()], 401);
}
}
This works perfectly by using Postman as well as PHPStorms Restful client.
When we try to write a test for this method, we are faced with an error response and a "The token could not be parsed from the request" error message.
Our test is as follow:
public function testInvalidateToken()
{
$createUserToken = $this->call('POST', '/token/create', ['email' => 'test@test.com']);
$user = $this->parseJson($createUserToken);
$response = $this->call('POST', '/token/invalidate',
[/* params */], [/* cookies */], [/* files */], ['HTTP_Authorization' => 'Bearer '.$user->token]);
// var_dump($user->token);
// die();
$data = $this->parseJson($response);
$this->assertEquals($data->status, 'success');
$this->assertEquals($data->status, '200');
}
We are using Laravel 5.1 (which has the cookies as a parameter before the server parameter)
PHP version 5.6.10
PHPUnit 3.7.28
* EDIT * Updated to PHPUnit 4.7.6 and still failing to send through Authorization header.
* SOLUTION *
In my controller __construct method, I have these few lines of code that is running and sorted out my issue.
if ((\App::environment() == 'testing') && array_key_exists("HTTP_Authorization", Request::server())) {
JWTAuth::setRequest(\Route::getCurrentRequest());
}