-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvalues_helper_test.rb
171 lines (145 loc) · 3.59 KB
/
values_helper_test.rb
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
require 'minitest/autorun'
require_relative '../../lib/helpers/string_helper'
require_relative '../../lib/helpers/values_helper'
class ValuesHelperTest < Minitest::Test
DEFAULT_BASE_STRING = StringHelper::DEFAULT_BASE_STRING
BASE_STRING = "not_#{DEFAULT_BASE_STRING}"
def test_integers_in_range
method = :integers_in_range
# Good argument.
[
(0..0),
(-1..1),
].each do |range|
expected = {
:min => range.first,
:max => range.last,
}
actual = ValuesHelper.send(method, range)
assert_equal(expected, actual, range.inspect)
end
# Bad argument.
[
# Not Range.
0,
# Range min not integer.
(1.1..2),
# Range max not integer.
(0..2.1)
].each do |range|
assert_raises(ParamContractError) do
ValuesHelper.send(method, range)
end
end
end
def test_integers_not_in_range
method = :integers_not_in_range
# Good argument.
[
(0..0),
(-1..1),
].each do |range|
expected = {
:too_small => range.first - 1,
:too_large => range.last + 1,
}
actual = ValuesHelper.send(method, range)
assert_equal(expected, actual, range.inspect)
end
# Bad argument.
[
# Not Range.
0,
# Range min not integer.
(1.1..2),
# Range max not integer.
(0..2.1)
].each do |range|
assert_raises(ParamContractError) do
ValuesHelper.send(method, range)
end
end
end
def test_strings_in_length_range
method = :strings_in_length_range
# Good data.
[
DEFAULT_BASE_STRING,
BASE_STRING,
].each do |base_string|
[
(0..0),
(0..4),
(4..4),
].each do |range|
args = [range, base_string]
expected = {
:min_length => StringHelper.string_of_length(range.first, base_string),
:max_length => StringHelper.string_of_length(range.last, base_string),
}
actual = ValuesHelper.send(method, *args)
assert_equal(expected, actual, args.inspect)
end
end
# Bad first argument.
[
# Not Range.
[0, BASE_STRING],
].each do |args|
assert_raises(ParamContractError) do
ValuesHelper.send(method, *args)
end
end
# Bad second argument.
[
# Not String.
[0, 0],
].each do |args|
assert_raises(ParamContractError) do
ValuesHelper.send(method, *args)
end
end
end
def test_strings_not_in_length_range
method = :strings_not_in_length_range
# Good data.
[
DEFAULT_BASE_STRING,
BASE_STRING,
].each do |base_string|
[
(1..0),
(1..4),
(4..4),
].each do |range|
args = [range, base_string]
expected = {
:too_short => StringHelper.string_of_length(range.first-1, base_string),
:too_long => StringHelper.string_of_length(range.last+1, base_string),
}
actual = ValuesHelper.send(method, *args)
assert_equal(expected, actual, args.inspect)
end
end
# Bad first argument.
[
# Not Range.
[0, BASE_STRING],
# Range min not positive.
(0..1),
].each do |args|
assert_raises(ParamContractError) do
ValuesHelper.send(method, *args)
end
end
# Bad second argument.
[
# Not String.
[0, 0],
].each do |args|
assert_raises(ParamContractError) do
ValuesHelper.send(method, *args)
end
end
end
end