3

该模型:

class Attachment < ActiveRecord::Base

  belongs_to :narrative

  attr_accessible :description, :user_id, :narrative_id

  has_attached_file :file

  validates_presence_of :user_id
  validates_presence_of :narrative_id
  validates_attachment :file, :presence => true,
                       :size => {:less_than => 20.megabytes}
end

不起作用的测试:

describe Attachment do
  it { should validate_presence_of :file }
  it { should validate_size_of :file } # validate_size_of does not exist
end

我想避免将 20 MB 的文件转储到 repo 中只是为了测试这一点。有没有一种类似于我上面尝试过的方法可以真正起作用?

4

1 回答 1

8

我做到这一点的最好方法是使用 Paperclip 的内置shoulda 匹配器。该链接上的文档非常好,但以下是文档中您可以使用它做什么的概述:

在 spec_helper.rb 中,您需要使用匹配器:

require "paperclip/matchers"

并包含模块:

Spec::Runner.configure do |config|
  config.include Paperclip::Shoulda::Matchers
end

验证附件大小的示例:

describe User do
  it { should validate_attachment_size(:avatar).
                less_than(2.megabytes) }
end

如果您有兴趣,可以在 GitHub 上找到匹配器的源代码

于 2013-02-09T14:44:11.767 回答