我有一个用于验证帐户的系统的应用程序(注册 - >获取带有激活链接的电子邮件 - >帐户已验证)。该验证流程是可选的,可以使用配置值关闭:
// 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时它是否都有效。测试的行为符合预期。
知道为什么控制器失败以及如何解决这个问题?
答案 0 :(得分:8)
如果我理解你的问题 - 你正在寻找“如何设置配置参数”,那么你可以使用Config::set($key, $value)
答案 1 :(得分:4)
正确答案在上方
Config::set($key, $value)
示例
//Not forget to add namespace using class.
use Config;
//Example to set config. (configFile.key)
Config::set('auth.enable_verification', false);