我无法弄清楚如何验证carrierwave已将文档上传到我的mongoid对象。
我有一个文档类
class Content::Document < Content
mount_uploader :attachment, DocumentUploader
field :attachable_id
field :attachable_type
end
和上传者:
require 'carrierwave/orm/mongoid'
class DocumentUploader < CarrierWave::Uploader::Base
storage = :filesystem
include CarrierWave::RMagick
def store_dir
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end
def extension_white_list
%w(doc docx xls xlsx ppt pptx pdf )
end
我想验证上传是否存在,并且通过标准验证错误
与其他白名单相匹配这是在Rails 2.3.8
上答案 0 :(得分:2)
虽然Carrierwave确实有广泛的测试,但您可以通过以下方式测试有效性:
it "is valid with valid attributes" do
file_bytes = File.open("spec/binary/avatar.png")
valid_attrs = {:name => "foo", :description => "bar", :avatar => file_bytes}
user = User.new(valid_attrs)
user.should be_valid
end
希望有所帮助!
答案 1 :(得分:1)
通常,您不需要这样做,因为此行为已经在carrierwave规范中进行了测试。
您可以使用Carrierwave测试助手单独测试您的上传者。例如。我只想写一个像
这样的规范attachment_uploader.extension_white_list.should =~ %w(doc docx xls xlsx ppt pptx pdf)
但是如果你坚持测试我会建议使用FakeFS来存根文件系统,然后检查
File.exists? document.attachment.current_path
是否已创建附件。