我刚刚添加了 tymondesigns/jwt-auth 以支持 token 身份验证,因此我的测试用例失败了,因为 header 参数上没有 token 。我如何模拟(使用 Mockery
)一个组件来绕过这个?
注意: $this->be()
不起作用
最佳答案
替代 用于在测试执行期间通过特定用户验证请求。这是怎么做的:
# tests/TestCase.php
/**
* Return request headers needed to interact with the API.
*
* @return Array array of headers.
*/
protected function headers($user = null)
{
$headers = ['Accept' => 'application/json'];
if (!is_null($user)) {
$token = JWTAuth::fromUser($user);
JWTAuth::setToken($token);
$headers['Authorization'] = 'Bearer '.$token;
}
return $headers;
}
然后在我的测试中,我像这样使用它:
# tests/StuffTest.php
/**
* Test: GET /api/stuff.
*/
public function testIndex()
{
$url = '/api/stuff';
// Test unauthenticated access.
$this->get($url, $this->headers())
->assertResponseStatus(400);
// Test authenticated access.
$this->get($url, $this->headers(User::first()))
->seeJson()
->assertResponseOk();
}
希望这对大家有帮助。快乐编码!
关于unit-testing - 如何在 Laravel 5 中模拟 tymondesigns/jwt-auth?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30060360/