File: presence_validation_test.rb

package info (click to toggle)
rails 2%3A6.0.3.7%2Bdfsg-2%2Bdeb11u2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 70,976 kB
  • sloc: ruby: 271,623; javascript: 19,043; yacc: 46; sql: 43; makefile: 28; sh: 18
file content (107 lines) | stat: -rw-r--r-- 2,769 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# frozen_string_literal: true

require "cases/helper"

require "models/topic"
require "models/person"
require "models/custom_reader"

class PresenceValidationTest < ActiveModel::TestCase
  teardown do
    Topic.clear_validators!
    Person.clear_validators!
    CustomReader.clear_validators!
  end

  def test_validate_presences
    Topic.validates_presence_of(:title, :content)

    t = Topic.new
    assert_predicate t, :invalid?
    assert_equal ["can't be blank"], t.errors[:title]
    assert_equal ["can't be blank"], t.errors[:content]

    t.title = "something"
    t.content = "   "

    assert_predicate t, :invalid?
    assert_equal ["can't be blank"], t.errors[:content]

    t.content = "like stuff"

    assert_predicate t, :valid?
  end

  def test_accepts_array_arguments
    Topic.validates_presence_of %w(title content)
    t = Topic.new
    assert_predicate t, :invalid?
    assert_equal ["can't be blank"], t.errors[:title]
    assert_equal ["can't be blank"], t.errors[:content]
  end

  def test_validates_acceptance_of_with_custom_error_using_quotes
    Person.validates_presence_of :karma, message: "This string contains 'single' and \"double\" quotes"
    p = Person.new
    assert_predicate p, :invalid?
    assert_equal "This string contains 'single' and \"double\" quotes", p.errors[:karma].last
  end

  def test_validates_presence_of_for_ruby_class
    Person.validates_presence_of :karma

    p = Person.new
    assert_predicate p, :invalid?

    assert_equal ["can't be blank"], p.errors[:karma]

    p.karma = "Cold"
    assert_predicate p, :valid?
  end

  def test_validates_presence_of_for_ruby_class_with_custom_reader
    CustomReader.validates_presence_of :karma

    p = CustomReader.new
    assert_predicate p, :invalid?

    assert_equal ["can't be blank"], p.errors[:karma]

    p[:karma] = "Cold"
    assert_predicate p, :valid?
  end

  def test_validates_presence_of_with_allow_nil_option
    Topic.validates_presence_of(:title, allow_nil: true)

    t = Topic.new(title: "something")
    assert t.valid?, t.errors.full_messages

    t.title = ""
    assert_predicate t, :invalid?
    assert_equal ["can't be blank"], t.errors[:title]

    t.title = "  "
    assert t.invalid?, t.errors.full_messages
    assert_equal ["can't be blank"], t.errors[:title]

    t.title = nil
    assert t.valid?, t.errors.full_messages
  end

  def test_validates_presence_of_with_allow_blank_option
    Topic.validates_presence_of(:title, allow_blank: true)

    t = Topic.new(title: "something")
    assert t.valid?, t.errors.full_messages

    t.title = ""
    assert t.valid?, t.errors.full_messages

    t.title = "  "
    assert t.valid?, t.errors.full_messages

    t.title = nil
    assert t.valid?, t.errors.full_messages
  end
end