はじめに

Laravel アプリケーションをテストする際、特定のアプリケーションの側面を「モック」して、特定のテスト中に実際に実行されないようにしたい場合があります。たとえば、イベントをディスパッチするコントローラーをテストする場合、テスト中に実際に実行されないようにイベントリスナーをモックしたいことがあります。これにより、イベントリスナーの実行を心配することなく、コントローラーの HTTP レスポンスのみをテストできます。イベントリスナーは独自のテストケースでテストできます。

Laravel は、イベント、ジョブ、およびその他のファサードをモックするための便利なメソッドを提供します。これらのヘルパーは主に Mockery の上に便利なレイヤーを提供するため、複雑な Mockery メソッド呼び出しを手動で行う必要がありません。

オブジェクトのモック

Laravel の サービスコンテナ を介してアプリケーションに注入されるオブジェクトをモックする場合、モックインスタンスを instance バインディングとしてコンテナにバインドする必要があります。これにより、コンテナはオブジェクト自体を構築するのではなく、オブジェクトのモックインスタンスを使用するよう指示されます:

  1. use App\Service;
  2. use Mockery;
  3. use Mockery\MockInterface;
  4. test('something can be mocked', function () {
  5. $this->instance(
  6. Service::class,
  7. Mockery::mock(Service::class, function (MockInterface $mock) {
  8. $mock->shouldReceive('process')->once();
  9. })
  10. );
  11. });
  1. use App\Service;
  2. use Mockery;
  3. use Mockery\MockInterface;
  4. public function test_something_can_be_mocked(): void
  5. {
  6. $this->instance(
  7. Service::class,
  8. Mockery::mock(Service::class, function (MockInterface $mock) {
  9. $mock->shouldReceive('process')->once();
  10. })
  11. );
  12. }

これをより便利にするために、Laravel の基本テストケースクラスが提供する mock メソッドを使用できます。たとえば、次の例は上記の例と同等です:

  1. use App\Service;
  2. use Mockery\MockInterface;
  3. $mock = $this->mock(Service::class, function (MockInterface $mock) {
  4. $mock->shouldReceive('process')->once();
  5. });

オブジェクトのいくつかのメソッドのみをモックする必要がある場合は、partialMock メソッドを使用できます。モックされていないメソッドは、呼び出されたときに通常通り実行されます:

  1. use App\Service;
  2. use Mockery\MockInterface;
  3. $mock = $this->partialMock(Service::class, function (MockInterface $mock) {
  4. $mock->shouldReceive('process')->once();
  5. });

同様に、オブジェクトを スパイ したい場合、Laravel の基本テストケースクラスは spy メソッドを提供しており、Mockery::spy メソッドの便利なラッパーとして機能します。スパイはモックに似ていますが、スパイはスパイとテストされているコードとの間の相互作用を記録し、コードが実行された後にアサーションを行うことができます:

  1. use App\Service;
  2. $spy = $this->spy(Service::class);
  3. // ...
  4. $spy->shouldHaveReceived('process');

ファサードのモック

従来の静的メソッド呼び出しとは異なり、ファサードリアルタイムファサードを含む)はモックできます。これは、従来の静的メソッドに対して大きな利点を提供し、従来の依存性注入を使用している場合と同じテスト可能性を提供します。テスト中、コントローラーのいずれかで発生する Laravel ファサードへの呼び出しをモックしたいことがよくあります。たとえば、次のコントローラーアクションを考えてみましょう:

  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Support\Facades\Cache;
  4. class UserController extends Controller
  5. {
  6. /**
  7. * Retrieve a list of all users of the application.
  8. */
  9. public function index(): array
  10. {
  11. $value = Cache::get('key');
  12. return [
  13. // ...
  14. ];
  15. }
  16. }

Cache ファサードへの呼び出しをモックするには、shouldReceive メソッドを使用します。これにより、Mockery モックのインスタンスが返されます。ファサードは実際には Laravel の サービスコンテナ によって解決され、管理されるため、通常の静的クラスよりもはるかにテスト可能です。たとえば、Cache ファサードの get メソッドへの呼び出しをモックしてみましょう:

  1. <?php
  2. use Illuminate\Support\Facades\Cache;
  3. test('get index', function () {
  4. Cache::shouldReceive('get')
  5. ->once()
  6. ->with('key')
  7. ->andReturn('value');
  8. $response = $this->get('/users');
  9. // ...
  10. });
  1. <?php
  2. namespace Tests\Feature;
  3. use Illuminate\Support\Facades\Cache;
  4. use Tests\TestCase;
  5. class UserControllerTest extends TestCase
  6. {
  7. public function test_get_index(): void
  8. {
  9. Cache::shouldReceive('get')
  10. ->once()
  11. ->with('key')
  12. ->andReturn('value');
  13. $response = $this->get('/users');
  14. // ...
  15. }
  16. }

