我在我的路由中使用模型绑定将模型传递给我的控制器操作,并希望能够编写测试。如果测试不需要访问数据库,那将是可取的。
在本例中使用用户名绑定模型,然后在路由定义中使用。
// routes.php
Route::model('user', function($value, $route)
{
return User::whereUsername($value)->firstOrFail();
});
Route::get('users/{user}', 'UsersController@show');
在我的控制器中,绑定用户被传递给操作。
// UsersController.php
function show(User $user)
{
return View::make('users.show', compact('user');
}
现在,在我的测试中,我试图模拟用户。
// UsersControllerTest.php
public function setUp()
{
parent::setUp();
$this->mock = Mockery::mock('Eloquent', 'User');
$this->app->instance('User', $this->mock);
}
public function testShowPage()
{
$this->mock->shouldReceive('whereSlug')->once()->andReturn($this->mock);
$this->action('GET', 'UsersController@show');
$this->assertResponseOk();
$this->assertViewHas('user');
}
运行此测试时,我收到以下错误:
ErrorException: Argument 1 passed to UsersController::show() must be an instance of User, instance of Illuminate\Database\Eloquent\Builder given
我也希望能够使用return User::firstByAttribtues($value);
,但 Mockery 不会让我模拟受保护的方法 - 有什么办法可以解决这个问题吗?