我有以下rspec代码来测试二进制文件的上传和下载。我知道我可以检查'content-type'以验证文件是否已正确上传和下载。但是如何根据以下内容运行MD5以确保它们实际上是同一个文件。
it "should upload a file" do
file = Rack::Test::UploadedFile.new("./HelloWorld.bin", "application/octet-stream")
json = {:md5sum => "0cd74c7a3cf2207ffd68d43177681e6b", :config => "./testconfig.yaml"}.to_json
post "/upload", :json => json, :file => file
last_response.should be_ok
(JSON.parse(last_response.body)["status"]).should be_true
(JSON.parse(last_response.body)["filename"]).should eq("HelloWorld.bin")
end
it "download a file successfully" do
filename = "HelloWorld.bin"
get '/download/' + filename
last_response.should be_ok
last_response.headers['Content-Type'].should eq "application/octet-stream"
end
可以将'last_response.body'分配为获取/下载'中的二进制文件吗?
答案 0 :(得分:0)
由于last_response.body是一个字符串,因此您始终可以直接在字符串上运行MD5校验和。
(Digest::MD5.hexdigest(last_response.body)).should eq ("a1cba6369d668ed0ae5e97658c30979a")