如何在线程或子进程中运行和停止delayed_jobs工作线程以进行测试

发布于 2024-10-21 21:25:50 字数 330 浏览 0 评论 0原文

我希望能够执行一些需要工作人员运行的测试。

为了实现这一点,创建了这个测试辅助方法:

def with_delayed_jobs
  t=Thread.new {Delayed::Worker.new.start}
  sleep(5)
  yield
  t.exit
end

所以我可以在我的测试中编写

with_delayed_jobs {
  ___test_content___
}

不幸的是,工作人员似乎不以这种方式运行。也许我可以通过流程来做到这一点。有人知道如何实现这一目标吗?

I would like to be able to perform some tests that require a worker to be running.

In order to accomplish this created this test helper method:

def with_delayed_jobs
  t=Thread.new {Delayed::Worker.new.start}
  sleep(5)
  yield
  t.exit
end

So I can write in my tests

with_delayed_jobs {
  ___test_content___
}

Unfortunately, the worker doesn't seem to run this way. Maybe I can do it with processes. Does anybody have an idea on how to accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜光 2024-10-28 21:25:50

您可以使用以下命令运行作业表中当前的作业:

 Delayed::Worker.new(
          :max_priority => nil,
          :min_priority => nil,
          :quiet => true
        ).work_off

文档在这里,尽管它们很稀疏。

You can run the jobs that are currently in your jobs table with this:

 Delayed::Worker.new(
          :max_priority => nil,
          :min_priority => nil,
          :quiet => true
        ).work_off

Docs are here, although they are sparse.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文