我很难理解如何在另一份工作中测试一份工作。我将提供代码示例。
这是我的主要工作班,我们可以称之为father
final class FatherJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* Create a new job instance.
*/
public function __construct()
{
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
\Log::info("Hello World, I'm the father.");
dispatch(new ChildJob());
}
}
然后我们有了孩子的工作
final class ChildJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* Create a new job instance.
*/
public function __construct()
{
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
\Log::info("I'm the child");
}
}
测试已设置如下
final class JobTest extends TestCase
{
/** @test */
public function it_has_been_dispatched()
{
$this->expectsJobs(ChildJob::class);
dispatch(New FatherJob ());
}
}
这个测试失败了,当然这是问题的全部要点,但为什么呢?
我已经完成了一些挖掘,我认为问题依赖于withoutJobs()
内的expectsJobs()
调用,似乎withoutJobs()
会破坏当前队列,因此它不会; t允许调用其余的工作,但也许我完全偏离了轨道。
如果打算采用这种逻辑,我该如何创建一个允许我检查作业中的作业是否被调用的测试套件?
提前谢谢。
答案 0 :(得分:1)
expectJobs模拟所有作业引擎。你不能使用dispacth()。
$this->expectsJobs(ChildJob::class);
$job = new FatherJob();
$job->handle();