I have a controller that calls an api outside like this:
public function getUserData(Request $request)
{
// api connection is established using guzzle and into $client variable
$userData = $client->get($request->user_id);
// ... process data
}
then in my test I do this.
public function testUserData()
{
$userData = $this->post('user.data', [
'user_id' => 1
]);
$this->assertEquals($userData['user_id'], 1);
}
The test is working but I want to mock the api call so that it will not actually fire that call outside of the application.
You could do it like this:
So, basically:
Then in your test: