Laravel Mock Facade应该不会像预期的那样工作

时间:2015-06-26 04:15:24

标签: php laravel testing phpunit mockery

此测试失败,因为它永远不会通过Auth::attempt()函数调用。我发了一个dd()声明来证明它不会成功。

如果我删除了两个Auth::shouldReceive()代码,则会运行第一个dd()语句。

如果我保留一个Auth::shouldReceive(),则第一个dd()语句永远不会被调用。

如果我添加->twice()而不是->once(),则不会抛出任何奇怪的错误,因为它应该抱怨它只被调用一次。

如果我在控制器的第一行放置dd()语句,则在我删除Auth::shouldReceive()函数之前它不会运行。

我一定是个愚蠢的东西,我没有得到,因为我已经看了很多教程。

控制器

public function postLogin() {
    $email = Input::get('email');
    $password = Input::get('password');
    dd('Does not make it to this line with auth::shouldReceive() in the test');
    if (Auth::attempt(array('email'=>$email, 'password'=>$password))) {
        dd("Doesn't make it here either with auth::shouldReceive() mock.");
        $user = Auth::user();
        Session::put('user_timezone', $user->user_timezone);
        return Redirect::to('user/dashboard')->with('message', 'You are now logged in!');
    } else {
        return Redirect::to('user/login')->with('message', 'Your username/password combination was incorrect')->withInput();
    }
}

测试

public function testUserTimezoneSessionVariableIsSetAfterLogin()
{
    $user = new User();
    $user->user_timezone = 'America/New_York';
    $user->email = 'test@test.com';
    $user->password = 'test';

    $formData = [
        'email' => 'test@test.com',
        'password' => '123',
    ];

    \Auth::shouldReceive('attempt')->once()->with($formData)->andReturn(true);
    \Auth::shouldReceive('user')->once()->andReturn($user);

    $response = $this->call('POST', '/user/login', $formData);
    $this->assertResponseStatus($response->getStatusCode());


    $this->assertSessionHas('user_timezone');
}

1 个答案:

答案 0 :(得分:1)

问题是我在UserController的构造函数中有parent::construct()。显然这会导致模拟问题。

我认为有parent::construct()这是必要的,因为我在UserController中有一个自定义构造函数。