我在 Laravel 中有一个单元测试,用于测试如下所示的 API 调用,但是在运行它时出现以下运行时错误:
RuntimeException: A facade root has not been set.
我在 setup 方法中创建了一个用户,目的是在 tearDown() 方法中再次删除它,然后运行我的身份验证测试。
首先,有没有更好的方法来做我想做的事?例如在不接触数据库的情况下模拟用户?其次,如何设置“立面根”或该错误究竟意味着什么?为了创建虚拟用户,我已经尝试不打扰该特定字段的哈希值,但是错误似乎转移到模型中,其中(再次)使用了 Hash 外观类。
是否有任何额外的步骤来设置环境,以便可以在测试中使用这些外观?
提前致谢。
use Illuminate\Support\Facades\Hash;
/*
* Make sure the structure of the API call is sound.
*/
public function testAuthenticateFailed()
{
$this->json('POST', $this->endpoint,
[ 'email' => 'test@test.com',
'password' => 'password',
])
->seeJsonStructure([
'token'
]);
}
//create a user if they don't already exist.
public function setup()
{
$user = User::create([
'company_id' => 9999,
'name'=>'testUser',
'email' => 'test@test.com',
'password' => 'password',
'hashed_email' => Hash:make('test@test.com'),
]);
}