Laravel 测试之:测试模拟器

介绍

测试 Laravel 应用时,有时候你可能想要「模拟」实现应用的部分功能的行为,从而避免该部分在测试过程中真正执行。例如,控制器执行过程中会触发一个事件( Events ),你想要模拟这个事件的监听器,从而避免该事件在测试这个控制器时真正执行。如上可以让你仅测试控制器的 HTTP 响应情况,而不用去担心触发事件。当然,你可以在单独的测试中测试该事件的逻辑。

Laravel 针对事件、任务和 facades 的模拟提供了开箱即用的辅助函数。这些辅助函数基于 Mockery 封装而成,使用非常简单,无需你手动调用复杂的 Mockery 函数。当然,你也可以使用 Mockery 或者 PHPUnit 创建自己的模拟器。

任务模拟

你可以使用 Bus facade 的 fake 方法来模拟任务执行,测试的时候任务不会被真实执行。使用 fakes 的时候,断言一般出现在测试代码的后面:

  1. <?php
  2. namespace Tests\Feature;
  3. use Tests\TestCase;
  4. use App\Jobs\ShipOrder;
  5. use Illuminate\Support\Facades\Bus;
  6. use Illuminate\Foundation\Testing\WithoutMiddleware;
  7. use Illuminate\Foundation\Testing\DatabaseMigrations;
  8. use Illuminate\Foundation\Testing\DatabaseTransactions;
  9. class ExampleTest extends TestCase
  10. {
  11. public function testOrderShipping()
  12. {
  13. Bus::fake();
  14. // 处理订单发货...
  15. Bus::assertDispatched(ShipOrder::class, function ($job) use ($order) {
  16. return $job->order->id === $order->id;
  17. });
  18. // 断言任务并没有被执行...
  19. Bus::assertNotDispatched(AnotherJob::class);
  20. }
  21. }

事件模拟

你可以使用 Event facade 的 fake 方法来模拟事件监听,测试的时候不会触发事件监听器运行。然后你就可以断言事件运行了,甚至可以检查它们收到的数据。使用 fakes 的时候,断言一般出现在测试代码的后面:

  1. <?php
  2. namespace Tests\Feature;
  3. use Tests\TestCase;
  4. use App\Events\OrderShipped;
  5. use App\Events\OrderFailedToShip;
  6. use Illuminate\Support\Facades\Event;
  7. use Illuminate\Foundation\Testing\WithoutMiddleware;
  8. use Illuminate\Foundation\Testing\DatabaseMigrations;
  9. use Illuminate\Foundation\Testing\DatabaseTransactions;
  10. class ExampleTest extends TestCase
  11. {
  12. /**
  13. * 测试订单发货.
  14. */
  15. public function testOrderShipping()
  16. {
  17. Event::fake();
  18. // 处理订单发货...
  19. Event::assertDispatched(OrderShipped::class, function ($e) use ($order) {
  20. return $e->order->id === $order->id;
  21. });
  22. Event::assertNotDispatched(OrderFailedToShip::class);
  23. }
  24. }

邮件模拟

你可以使用 Mail facade 的 fake 方法来模拟邮件发送,测试时不会真的发送邮件。然后你可以断言 mailables 发送给了用户,甚至可以检查他们收到的数据. 使用 fakes 时,断言一般在测试代码的后面:

  1. <?php
  2. namespace Tests\Feature;
  3. use Tests\TestCase;
  4. use App\Mail\OrderShipped;
  5. use Illuminate\Support\Facades\Mail;
  6. use Illuminate\Foundation\Testing\WithoutMiddleware;
  7. use Illuminate\Foundation\Testing\DatabaseMigrations;
  8. use Illuminate\Foundation\Testing\DatabaseTransactions;
  9. class ExampleTest extends TestCase
  10. {
  11. public function testOrderShipping()
  12. {
  13. Mail::fake();
  14. // 处理订单发货...
  15. Mail::assertSent(OrderShipped::class, function ($mail) use ($order) {
  16. return $mail->order->id === $order->id;
  17. });
  18. // 断言一封邮件已经发送给了指定用户...
  19. Mail::assertSent(OrderShipped::class, function ($mail) use ($user) {
  20. return $mail->hasTo($user->email) &&
  21. $mail->hasCc('...') &&
  22. $mail->hasBcc('...');
  23. });
  24. // 断言 mailable 没有发送...
  25. Mail::assertNotSent(AnotherMailable::class);
  26. }
  27. }

通知模拟

