作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用带有 shoulda-matcher 的 rspec-rails 来测试我的模型。这是代码:
user_ticket.rb
class UserTicket < ActiveRecord::Base
belongs_to :user
belongs_to :ticket
enum relation_type: %w( creator supporter )
validates_uniqueness_of :relation_type, scope: [:user_id, :ticket_id]
end
RSpec.describe UserTicket, type: :model do
subject { FactoryGirl.build(:user_ticket) }
describe 'Relations' do
it { should belong_to(:user) }
it { should belong_to(:ticket) }
end
describe 'Validations' do
it { should define_enum_for(:relation_type).with(%w( creator supporter )) }
# PROBLEM HERE
it { should validate_uniqueness_of(:relation_type).case_insensitive.scoped_to([:user_id, :ticket_id]) }
end
end
Failure/Error: it { should validate_uniqueness_of(:relation_type).case_insensitive.scoped_to([:user_id, :ticket_id]) }
ArgumentError:
'CREATOR' is not a valid relation_type
relation_type
值来验证唯一性:大写、小写等。我的问题是在这种情况下,如何通过定义的模型验证来使测试通过?
最佳答案
它失败是因为您要求它不敏感地测试验证大小写。通常,这将用于测试具有不同情况导致验证失败的一系列值。但是,由于枚举,您甚至不允许设置该值;它甚至没有进入验证检查。
它正在使用“creator”和“CREATOR”(至少)测试验证。 enum
s 区分大小写,因此它们将是 enum
中的两个不同值,并且您只声明了“创建者”。当它尝试分配“CREATOR”来测试验证时,您的 enum
会感到不安并拒绝允许它。
在这种情况下,您可能希望在不区分大小写的情况下验证唯一性:
validate_uniqueness_of(:relation_type).ignoring_case_sensitivity
来自
validates_uniqueness_of 文档:
By default, validate_uniqueness_of will check that the validation is case sensitive: it asserts that uniquable attributes pass validation when their values are in a different case than corresponding attributes in the pre-existing record.
Use ignoring_case_sensitivity to skip this check.
enum
中的唯一值。
关于ruby-on-rails - Shoulda-matcher 如何验证枚举属性的唯一性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39325946/
我是一名优秀的程序员,十分优秀!