我试图用嘲弄来模拟雄辩的模型。模型通过注入控制器
__construct(Post $model){$this->model=$model}
现在我find()
在控制器中调用函数
$post = $this->model->find($id);
这是 PostsController 的测试
class PostsTest extends TestCase{
protected $mock;
public function setUp() {
parent::setUp();
$this->mock = Mockery::mock('Eloquent', 'Posts'); /*According to Jeffrey Way you have to add Eloquent in this function call to be able to use certain methods from model*/
$this->app->instance('Posts', $this->mock);
}
public function tearDown() {
Mockery::close();
}
public function testGetEdit()
{
$this->mock->shouldReceive('find')->with(1)->once()->andReturn(array('id'=>1));
$this->call('GET', 'admin/posts/edit/1');
$this->assertViewHas('post', array('id'=>1));
}
}
运行 PhpUnit 给我错误:
Fatal error: Using $this when not in object context in ...\www\l4\vendor\mockery\mockery\library\Mockery\Generator.php(130) : eval()'d code on line 73
这显然是因为find()
被声明为静态函数。现在,代码可以正常工作,所以我怎样才能成功地模拟 Eloquent 模型而不会失败。由于我们依赖依赖注入,所以我必须find()
非静态调用,否则我只能做Post::find()
.
我想出的一种解决方案是find()
在BaseModel
public function nsFind($id, $columns = array('*'))
{
return self::find($id, $columns);
}
但这是一个很大的痛苦,因为函数必须有不同的名称!
我做错了什么还是你有更好的想法?