Rspec 测试延迟作业

标签 rspec delayed-job

我的应用程序中有一些复杂的、长时间运行的delayed_job 进程。我正在使用 Rspec 来测试进程中使用的各个方法和类,但我也想使用不同的测试数据执行许多端到端的后台作业。

我在delayed_job wiki上找不到任何关于这个的东西,这个SO问题看起来很有趣,但我真的不明白这里发生了什么。
What's the best way to test delayed_job chains with rSpec?

我可以很容易地用工厂设置测试数据,然后调用启动后台处理的类。我预计测试需要很长时间才能完成。

编辑后台代码

class Singleplex
    def perform(batch_id,user)   
      batch = start_batch(batch_id,user)
        ... do lots of stuff ...
    end
    handle_asynchronously :perform, queue: :singleplex, :run_at => Proc.new { 1.second.from_now }

规范/工厂/批处理.rb
FactoryGirl.define do
  factory :batch do
    batch_type 'singleplex'
    name 'valid panel'
    status 'ready'
  end

  factory :batch_detail do
    chrom 7
    chrom_start 140435012
    chrom_end 140435012
    target_offset 150
    padding 4
    primer3_parameter_id 1
    snp_mask 't'
    status 'ready'
    batch
  end
end

然后像这样运行测试
describe Batch do  
  it 'runs Singleplex for a valid panel' do
    batch = FactoryGirl.create(:batch)
    user = User.find(1)
    status =  Singleplex.new.perform(batch.id,user)
    expect(status.should == true)
  end
end

我有两个问题要解决:

1)如何告诉测试等到 delay_job 调用完成后再验证结果?

2)为了验证结果,我需要检查多个表中的值。在 Rspec 中执行此操作的最佳方法是什么?

编辑

我应该补充一下,我得到了一个 delay_job 对象,所以状态检查当然会失败。这些工作通常至少需要 10 分钟。
1) Batch runs Singleplex for a valid panel
     Failure/Error: expect(status.should == true)
       expected: true
            got: #<Delayed::Backend::ActiveRecord::Job id: nil, priority: 0, attempts: 0, handler: "--- !ruby/object:Delayed::PerformableMethod\nobject:...", last_error: nil, run_at: nil, locked_at: nil, failed_at: nil, locked_by: nil, queue: nil, created_at: nil, updated_at: nil> (using ==)

最佳答案

有几种方法可以做到这一点。所有这些都要求您在代码中执行作业。

方法 1:将作业排队然后告诉 DelayedJob::Worker 的测试完成它。

describe Batch do  
  it 'runs Singleplex for a valid panel' do
    batch = FactoryGirl.create(:batch)
    user = User.find(1)
    Singleplex.new.perform(batch.id,user)
    expect(Delayed::Worker.new.work_off).to eq [1, 0] # Returns [successes, failures]
    # Add expectations which check multiple tables to make sure the work is done
  end
end

方法 2:在禁用排队的情况下运行相关作业并检查所需结果的测试。您可以调用 Delayed::Worker.delay_jobs = false 延迟排队。在您的测试配置或 before 中的某处堵塞。
before(:each) do
  Delayed::Worker.delay_jobs = false
end
describe Batch do  
  it 'runs Singleplex for a valid panel' do
    batch = FactoryGirl.create(:batch)
    user = User.find(1)
    Singleplex.new.perform(batch.id,user)
    # expectations which check that the work is done
  end
end

然而,cause issues with callbacks 已经知道这种方法。 .

方法 3:编写一个观察者来监视任何创建并运行它们的新作业。这样您就不必在测试中手动声明“work_off”。 Artsy有一个gist for this .

在其他地方进行测试以确保作业按预期排队也是一个好主意
it "queues welcome when a user is created" do
  expect(Delayed::Job.count).to eq 0
  # Create user step
  expect(Delayed::Job.count).to eq 1 # You should really be looking for the count of a specific job.
end

关于Rspec 测试延迟作业,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26577343/

相关文章:

ruby - 比较 float 的随机 RSpec 失败(Eq 匹配器)

rspec - 用法拉第和 Rspec 打桩

ruby-on-rails - 清除生产中延迟作业中的工作缓存

ruby-on-rails - 通过在应用程序启动时启动工作人员来初始化延迟作业 gem

ruby-on-rails - 每隔几秒运行一次后台作业

ruby-on-rails-3 - 您可以更改delay_job worker 的轮询时间间隔(5秒)吗?

ruby - 了解 delayed_job 状态

arrays - rspec 数组应该如何包含?另一个数组

ruby - 如何使用 rack::test 发送自定义 header ?

ruby - 让 rspec 在 RubyMine 中工作