如何模拟 laravel 辅助函数请求

How to mock laravel helper function request

如何模拟 request() 辅助函数?

例如,如果我有一个调用函数

$name = request()->input('name')

如何模拟该调用,我尝试了以下方法,但出现从未调用过的错误

$requestMock = $this->mock(Request::class);
$requestMock->shouldReceive('input')->once()->andReturn($name);

如果您查看 request() 帮助程序 (https://github.com/laravel/framework/blob/05da44d6823c2923597519ac10151f5827a24f80/src/Illuminate/Foundation/helpers.php#L602),它正在从容器中检索请求 class 的实例。设置模拟请求 class 并添加您的期望后,您需要将其绑定到容器:

$this->app->instance(‘request’, $mock);