Request ファサードをモックしてはいけません。代わりに、テストを実行する際に getpost などの HTTP テストメソッド に必要な入力を渡してください。同様に、Config ファサードをモックするのではなく、テスト内で Config::set メソッドを呼び出してください。

ファサードスパイ

ファサードを スパイ したい場合は、対応するファサードで spy メソッドを呼び出すことができます。スパイはモックに似ていますが、スパイはスパイとテストされているコードとの間の相互作用を記録し、コードが実行された後にアサーションを行うことができます:

  1. <?php
  2. use Illuminate\Support\Facades\Cache;
  3. test('values are be stored in cache', function () {
  4. Cache::spy();
  5. $response = $this->get('/');
  6. $response->assertStatus(200);
  7. Cache::shouldHaveReceived('put')->once()->with('name', 'Taylor', 10);
  8. });
  1. use Illuminate\Support\Facades\Cache;
  2. public function test_values_are_be_stored_in_cache(): void
  3. {
  4. Cache::spy();
  5. $response = $this->get('/');
  6. $response->assertStatus(200);
  7. Cache::shouldHaveReceived('put')->once()->with('name', 'Taylor', 10);
  8. }

時間との相互作用

テスト中、nowIlluminate\Support\Carbon::now() などのヘルパーによって返される時間を変更する必要がある場合があります。幸いなことに、Laravel の基本機能テストクラスには、現在の時間を操作するためのヘルパーが含まれています:

  1. test('time can be manipulated', function () {
  2. // Travel into the future...
  3. $this->travel(5)->milliseconds();
  4. $this->travel(5)->seconds();
  5. $this->travel(5)->minutes();
  6. $this->travel(5)->hours();
  7. $this->travel(5)->days();
  8. $this->travel(5)->weeks();
  9. $this->travel(5)->years();
  10. // Travel into the past...
  11. $this->travel(-5)->hours();
  12. // Travel to an explicit time...
  13. $this->travelTo(now()->subHours(6));
  14. // Return back to the present time...
  15. $this->travelBack();
  16. });
  1. public function test_time_can_be_manipulated(): void
  2. {
  3. // Travel into the future...
  4. $this->travel(5)->milliseconds();
  5. $this->travel(5)->seconds();
  6. $this->travel(5)->minutes();
  7. $this->travel(5)->hours();
  8. $this->travel(5)->days();
  9. $this->travel(5)->weeks();
  10. $this->travel(5)->years();
  11. // Travel into the past...
  12. $this->travel(-5)->hours();
  13. // Travel to an explicit time...
  14. $this->travelTo(now()->subHours(6));
  15. // Return back to the present time...
  16. $this->travelBack();
  17. }

さまざまな時間旅行メソッドにクロージャを提供することもできます。クロージャは、指定された時間で凍結された時間で呼び出されます。クロージャが実行されると、時間は通常通りに戻ります:

  1. $this->travel(5)->days(function () {
  2. // Test something five days into the future...
  3. });
  4. $this->travelTo(now()->subDays(10), function () {
  5. // Test something during a given moment...
  6. });

freezeTime メソッドを使用して現在の時間を凍結できます。同様に、freezeSecond メソッドは現在の時間を凍結しますが、現在の秒の開始時点で凍結します:

  1. use Illuminate\Support\Carbon;
  2. // Freeze time and resume normal time after executing closure...
  3. $this->freezeTime(function (Carbon $time) {
  4. // ...
  5. });
  6. // Freeze time at the current second and resume normal time after executing closure...
  7. $this->freezeSecond(function (Carbon $time) {
  8. // ...
  9. })

上記で説明したすべてのメソッドは、ディスカッションフォーラムで非アクティブな投稿をロックするなど、時間に敏感なアプリケーションの動作をテストするために主に役立ちます:

  1. use App\Models\Thread;
  2. test('forum threads lock after one week of inactivity', function () {
  3. $thread = Thread::factory()->create();
  4. $this->travel(1)->week();
  5. expect($thread->isLockedByInactivity())->toBeTrue();
  6. });
  1. use App\Models\Thread;
  2. public function test_forum_threads_lock_after_one_week_of_inactivity()
  3. {
  4. $thread = Thread::factory()->create();
  5. $this->travel(1)->week();
  6. $this->assertTrue($thread->isLockedByInactivity());
  7. }