thoughtbot--shoulda-matchers/lib/shoulda/matchers/active_model/allow_value_matcher.rb

183 lines
5.3 KiB
Ruby
Raw Normal View History

2010-12-15 22:34:19 +00:00
module Shoulda # :nodoc:
module Matchers
module ActiveModel # :nodoc:
2010-12-15 22:34:19 +00:00
# Ensures that the attribute can be set to the given value or values. If
# multiple values are given the match succeeds only if all given values
# are allowed. Otherwise, the matcher fails at the first bad value in the
# argument list (the remaining arguments are not processed then).
2010-12-15 22:34:19 +00:00
#
# Options:
# * <tt>with_message</tt> - value the test expects to find in
# <tt>errors.on(:attribute)</tt>. Regexp or string. If omitted,
# the test looks for any errors in <tt>errors.on(:attribute)</tt>.
# * <tt>strict</tt> - expects the model to raise an exception when the
# validation fails rather than adding to the errors collection. Used for
# testing `validates!` and the `:strict => true` validation options.
2010-12-15 22:34:19 +00:00
#
# Example:
# it { should_not allow_value('bad').for(:isbn) }
2012-12-20 05:04:27 +00:00
# it { should allow_value('isbn 1 2345 6789 0').for(:isbn) }
2010-12-15 22:34:19 +00:00
#
def allow_value(*values)
2012-03-23 14:10:08 +00:00
if values.empty?
2012-12-20 05:04:27 +00:00
raise ArgumentError, 'need at least one argument'
2012-03-23 14:10:08 +00:00
else
AllowValueMatcher.new(*values)
end
2010-12-15 22:34:19 +00:00
end
class AllowValueMatcher # :nodoc:
include Helpers
attr_accessor :attribute_with_message
attr_accessor :options
def initialize(*values)
self.values_to_match = values
self.message_finder_factory = ValidationMessageFinder
self.options = {}
2010-12-15 22:34:19 +00:00
end
def for(attribute)
self.attribute_to_set = attribute
self.attribute_to_check_message_against = attribute
2010-12-15 22:34:19 +00:00
self
end
2013-03-04 03:34:38 +00:00
def on(context)
@context = context
self
end
def with_message(message, options={})
self.options[:expected_message] = message
if options.key?(:against)
self.attribute_to_check_message_against = options[:against]
end
2010-12-15 22:34:19 +00:00
self
end
def strict
self.message_finder_factory = ExceptionMessageFinder
self
end
2010-12-15 22:34:19 +00:00
def matches?(instance)
self.instance = instance
values_to_match.none? do |value|
self.value = value
instance.send("#{attribute_to_set}=", value)
errors_match?
end
2010-12-15 22:34:19 +00:00
end
def failure_message
"Did not expect #{expectation}, got error: #{matched_error}"
2010-12-15 22:34:19 +00:00
end
alias failure_message_for_should failure_message
2010-12-15 22:34:19 +00:00
def failure_message_when_negated
2010-12-15 22:34:19 +00:00
"Expected #{expectation}, got #{error_description}"
end
alias failure_message_for_should_not failure_message_when_negated
2010-12-15 22:34:19 +00:00
def description
message_finder.allow_description(allowed_values)
2010-12-15 22:34:19 +00:00
end
private
attr_accessor :values_to_match, :message_finder_factory,
:instance, :attribute_to_set, :attribute_to_check_message_against,
:context, :value, :matched_error
def errors_match?
has_messages? && errors_for_attribute_match?
end
def has_messages?
message_finder.has_messages?
end
def errors_for_attribute_match?
if expected_message
self.matched_error = errors_match_regexp? || errors_match_string?
else
errors_for_attribute.compact.any?
2010-09-05 15:23:09 +00:00
end
2010-12-15 22:34:19 +00:00
end
2012-03-23 14:10:08 +00:00
def errors_for_attribute
message_finder.messages
end
2010-12-15 22:34:19 +00:00
def errors_match_regexp?
2012-03-23 14:10:08 +00:00
if Regexp === expected_message
2012-05-07 14:25:46 +00:00
errors_for_attribute.detect { |e| e =~ expected_message }
2010-12-15 22:34:19 +00:00
end
end
def errors_match_string?
2012-03-23 14:10:08 +00:00
if errors_for_attribute.include?(expected_message)
2012-05-07 14:25:46 +00:00
expected_message
2010-12-15 22:34:19 +00:00
end
end
def expectation
2012-03-23 14:10:08 +00:00
includes_expected_message = expected_message ? "to include #{expected_message.inspect}" : ''
[error_source, includes_expected_message, "when #{attribute_to_set} is set to #{value.inspect}"].join(' ')
end
def error_source
message_finder.source_description
2010-12-15 22:34:19 +00:00
end
def error_description
message_finder.messages_description
end
2012-03-23 14:10:08 +00:00
def allowed_values
if values_to_match.length > 1
"any of [#{values_to_match.map(&:inspect).join(', ')}]"
2012-03-23 14:10:08 +00:00
else
values_to_match.first.inspect
2012-03-23 14:10:08 +00:00
end
end
def expected_message
if options.key?(:expected_message)
if Symbol === options[:expected_message]
default_expected_message
2012-03-23 14:10:08 +00:00
else
options[:expected_message]
2012-03-23 14:10:08 +00:00
end
end
end
def default_expected_message
message_finder.expected_message_from(default_attribute_message)
end
def default_attribute_message
default_error_message(
options[:expected_message],
:model_name => model_name,
:instance => instance,
:attribute => attribute_to_set
)
end
2012-03-23 14:10:08 +00:00
def model_name
instance.class.to_s.underscore
2012-03-23 14:10:08 +00:00
end
def message_finder
message_finder_factory.new(instance, attribute_to_check_message_against, context)
end
2012-03-23 14:10:08 +00:00
end
2010-12-15 22:34:19 +00:00
end
end
end