我正在为我的应用程序编写测试(rspec-rails)。我想检查正在运行的脚本是否没有更改表中的任何对象。我尝试使用 Table.hash 或仅添加每个对象哈希,但是当我对对象进行一些更改时,这些值不会改变。所以在执行这段代码之后(Someobject只是一个例子-普通表):
hash1a = Someobject.hash
o = Someobject.first
hash2a = o.hash
o.field = o.field + 1
o.save!
hash1b = Someobject.hash
hash2b = o.hash
hash1a == hash1b
和hash2a == hash2b
。所以很明显我不能使用这些方法中的任何一个来检查是否有任何对象发生了变化。
目前我正在使用此代码:
def run_script #run script and btw check whether it throws exception
lambda { eval File.read(File.join(Rails.root, 'lib', 'tasks', 'some_script.rb')) }.should_not raise_error()
end
def objects_hash #calculates hash of each order json version and than concatenates all strings and return it
hash = ''
Someobject.each do |object|
hash+= Digest::SHA1.base64digest object.as_json.to_s
end
hash
end
....
expect {run_script}.to_not change{objects_hash} #expect run_script to not change any object
基本上它将每个对象转换为 json,然后转换为字符串,然后计算该字符串的哈希值。所有字符串(哈希)都被连接起来并返回这个值。所以这一行expect {run_script}.to_not change{objects_hash} #expect run_script to not change any object
计算所有对象的哈希,运行脚本,计算新哈希并将新哈希与旧哈希进行比较。
它工作正常,但我认为有更好的方法来实现这一点。问题是——如何?我正在使用 rails 3.2.13 和 mongoid。