我有模型Person有很多图像,其中图像有一个名为data的Paperclip附件字段,下面是缩写版本:
class Person
has_many :images
...
end
class Image
has_attached_file :data
belongs_to :person
...
end
要求人员附上至少一张图像。
使用FactoryGirl时,我的代码类似于以下内容:
Factory.define :image do |a|
a.data { File.new(File.join(Rails.root, 'features', 'support', 'file.png')) }
a.association :person
end
Factory.define :person do |p|
p.first_name 'Keyzer'
p.last_name 'Soze'
p.after_create do |person|
person.assets = [Factory.build(:image, :person => person)]
end
# p.images {|images| [images.association(:image)]}
end
(N.B。我也试过上面注释的代码也试了) 大多数时候,当我运行黄瓜功能时,我得到的错误类似于以下内容:
没有这样的文件或目录 - /tmp/stream,9887,0.png(Errno :: ENOENT)
...
有时测试成功运行。
有谁能告诉我我在这里遇到的问题是什么,或者他们如何一起使用FactoryGirl和Paperclip来实现我想要实现的目标?
我正在使用Rails 3。
答案 0 :(得分:84)
您可以使用fixture_file_upload
测试助手中的 include ActionDispatch::TestProcess
,这是一个示例工厂:
include ActionDispatch::TestProcess
FactoryBot.define do
factory :user do
avatar { fixture_file_upload(Rails.root.join('spec', 'photos', 'test.png'), 'image/png') }
end
end
在上面的示例中,在运行测试之前,spec/photos/test.png
需要存在于应用程序的根目录中。
请注意,FactoryBot
是FactoryGirl
的新名称。
答案 1 :(得分:47)
较新的FG语法,不包含必要的
factory :user do
avatar { File.new(Rails.root.join('app', 'assets', 'images', 'rails.png')) }
end
或者,更好的是,
factory :user do
avatar { File.new("#{Rails.root}/spec/support/fixtures/image.jpg") }
end
答案 2 :(得分:37)
factory :attachment do
supporting_documentation_file_name { 'test.pdf' }
supporting_documentation_content_type { 'application/pdf' }
supporting_documentation_file_size { 1024 }
# ...
end
答案 3 :(得分:25)
答案 4 :(得分:12)
file { File.new(Rails.root.join('spec', 'fixtures', 'filename.png')) }
答案 5 :(得分:4)
尝试使用ActionController :: TestUploadedFile。您可以将file属性设置为TestUploadedFile的实例,paperclip应该处理其余的事情。例如
valid_file = File.new(File.join(Rails.root, 'features', 'support', 'file.png'))
p.images {
[
ActionController::TestUploadedFile.new(valid_file, Mime::Type.new('application/png'))
]
}
答案 6 :(得分:0)
在某些情况下,上述答案可能会有所帮助,而且在我的某个情况下实际上有所帮助,但是当使用Carrierwave时,此问题的先前解决方案此时无效。
第一种方法:
对我来说,添加after :create
就像这样解决了我的问题:
after :create do |b|
b.update_column(:video_file, File.join(Rails.root, 'spec', 'fixtures', 'sample.mp4'))
end
设置内联视频文件(如video_file { File.new("#{Rails.root}/spec/fixtures/sample.mp4") }
)无效,报告错误。
第二种方法:
定义这样的工厂(将personal_file
更改为您的附件名称):
FactoryGirl.define do
factory :contact do
personal_file { File.new("#{Rails.root}/spec/fixtures/personal_files/my_test_file.csv") }
personal_file_content_type 'text/csv'
end
end
并将这些行添加到config/environemnts/test.rb
:
config.paperclip_defaults = {
url: "#{Rails.root}/spec/fixtures/:attachment/:filename",
use_timestamp: false
}
答案 7 :(得分:-1)
你在测试什么?那个回形针会成功附加文件吗?这似乎是回形针应该处理的测试,而不是你的应用程序。
你试过吗
a.data { File.join(Rails.root, 'features', 'support', 'file.png') }
我们使用Machinist而不是factory_girl,只使用了
之类的东西Image.blueprint do
image { RAILS_ROOT + 'spec/fixtures/images/001.jpg' }
end
但是,当我们这样做时,我们并没有真正测试太多,我们通常只想拥有一个有效的Image
对象。