gpt4 book ai didi

ruby-on-rails - 测试 Sidekiq 是否收到正确的延迟作业

转载 作者:行者123 更新时间:2023-12-04 23:53:05 26 4
gpt4 key购买 nike

在我的 User 模型中,我调用了一个延迟方法:

class User < ActiveRecord::Base
def self.import_items
...
User.delay.keep_only_user_cars(1) # "1" is just for testing
end
end

我正在尝试像这样测试它(使用 rspec-sidekiq gem):
expect(Sidekiq::Extensions::DelayedClass).to have_enqueued_job("keep_only_user_cars", 1)     

这就是我得到的:
Failure/Error: expect(Sidekiq::Extensions::DelayedClass).to have_enqueued_job("keep_only_user_cars", 1)
expected to have an enqueued Sidekiq::Extensions::DelayedClass job with arguments ["keep_only_user_cars", 1] but none found
found: [["---\n- !ruby/class 'User'\n- :keep_only_user_cars\n- - 1\n"]]

这基本上有效,只是格式略有不同。

如何修复此测试以确保 Sidekiq 完全接收到具有此属性的此方法?

最佳答案

根据 the docs ,延迟扩展在redis中发送整个对象,而不仅仅是值。如果要测试该对象,则需要使用 YAML.dump(object):

expected = YAML.dump([User,:keep_only_user_cars,1])
expect(Sidekiq::Extensions::DelayedClass).to have_enqueued_job(expected)

关于ruby-on-rails - 测试 Sidekiq 是否收到正确的延迟作业,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19506626/

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