php – Laravel Testing – 与Mockery一起抛出异常

前端之家收集整理的这篇文章主要介绍了php – Laravel Testing – 与Mockery一起抛出异常前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我对Laravel和一般的单元测试都很陌生.我正在尝试为我的AccountController编写一些测试,但我遇到了一个障碍.

我正在使用Sentry来处理站点中的用户和组.我正在尝试测试我的控制器是否正在处理Sentry抛出的异常.所以我处理登录POST的控制器方法如下所示:

public function postLogin(){

    $credentials = array(
        'email' => Input::get('email'),'password' => Input::get('password')
    );

    try{
        $user = $this->authRepo->authenticate($credentials,true);
        return Redirect::route('get_posts');
    }
    catch (Exception $e){
        $message = $this->getLoginErrorMessage($e);
        return View::make('login',array('errorMsg' => $message));
    }
}

authRepository只是一个使用Sentry来处理身份验证的存储库.现在我想测试一下,如果未指定电子邮件地址,则抛出LoginrequiredException并且用户会看到错误消息.这是我的测试:

public function testPostLoginNoEmailSpecified(){

    $args = array(
        'email' => 'test@test.com'
    );

    $this->authMock
        ->shouldReceive('authenticate')
        ->once()
        ->andThrow(new Cartalyst\Sentry\Users\LoginrequiredException);

    $this->action('POST','MyApp\Controllers\AccountController@postLogin',$args);

    $this->assertViewHas('errorMsg','Please enter your email address.');
}

但是,测试没有通过.它出于某种原因吐出来的是:

There was 1 error:

1) AccountControllerTest::testPostLoginNoEmailSpecified
Cartalyst\Sentry\Users\LoginrequiredException:

我是否错误地使用了andThrow()方法?如果有人能够了解正在发生的事情,那将非常感激.

提前致谢!

所以我实际上只是想出了问题.事实证明,我的单元测试根本不是问题,但实际上只是一个命名空间问题.我忘记了Exception类的反斜杠.所以在我的控制器中应该是:
try{
    $user = $this->authRepo->authenticate($credentials,true);
    return Redirect::route('get_posts');
}
catch (\Exception $e){
    $message = $this->getLoginErrorMessage($e);
    return View::make('account.login',array('errorMsg' => $message));
}
原文链接:https://www.f2er.com/laravel/137962.html

猜你在找的Laravel相关文章