Sha256: de6c775e9dfb17fa2bd7d8f392d0b240ac7908a9096770f740b635caeabfcfa4

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 KB

Contents

module Mongoid
  module Matchers
    module Validations
      class ValidateWithCustomValidatorMatcher < HaveValidationMatcher
        def initialize(field)
          super(field, :custom)
        end

        def with_validator(custom_validator)
          @custom_validator = custom_validator
          self
        end

        def matches?(actual)
          return false unless (@result = super(actual))
          check_custom_validator if @custom_validator

          @result
        end

        def description
          options_desc = []
          options_desc << " with custom validator #{@custom_validator.name}" if @validator
          "validate field #{@field.inspect}" << options_desc.to_sentence
        end

        private

        def check_custom_validator
          if @validator.is_a? @custom_validator
            @positive_result_message << " with custom validator of type #{@custom_validator.name}"
          else
            @negative_result_message << " with custom validator not of type #{@custom_validator.name}"
            @result = false
          end
        end
      end

      def custom_validate(field)
        ValidateWithCustomValidatorMatcher.new(field)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mongoid-rspec-4.2.0 lib/matchers/validations/custom_validation_of.rb
mongoid-rspec-4.1.0 lib/matchers/validations/custom_validation_of.rb
mongoid-rspec-4.0.1 lib/matchers/validations/custom_validation_of.rb
mongoid-rspec-4.0.0 lib/matchers/validations/custom_validation_of.rb