Sha256: b67fec4022bf4bccf6aa83ef343688659c702a3730d7412beedae9f92d5c696b

Contents?: true

Size: 1.89 KB

Versions: 8

Compression:

Stored size: 1.89 KB

Contents

module Shoulda
  module Matchers
    module ActiveRecord
      # The `have_readonly_attribute` matcher tests usage of the
      # `attr_readonly` macro.
      #
      #     class User < ActiveRecord::Base
      #       attr_readonly :password
      #     end
      #
      #     # RSpec
      #     RSpec.describe User, type: :model do
      #       it { should have_readonly_attribute(:password) }
      #     end
      #
      #     # Minitest (Shoulda)
      #     class UserTest < ActiveSupport::TestCase
      #       should have_readonly_attribute(:password)
      #     end
      #
      # @return [HaveReadonlyAttributeMatcher]
      #
      def have_readonly_attribute(value)
        HaveReadonlyAttributeMatcher.new(value)
      end

      # @private
      class HaveReadonlyAttributeMatcher
        def initialize(attribute)
          @attribute = attribute.to_s
        end

        attr_reader :failure_message, :failure_message_when_negated

        def matches?(subject)
          @subject = subject
          if readonly_attributes.include?(@attribute)
            @failure_message_when_negated = "Did not expect #{@attribute}"\
            ' to be read-only'
            true
          else
            @failure_message =
              if readonly_attributes.empty?
                "#{class_name} attribute #{@attribute} " <<
                  'is not read-only'
              else
                "#{class_name} is making " <<
                  "#{readonly_attributes.to_a.to_sentence} " <<
                  "read-only, but not #{@attribute}."
              end
            false
          end
        end

        def description
          "make #{@attribute} read-only"
        end

        private

        def readonly_attributes
          @_readonly_attributes ||= (@subject.class.readonly_attributes || [])
        end

        def class_name
          @subject.class.name
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
shoulda-matchers-6.0.0 lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb
shoulda-matchers-5.3.0 lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb
shoulda-matchers-5.2.0 lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb
shoulda-matchers-5.1.0 lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb
shoulda-matchers-5.0.0 lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb
shoulda-matchers-5.0.0.rc1 lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb
shoulda-matchers-4.5.1 lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb
shoulda-matchers-4.5.0 lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb