简体   繁体   中英

How to mock laravel helper function request

How do you mock the request() helper function?

For example if I have a function that makes a call

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

How do mock that call, I have tried the following but I get an error that it was never called

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

If you look at the request() helper ( https://github.com/laravel/framework/blob/05da44d6823c2923597519ac10151f5827a24f80/src/Illuminate/Foundation/helpers.php#L602 ) it's retrieving an instance of the Request class from the Container. After you set up your mock Request class and add your expectations you need to bind it to the Container:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM