class Mongoid::Matchers::Validations::HaveValidationMatcher
Public Class Methods
new(field, validation_type)
click to toggle source
# File lib/matchers/validations.rb, line 7 def initialize(field, validation_type) @field = field.to_s @type = validation_type.to_s @options = {} end
Public Instance Methods
check_on()
click to toggle source
# File lib/matchers/validations.rb, line 54 def check_on validator_on_methods = [@validator.options[:on]].flatten if validator_on_methods.any? message = " on methods: #{validator_on_methods}" if on_options_covered_by?( @validator ) @positive_result_message << message else @negative_result_message << message @result = false end end end
description()
click to toggle source
# File lib/matchers/validations.rb, line 43 def description desc = "have #{@type.inspect} validator on #{@field.inspect}" desc << " on #{@options[:on]}" if @options[:on] desc end
failure_message_for_should()
click to toggle source
# File lib/matchers/validations.rb, line 32 def failure_message_for_should "Expected #{@klass.inspect} to #{description}; instead got #{@negative_result_message}" end
Also aliased as: failure_message
failure_message_for_should_not()
click to toggle source
# File lib/matchers/validations.rb, line 36 def failure_message_for_should_not "Expected #{@klass.inspect} to not #{description}; instead got #{@positive_result_message}" end
Also aliased as: failure_message_when_negated
matches?(actual)
click to toggle source
# File lib/matchers/validations.rb, line 13 def matches?(actual) @klass = actual.is_a?(Class) ? actual : actual.class @validator = @klass.validators_on(@field).detect{ |v| v.kind.to_s == @type and (!v.options[:on] or on_options_matches?(v)) } if @validator @negative_result_message = "#{@type.inspect} validator on #{@field.inspect}" @positive_result_message = "#{@type.inspect} validator on #{@field.inspect}" else @negative_result_message = "no #{@type.inspect} validator on #{@field.inspect}" return false end @result = true check_on if @options[:on] @result end
on(*on_method)
click to toggle source
# File lib/matchers/validations.rb, line 49 def on(*on_method) @options[:on] = on_method.flatten self end
Private Instance Methods
on_options_covered_by?(validator)
click to toggle source
# File lib/matchers/validations.rb, line 75 def on_options_covered_by?(validator) ([@options[:on]].flatten - [validator.options[:on]].flatten).empty? end
on_options_matches?(validator)
click to toggle source
# File lib/matchers/validations.rb, line 71 def on_options_matches?(validator) @options[:on] and validator.options[:on] and on_options_covered_by?(validator) end