我试图在功能测试中拦截带有Codeception的UnauthorizedException。好吧,实际上我的功能测试是由代码触发的Laravel测试。所以,我尝试了两种方法:
/** @test
*
* @expectedException UnauthorizedException
*/
public function test_exception()
{
$this->visit("/associations/1/edit")
}
或者
/** @test
*
*/
public function test_exception()
{
\PHPUnit_Framework_TestCase::setExpectedException(UnauthorizedException::class);
$this->visit("/associations/1/edit")
}
在我的控制器中,我只是去测试它:
throw new UnauthorizedException();
在这两种情况下,它只是说:
Failed asserting that exception of type "UnauthorizedException" is thrown.
一切似乎都很好,但似乎没有效果......任何想法为什么???
编辑:我在控制器中的编辑方法
public function edit($id)
{
$association = Association::findOrFail($id);
$federation = $association->federation;
if (Auth::user()->cannot('edit', $association)) { // I have checked with dd() my test goes here.
throw new UnauthorizedException();
}
$users = User::all();
$federations = Federation::all();
return view('associations.form', compact('association', 'users', 'federations', 'federation'));
}
答案 0 :(得分:0)
我终于从here获得了解决方案:
基本的想法,我想,是异常被捕获并发送到Handler返回视图。
因此,对于测试,您应该在Handler.php中包含条件:
public function render($request, Exception $e)
{
if (App::environment() == 'testing') {
throw $e;
}
// Your exception management...
现在抛出异常!