gpt4 book ai didi

ruby-on-rails - 将ActiveRecord对象与Rspec进行比较

转载 作者:行者123 更新时间:2023-12-03 13:29:04 24 4
gpt4 key购买 nike

在Rspec中有没有一种很好的方法来比较两个ActiveRecord对象,而忽略id&c?例如,假设我要从XML解析一个对象,然后从固定装置加载另一个对象,而我正在测试的是我的XML解析器可以正常工作。我目前拥有的是一个自定义匹配器

actual.attributes.reject{|key,v| %w"id updated_at created_at".include? key } == expected.attributes.reject{|key,v| %w"id updated_at created_at".include? key }


但是我想知道是否有更好的方法。

然后稍微复杂一些,但是有没有办法在场景上做类似的事情?说XML解析器还创建了几个属于原始对象的对象。因此,我最终得到的集合除了id,created_at和&c外应该是相同的,而且我想知道是否有一种很好的方法来测试这一点,而不仅仅是循环遍历,清除那些变量并进行检查。

最佳答案

编写上述内容的一种较短方法是actual.attributes.except(:id, :updated_at, :created_at)

如果您经常使用此功能,则总是可以这样定义自己的匹配器:

RSpec::Matchers.define :have_same_attributes_as do |expected|
match do |actual|
ignored = [:id, :updated_at, :created_at]
actual.attributes.except(*ignored) == expected.attributes.except(*ignored)
end
end


将其放入您的 spec_helper.rb中,您现在可以在任何示例中说:

User.first.should have_same_attributes_as(User.last)


祝好运。

关于ruby-on-rails - 将ActiveRecord对象与Rspec进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4763983/

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