我使用gem“rspec-sidekiq”来测试“sidekiq_retries_exhausted”。
这是我的工作人员:
class PostListingsWorker
include Sidekiq::Worker
sidekiq_options :retry => 0
sidekiq_retries_exhausted do |msg|
NotifyMailer.warn_email(msg).deliver_now
end
def perform(params, fetch_time)
....
end
end
这是“rspec-sidekiq”github的一个例子:
sidekiq_retries_exhausted do |msg|
bar('hello')
end
# test with...
FooClass.within_sidekiq_retries_exhausted_block {
expect(FooClass).to receive(:bar).with('hello')
}
我认为它应该将“sidekiq_retries_exhausted”块中的方法作为符号输入到test中。 我按照这种方式,但它不起作用。
这是我的测试。看看receive()方法。:
it 'should send email when retries exhausted' do
msg = {error_message: 'Wrong', args: [{id: 1}]}.to_json
PostListingsWorker.within_sidekiq_retries_exhausted_block(msg) {
expect(PostListingsWorker).to receive(:"NotifyMailer.warn_email().deliver_now").with(msg)
}
end
这是我的日志:
Failure/Error: expect(PostListingsWorker).to > >
receive(:"NotifyMailer.warn_email().deliver_now").with(:msg)
PostListingsWorker does not implement: NotifyMailer.warn_email().deliver_now
那么,有没有办法在“sidekiq_retries_exhausted”期间测试属于另一个类的方法? 也许找到一些方法将方法作为symblo发送?