lint.rb 4.8 KB
Newer Older
Y
Yehuda Katz 已提交
1 2
module ActiveModel
  module Lint
3
    # == Active \Model \Lint \Tests
4
    #
5
    # You can test whether an object is compliant with the Active \Model API by
6 7 8 9 10 11 12
    # including <tt>ActiveModel::Lint::Tests</tt> in your TestCase. It will
    # include tests that tell you whether your object is fully compliant,
    # or if not, which aspects of the API are not implemented.
    #
    # Note an object is not required to implement all APIs in order to work
    # with Action Pack. This module only intends to provide guidance in case
    # you want all features out of the box.
13 14
    #
    # These tests do not attempt to determine the semantic correctness of the
15 16 17
    # returned values. For instance, you could implement <tt>valid?</tt> to
    # always return true, and the tests would pass. It is up to you to ensure
    # that the values are semantically meaningful.
18
    #
19 20 21
    # Objects you pass in are expected to return a compliant object from a call
    # to <tt>to_model</tt>. It is perfectly fine for <tt>to_model</tt> to return
    # +self+.
22
    module Tests
23

24
      # == Responds to <tt>to_key</tt>
25 26
      #
      # Returns an Enumerable of all (primary) key attributes
27 28
      # or nil if <tt>model.persisted?</tt> is false. This is used by
      # <tt>dom_id</tt> to generate unique ids for the object.
29 30
      def test_to_key
        assert model.respond_to?(:to_key), "The model should respond to to_key"
31
        def model.persisted?() false end
32
        assert model.to_key.nil?, "to_key should return nil when `persisted?` returns false"
33 34 35 36 37
      end

      # == Responds to <tt>to_param</tt>
      #
      # Returns a string representing the object's key suitable for use in URLs
38
      # or +nil+ if <tt>model.persisted?</tt> is +false+.
39
      #
40 41 42 43 44 45
      # Implementers can decide to either raise an exception or provide a
      # default in case the record uses a composite primary key. There are no
      # tests for this behavior in lint because it doesn't make sense to force
      # any of the possible implementation strategies on the implementer.
      # However, if the resource is not persisted?, then <tt>to_param</tt>
      # should always return +nil+.
46 47
      def test_to_param
        assert model.respond_to?(:to_param), "The model should respond to to_param"
48
        def model.to_key() [1] end
49
        def model.persisted?() false end
A
Andrew White 已提交
50
        assert model.to_param.nil?, "to_param should return nil when `persisted?` returns false"
51 52
      end

53
      # == Responds to <tt>to_partial_path</tt>
54
      #
55
      # Returns a string giving a relative path. This is used for looking up
56
      # partials. For example, a BlogPost model might return "blog_posts/blog_post"
57 58 59
      def test_to_partial_path
        assert model.respond_to?(:to_partial_path), "The model should respond to to_partial_path"
        assert_kind_of String, model.to_partial_path
60 61
      end

62
      # == Responds to <tt>persisted?</tt>
Y
Yehuda Katz 已提交
63
      #
64 65 66 67 68
      # Returns a boolean that specifies whether the object has been persisted
      # yet. This is used when calculating the URL for an object. If the object
      # is not persisted, a form for that object, for instance, will route to
      # the create action. If it is persisted, a form for the object will routes
      # to the update action.
69 70 71
      def test_persisted?
        assert model.respond_to?(:persisted?), "The model should respond to persisted?"
        assert_boolean model.persisted?, "persisted?"
Y
Yehuda Katz 已提交
72 73
      end

74
      # == \Naming
J
José Valim 已提交
75
      #
76
      # Model.model_name must return a string with some convenience methods:
77 78
      # <tt>:human</tt>, <tt>:singular</tt> and <tt>:plural</tt>. Check
      # ActiveModel::Naming for more information.
J
José Valim 已提交
79 80 81
      def test_model_naming
        assert model.class.respond_to?(:model_name), "The model should respond to model_name"
        model_name = model.class.model_name
82 83 84 85
        assert model_name.respond_to?(:to_str)
        assert model_name.human.respond_to?(:to_str)
        assert model_name.singular.respond_to?(:to_str)
        assert model_name.plural.respond_to?(:to_str)
J
José Valim 已提交
86 87
      end

88
      # == \Errors Testing
89
      #
90 91 92 93
      # Returns an object that implements [](attribute) defined which returns an
      # Array of Strings that are the errors for the attribute in question.
      # If localization is used, the Strings should be localized for the current
      # locale. If no error is present, this method should return an empty Array.
94 95 96
      def test_errors_aref
        assert model.respond_to?(:errors), "The model should respond to errors"
        assert model.errors[:hello].is_a?(Array), "errors#[] should return an Array"
Y
Yehuda Katz 已提交
97 98
      end

99 100
      private
        def model
101
          assert @model.respond_to?(:to_model), "The object should respond to to_model"
102
          @model.to_model
Y
Yehuda Katz 已提交
103 104
        end

105 106 107
        def assert_boolean(result, name)
          assert result == true || result == false, "#{name} should be a boolean"
        end
Y
Yehuda Katz 已提交
108 109
    end
  end
110
end