Laravel 单元测试 - 根据测试方法更改配置值
2022-08-30 19:59:05
我有一个应用程序,带有一个系统来验证帐户(注册->收到带有激活链接的电子邮件->帐户验证)。该验证流程是可选的,可以使用配置值关闭:
// config/auth.php
return [
// ...
'enable_verification' => true
];
我想测试注册控制器:
- 在这两种情况下,它都应该重定向到主页
- 当验证处于开启状态时,主页应显示消息“电子邮件已发送”
- 当验证关闭时,主页应显示消息“帐户已创建”
- 等。
我的测试方法:
public function test_UserProperlyCreated_WithVerificationDisabled()
{
$this->app['config']->set('auth.verification.enabled', false);
$this
->visit(route('frontend.auth.register.form'))
->type('Test', 'name')
->type('test@example.com', 'email')
->type('123123', 'password')
->type('123123', 'password_confirmation')
->press('Register');
$this
->seePageIs('/')
->see(trans('auth.registration.complete'));
}
public function test_UserProperlyCreated_WithVerificationEnabled()
{
$this->app['config']->set('auth.verification.enabled', true);
$this
->visit(route('frontend.auth.register.form'))
->type('Test', 'name')
->type('test@example.com', 'email')
->type('123123', 'password')
->type('123123', 'password_confirmation')
->press('Register');
$this
->seePageIs('/')
->see(trans('auth.registration.needs_verification'));
}
调试时,我注意到控制器方法内部的配置值始终设置为配置文件中的值,无论我用我的$this->app['config']->set...
我对用户存储库本身进行了其他测试,以检查它在验证为ON或OFF时是否有效。在那里,测试的行为符合预期。
任何想法为什么它失败的控制器以及如何解决这个问题?