5

我在 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'),
  ]);
}
4

2 回答 2

11

尝试改用这个:

\Hash::make('test@test.com'),

使用bcrypt()全局助手而不是Hash::make()

另外,将其添加到setUp()方法中:

parent::setUp();
于 2016-12-30T12:16:10.573 回答
-1
  1. 您可以使用 Laravel 附带的DatabaseMigrationsorDatabaseTransactions特征,因此您不必手动删除用户。

  2. 您可以在 User 类中添加一个 Mutator,它会在创建 User 时自动散列密码。



    // https://laravel.com/docs/5.3/eloquent-mutators

    public function setPasswordAttribute($value) {
        $this->attributes['password'] = bcrypt($value);
    }

于 2016-12-30T12:22:41.057 回答