gpt4 book ai didi

laravel - 如何测试 laravel 连续作业?

转载 作者:行者123 更新时间:2023-11-28 20:27:33 24 4
gpt4 key购买 nike

我正在使用 Laravel 5.6 并且应该为某些功能创建特性测试。在特定条件下,如果第二个作业从第一个执行,我如何测试 2 个作业的调度。

看起来像这样:

class FirstJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;


public function handle()
{
dispatch(new SecondJob());
}
}

顺序断言看不到第二个Job。

Queue::assertPushed(FirstJob::class);//断言

Queue::assertPushed(SecondJob::class);//未断言

最佳答案

只需调度 firstJob 然后调用 handle() 方法

例子:

$new_job = new FirstJob();
$new_job->dispatch();

Queue::assertPushed(FirstJob::class, function(){
// check some job property against the expected
});

$new_job->handle();

Queue::assertPushed(SecondJob::class, function(){
// check some job property against the expected
});

关于laravel - 如何测试 laravel 连续作业?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49196203/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com