首页 > 解决方案 > 我如何测试一个 Laravel 工作在测试中分派另一个工作?

问题描述

我有以下 Laravel 工人:

namespace App\Jobs;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;

use App\Lobs\AnotherJob;

class MyWorker implements ShouldQueue
{
    use Dispatchable;
    use InteractsWithQueue;
    use Queueable;

    public function handle(): void
    {
       AnotherJob::dispatch();
    }
}

我想对我的工作调度进行单元测试AnotherJob

namespace Tests;

use Illuminate\Foundation\Testing\TestCase;

class TestMyWorker extends TestCase
{
  public function testDispachesAnotherJob()
  {
    MyWorker::dispatchNow();
    //Assert that AnotherJob is dispatched
  }
}

你知道我怎么能看到它AnotherJob::dispatch()实际上被称为?

标签: phplaravelphpunitassertjobs

解决方案


Laravel 有队列模拟/伪造可以处理这个问题。试试这个:

namespace Tests;

use Illuminate\Foundation\Testing\TestCase;
use Illuminate\Support\Facades\Queue;
use App\Jobs\MyWorker;
use App\Jobs\AnotherJob;

class TestMyWorker extends TestCase
{
  public function testDispachesAnotherJob()
  {
    Queue::fake();
    MyWorker::dispatchNow();
    Queue::assertPushed(MyWorker::class);
    Queue::assertPushed(AnotherJob::class);
  }
}

推荐阅读