你可以使用 Notification facade 的 fake 方法来模拟通知发送,测试的时候并不会真的发送通知。然后你可以断言 通知 已经发送给你的用户,甚至可以检查他们收到的数据。使用 fakes 时, 断言一般出现在测试代码的后面.

  1. <?php
  2. namespace Tests\Feature;
  3. use Tests\TestCase;
  4. use App\Notifications\OrderShipped;
  5. use Illuminate\Support\Facades\Notification;
  6. use Illuminate\Foundation\Testing\WithoutMiddleware;
  7. use Illuminate\Foundation\Testing\DatabaseMigrations;
  8. use Illuminate\Foundation\Testing\DatabaseTransactions;
  9. class ExampleTest extends TestCase
  10. {
  11. public function testOrderShipping()
  12. {
  13. Notification::fake();
  14. // 处理订单发货...
  15. Notification::assertSentTo(
  16. $user,
  17. OrderShipped::class,
  18. function ($notification, $channels) use ($order) {
  19. return $notification->order->id === $order->id;
  20. }
  21. );
  22. // 断言通知已经发送给了指定用户...
  23. Notification::assertSentTo(
  24. [$user], OrderShipped::class
  25. );
  26. // 断言通知没有发送...
  27. Notification::assertNotSentTo(
  28. [$user], AnotherNotification::class
  29. );
  30. }
  31. }

队列模拟

你可以使用 Queue facade 的 fake 方法来模拟任务队列,测试的时候并不会真的把任务放入队列。然后你可以断言任务被放进了队列,甚至可以检查它们收到的数据。使用 fakes 的时候,断言一般出现在测试代码的后面。

  1. <?php
  2. namespace Tests\Feature;
  3. use Tests\TestCase;
  4. use App\Jobs\ShipOrder;
  5. use Illuminate\Support\Facades\Queue;
  6. use Illuminate\Foundation\Testing\WithoutMiddleware;
  7. use Illuminate\Foundation\Testing\DatabaseMigrations;
  8. use Illuminate\Foundation\Testing\DatabaseTransactions;
  9. class ExampleTest extends TestCase
  10. {
  11. public function testOrderShipping()
  12. {
  13. Queue::fake();
  14. // 处理订单发货...
  15. Queue::assertPushed(ShipOrder::class, function ($job) use ($order) {
  16. return $job->order->id === $order->id;
  17. });
  18. // 断言任务进入了指定队列
  19. Queue::assertPushedOn('queue-name', ShipOrder::class);
  20. // 断言任务没有进入队列
  21. Queue::assertNotPushed(AnotherJob::class);
  22. }
  23. }

Storage 模拟

利用 Storage facade 的 fake 方法,你可以轻松地生成一个模拟的磁盘,结合 UploadedFile 类的文件生成工具,极大地简化了文件上传测试。例如:

  1. <?php
  2. namespace Tests\Feature;
  3. use Tests\TestCase;
  4. use Illuminate\Http\UploadedFile;
  5. use Illuminate\Support\Facades\Storage;
  6. use Illuminate\Foundation\Testing\WithoutMiddleware;
  7. use Illuminate\Foundation\Testing\DatabaseMigrations;
  8. use Illuminate\Foundation\Testing\DatabaseTransactions;
  9. class ExampleTest extends TestCase
  10. {
  11. public function testAvatarUpload()
  12. {
  13. Storage::fake('avatars');
  14. $response = $this->json('POST', '/avatar', [
  15. 'avatar' => UploadedFile::fake()->image('avatar.jpg')
  16. ]);
  17. // 断言文件已存储
  18. Storage::disk('avatars')->assertExists('avatar.jpg');
  19. // 断言文件不存在
  20. Storage::disk('avatars')->assertMissing('missing.jpg');
  21. }
  22. }

Facades 模拟

不同于传统的静态函数的调用, facades 也是可以被模拟的,相对静态函数来说这是个巨大的优势,即使你在使用依赖注入,测试时依然会非常方便。在很多测试中,你可能经常想在控制器中模拟对 Laravel facade 的调用。比如下面控制器中的行为:

  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Support\Facades\Cache;
  4. class UserController extends Controller
  5. {
  6. /**
  7. * 显示网站的所有用户
  8. *
  9. * @return Response
  10. */
  11. public function index()
  12. {
  13. $value = Cache::get('key');
  14. //
  15. }
  16. }

我们可以通过 shouldReceive 方法来模拟 Cache facade ,此函数会返回一个 Mockery 实例,由于对 facade 的调用实际上都是由 Laravel 的 服务容器 管理的,所以 facade 能比传统的静态类表现出更好的测试便利性。接下来,让我们来模拟一下 Cache facade 的 get 方法的调用:

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

{note} 不可以模拟 Request facade,测试时,如果需要传递指定的数据请使用 HTTP 辅助函数,例如 getpost。类似的,请在你的测试中通过调用 Config::set 来模拟 Config facade。


{note} 欢迎任何形式的转载,但请务必注明出处,尊重他人劳动共创开源社区。

转载请注明:本文档由 Laravel China 社区 [laravel-china.org] 组织翻译,详见 翻译召集帖

文档永久地址: http://d.laravel-china.org