sbf-dm-validations 1.3.0.beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (185) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +38 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +468 -0
  5. data/.travis.yml +51 -0
  6. data/Gemfile +60 -0
  7. data/LICENSE +21 -0
  8. data/README.rdoc +122 -0
  9. data/Rakefile +4 -0
  10. data/dm-validations.gemspec +20 -0
  11. data/lib/data_mapper/core.rb +1 -0
  12. data/lib/data_mapper/support/assertions.rb +1 -0
  13. data/lib/data_mapper/support/equalizer.rb +1 -0
  14. data/lib/data_mapper/support/ordered_set.rb +2 -0
  15. data/lib/data_mapper/validation/backward.rb +205 -0
  16. data/lib/data_mapper/validation/context.rb +57 -0
  17. data/lib/data_mapper/validation/contextual_rule_set.rb +210 -0
  18. data/lib/data_mapper/validation/exceptions.rb +7 -0
  19. data/lib/data_mapper/validation/inferred.rb +264 -0
  20. data/lib/data_mapper/validation/macros.rb +449 -0
  21. data/lib/data_mapper/validation/message_transformer.rb +111 -0
  22. data/lib/data_mapper/validation/model_extensions.rb +17 -0
  23. data/lib/data_mapper/validation/resource_extensions.rb +131 -0
  24. data/lib/data_mapper/validation/rule/absence.rb +31 -0
  25. data/lib/data_mapper/validation/rule/acceptance.rb +49 -0
  26. data/lib/data_mapper/validation/rule/block.rb +37 -0
  27. data/lib/data_mapper/validation/rule/confirmation.rb +47 -0
  28. data/lib/data_mapper/validation/rule/format/proc.rb +34 -0
  29. data/lib/data_mapper/validation/rule/format/regexp.rb +51 -0
  30. data/lib/data_mapper/validation/rule/format.rb +86 -0
  31. data/lib/data_mapper/validation/rule/formats/email.rb +54 -0
  32. data/lib/data_mapper/validation/rule/formats/url.rb +13 -0
  33. data/lib/data_mapper/validation/rule/length/equal.rb +48 -0
  34. data/lib/data_mapper/validation/rule/length/maximum.rb +50 -0
  35. data/lib/data_mapper/validation/rule/length/minimum.rb +50 -0
  36. data/lib/data_mapper/validation/rule/length/range.rb +50 -0
  37. data/lib/data_mapper/validation/rule/length.rb +96 -0
  38. data/lib/data_mapper/validation/rule/method.rb +42 -0
  39. data/lib/data_mapper/validation/rule/numericalness/equal.rb +34 -0
  40. data/lib/data_mapper/validation/rule/numericalness/greater_than.rb +34 -0
  41. data/lib/data_mapper/validation/rule/numericalness/greater_than_or_equal.rb +34 -0
  42. data/lib/data_mapper/validation/rule/numericalness/integer.rb +41 -0
  43. data/lib/data_mapper/validation/rule/numericalness/less_than.rb +34 -0
  44. data/lib/data_mapper/validation/rule/numericalness/less_than_or_equal.rb +34 -0
  45. data/lib/data_mapper/validation/rule/numericalness/not_equal.rb +34 -0
  46. data/lib/data_mapper/validation/rule/numericalness/numeric.rb +68 -0
  47. data/lib/data_mapper/validation/rule/numericalness.rb +91 -0
  48. data/lib/data_mapper/validation/rule/presence.rb +52 -0
  49. data/lib/data_mapper/validation/rule/primitive_type.rb +32 -0
  50. data/lib/data_mapper/validation/rule/uniqueness.rb +64 -0
  51. data/lib/data_mapper/validation/rule/within/range/bounded.rb +29 -0
  52. data/lib/data_mapper/validation/rule/within/range/unbounded_begin.rb +29 -0
  53. data/lib/data_mapper/validation/rule/within/range/unbounded_end.rb +29 -0
  54. data/lib/data_mapper/validation/rule/within/range.rb +55 -0
  55. data/lib/data_mapper/validation/rule/within/set.rb +45 -0
  56. data/lib/data_mapper/validation/rule/within.rb +32 -0
  57. data/lib/data_mapper/validation/rule.rb +232 -0
  58. data/lib/data_mapper/validation/rule_set.rb +157 -0
  59. data/lib/data_mapper/validation/support/object.rb +19 -0
  60. data/lib/data_mapper/validation/support/ordered_hash.rb +434 -0
  61. data/lib/data_mapper/validation/version.rb +5 -0
  62. data/lib/data_mapper/validation/violation.rb +136 -0
  63. data/lib/data_mapper/validation/violation_set.rb +115 -0
  64. data/lib/data_mapper/validation.rb +105 -0
  65. data/lib/dm-validations.rb +24 -0
  66. data/spec/data_mapper/validation/resource_extensions/save_spec.rb +56 -0
  67. data/spec/data_mapper/validation/resource_extensions/validate_spec.rb +103 -0
  68. data/spec/fixtures/barcode.rb +40 -0
  69. data/spec/fixtures/basketball_court.rb +58 -0
  70. data/spec/fixtures/basketball_player.rb +34 -0
  71. data/spec/fixtures/beta_tester_account.rb +33 -0
  72. data/spec/fixtures/bill_of_landing.rb +47 -0
  73. data/spec/fixtures/boat_dock.rb +26 -0
  74. data/spec/fixtures/city.rb +24 -0
  75. data/spec/fixtures/company.rb +93 -0
  76. data/spec/fixtures/corporate_world.rb +39 -0
  77. data/spec/fixtures/country.rb +24 -0
  78. data/spec/fixtures/ethernet_frame.rb +56 -0
  79. data/spec/fixtures/event.rb +44 -0
  80. data/spec/fixtures/g3_concert.rb +57 -0
  81. data/spec/fixtures/integer_dumped_as_string_property.rb +24 -0
  82. data/spec/fixtures/jabberwock.rb +27 -0
  83. data/spec/fixtures/kayak.rb +28 -0
  84. data/spec/fixtures/lernean_hydra.rb +39 -0
  85. data/spec/fixtures/llama_spaceship.rb +15 -0
  86. data/spec/fixtures/mathematical_function.rb +34 -0
  87. data/spec/fixtures/memory_object.rb +35 -0
  88. data/spec/fixtures/mittelschnauzer.rb +39 -0
  89. data/spec/fixtures/motor_launch.rb +21 -0
  90. data/spec/fixtures/multibyte.rb +16 -0
  91. data/spec/fixtures/page.rb +32 -0
  92. data/spec/fixtures/phone_number.rb +28 -0
  93. data/spec/fixtures/pirogue.rb +28 -0
  94. data/spec/fixtures/programming_language.rb +83 -0
  95. data/spec/fixtures/reservation.rb +38 -0
  96. data/spec/fixtures/scm_operation.rb +56 -0
  97. data/spec/fixtures/sms_message.rb +22 -0
  98. data/spec/fixtures/udp_packet.rb +49 -0
  99. data/spec/integration/absent_field_validator/absent_field_validator_spec.rb +90 -0
  100. data/spec/integration/absent_field_validator/spec_helper.rb +7 -0
  101. data/spec/integration/acceptance_validator/acceptance_validator_spec.rb +196 -0
  102. data/spec/integration/acceptance_validator/spec_helper.rb +7 -0
  103. data/spec/integration/automatic_validation/custom_messages_for_inferred_validation_spec.rb +57 -0
  104. data/spec/integration/automatic_validation/disabling_inferred_validation_spec.rb +49 -0
  105. data/spec/integration/automatic_validation/inferred_boolean_properties_validation_spec.rb +100 -0
  106. data/spec/integration/automatic_validation/inferred_float_property_validation_spec.rb +45 -0
  107. data/spec/integration/automatic_validation/inferred_format_validation_spec.rb +35 -0
  108. data/spec/integration/automatic_validation/inferred_integer_properties_validation_spec.rb +70 -0
  109. data/spec/integration/automatic_validation/inferred_length_validation_spec.rb +142 -0
  110. data/spec/integration/automatic_validation/inferred_presence_validation_spec.rb +45 -0
  111. data/spec/integration/automatic_validation/inferred_primitive_validation_spec.rb +22 -0
  112. data/spec/integration/automatic_validation/inferred_uniqueness_validation_spec.rb +48 -0
  113. data/spec/integration/automatic_validation/inferred_within_validation_spec.rb +35 -0
  114. data/spec/integration/automatic_validation/spec_helper.rb +57 -0
  115. data/spec/integration/block_validator/spec_helper.rb +5 -0
  116. data/spec/integration/conditional_validation/if_condition_spec.rb +63 -0
  117. data/spec/integration/conditional_validation/spec_helper.rb +5 -0
  118. data/spec/integration/confirmation_validator/confirmation_validator_spec.rb +76 -0
  119. data/spec/integration/confirmation_validator/spec_helper.rb +5 -0
  120. data/spec/integration/datamapper_models/association_validation_spec.rb +29 -0
  121. data/spec/integration/datamapper_models/inheritance_spec.rb +82 -0
  122. data/spec/integration/dirty_attributes/dirty_attributes_spec.rb +13 -0
  123. data/spec/integration/duplicated_validations/duplicated_validations_spec.rb +24 -0
  124. data/spec/integration/duplicated_validations/spec_helper.rb +5 -0
  125. data/spec/integration/format_validator/email_format_validator_spec.rb +139 -0
  126. data/spec/integration/format_validator/format_validator_spec.rb +64 -0
  127. data/spec/integration/format_validator/regexp_validator_spec.rb +33 -0
  128. data/spec/integration/format_validator/spec_helper.rb +5 -0
  129. data/spec/integration/format_validator/url_format_validator_spec.rb +91 -0
  130. data/spec/integration/length_validator/default_value_spec.rb +14 -0
  131. data/spec/integration/length_validator/equality_spec.rb +83 -0
  132. data/spec/integration/length_validator/error_message_spec.rb +22 -0
  133. data/spec/integration/length_validator/maximum_spec.rb +47 -0
  134. data/spec/integration/length_validator/minimum_spec.rb +54 -0
  135. data/spec/integration/length_validator/range_spec.rb +87 -0
  136. data/spec/integration/length_validator/spec_helper.rb +7 -0
  137. data/spec/integration/method_validator/method_validator_spec.rb +243 -0
  138. data/spec/integration/method_validator/spec_helper.rb +5 -0
  139. data/spec/integration/numeric_validator/equality_with_float_type_spec.rb +65 -0
  140. data/spec/integration/numeric_validator/equality_with_integer_type_spec.rb +41 -0
  141. data/spec/integration/numeric_validator/float_type_spec.rb +90 -0
  142. data/spec/integration/numeric_validator/gt_with_float_type_spec.rb +37 -0
  143. data/spec/integration/numeric_validator/gte_with_float_type_spec.rb +36 -0
  144. data/spec/integration/numeric_validator/integer_only_true_spec.rb +91 -0
  145. data/spec/integration/numeric_validator/integer_type_spec.rb +86 -0
  146. data/spec/integration/numeric_validator/lt_with_float_type_spec.rb +37 -0
  147. data/spec/integration/numeric_validator/lte_with_float_type_spec.rb +37 -0
  148. data/spec/integration/numeric_validator/spec_helper.rb +5 -0
  149. data/spec/integration/primitive_validator/primitive_validator_spec.rb +112 -0
  150. data/spec/integration/primitive_validator/spec_helper.rb +5 -0
  151. data/spec/integration/pure_ruby_objects/plain_old_ruby_object_validation_spec.rb +118 -0
  152. data/spec/integration/required_field_validator/association_spec.rb +69 -0
  153. data/spec/integration/required_field_validator/boolean_type_value_spec.rb +164 -0
  154. data/spec/integration/required_field_validator/date_type_value_spec.rb +127 -0
  155. data/spec/integration/required_field_validator/datetime_type_value_spec.rb +127 -0
  156. data/spec/integration/required_field_validator/float_type_value_spec.rb +131 -0
  157. data/spec/integration/required_field_validator/integer_type_value_spec.rb +99 -0
  158. data/spec/integration/required_field_validator/plain_old_ruby_object_spec.rb +35 -0
  159. data/spec/integration/required_field_validator/shared_examples.rb +27 -0
  160. data/spec/integration/required_field_validator/spec_helper.rb +7 -0
  161. data/spec/integration/required_field_validator/string_type_value_spec.rb +167 -0
  162. data/spec/integration/required_field_validator/text_type_value_spec.rb +49 -0
  163. data/spec/integration/shared/default_validation_context.rb +13 -0
  164. data/spec/integration/shared/valid_and_invalid_model.rb +35 -0
  165. data/spec/integration/uniqueness_validator/spec_helper.rb +5 -0
  166. data/spec/integration/uniqueness_validator/uniqueness_validator_spec.rb +116 -0
  167. data/spec/integration/within_validator/spec_helper.rb +5 -0
  168. data/spec/integration/within_validator/within_validator_spec.rb +168 -0
  169. data/spec/public/resource_spec.rb +113 -0
  170. data/spec/spec_helper.rb +28 -0
  171. data/spec/unit/contextual_validators/emptiness_spec.rb +50 -0
  172. data/spec/unit/contextual_validators/execution_spec.rb +48 -0
  173. data/spec/unit/contextual_validators/spec_helper.rb +37 -0
  174. data/spec/unit/generic_validator/equality_operator_spec.rb +26 -0
  175. data/spec/unit/generic_validator/optional_spec.rb +54 -0
  176. data/spec/unit/validators/within_validator_spec.rb +23 -0
  177. data/spec/unit/violation_set/adding_spec.rb +54 -0
  178. data/spec/unit/violation_set/emptiness_spec.rb +38 -0
  179. data/spec/unit/violation_set/enumerable_spec.rb +32 -0
  180. data/spec/unit/violation_set/reading_spec.rb +35 -0
  181. data/spec/unit/violation_set/respond_to_spec.rb +15 -0
  182. data/tasks/spec.rake +21 -0
  183. data/tasks/yard.rake +9 -0
  184. data/tasks/yardstick.rake +19 -0
  185. metadata +245 -0
@@ -0,0 +1,69 @@
1
+ require_relative '../../spec_helper'
2
+ require_relative 'spec_helper'
3
+
4
+ describe 'required_field_validator/association_spec' do
5
+
6
+ before :all do
7
+
8
+ class ::Artist
9
+
10
+ include DataMapper::Resource
11
+
12
+ property :id, Serial
13
+ property :name, String, :auto_validation => false
14
+
15
+ has n, :albums
16
+
17
+ validates_presence_of :name
18
+
19
+ end
20
+
21
+ class ::Album
22
+
23
+ include DataMapper::Resource
24
+
25
+ property :id, Serial
26
+ property :name, String, :auto_validation => false
27
+ property :artist_id, Integer, :index => :artist
28
+
29
+ belongs_to :artist
30
+
31
+ validates_presence_of :name, :artist
32
+
33
+ end
34
+
35
+ Artist.auto_migrate!
36
+ Album.auto_migrate!
37
+ end
38
+
39
+
40
+ describe 'Album' do
41
+
42
+ before do
43
+ @artist = Artist.create(:name => "Oceanlab")
44
+ @album = @artist.albums.new(:name => "Sirens of the sea")
45
+ end
46
+
47
+ describe 'with a missing artist' do
48
+ before do
49
+ @album.artist = nil
50
+ end
51
+
52
+ it 'is not valid' do
53
+ expect(@album).not_to be_valid
54
+ end
55
+
56
+ it 'has a meaninful error messages on association key property' do
57
+ @album.valid?
58
+ expect(@album.errors.on(:artist)).to eq [ 'Artist must not be blank' ]
59
+ end
60
+ end
61
+
62
+ describe 'with specified artist and name' do
63
+ it 'is valid' do
64
+ expect(@album).to be_valid
65
+ end
66
+ end
67
+ end
68
+
69
+ end
@@ -0,0 +1,164 @@
1
+ require_relative '../../spec_helper'
2
+ require_relative 'spec_helper'
3
+
4
+ describe 'required_field_validator/boolean_type_value_spec' do
5
+
6
+ # keep in mind any ScmOperation has a default value for brand property
7
+ # so it is used
8
+ describe 'GitOperation' do
9
+ before :all do
10
+ GitOperation.auto_migrate!
11
+ end
12
+
13
+ before do
14
+ @operation = GitOperation.new(:network_connection => true,
15
+ :clean_working_copy => true,
16
+ :message => "I did it! I did it!! Hell yeah!!!")
17
+ end
18
+
19
+ describe "without operation name" do
20
+ before do
21
+ @operation.name = nil
22
+ end
23
+ it_behaves_like 'unnamed SCM operation'
24
+ end
25
+
26
+
27
+
28
+ describe "without network connection" do
29
+ before do
30
+ # now note that false make sense from readability
31
+ # point of view but is incorrect from validator
32
+ # point of view ;)
33
+ @operation.network_connection = nil
34
+ end
35
+
36
+ it "is valid for committing" do
37
+ expect(@operation).to be_valid_for_committing
38
+ expect(@operation.errors.on(:network_connection)).to be_nil
39
+ end
40
+
41
+ it "is not valid for pushing" do
42
+ expect(@operation).not_to be_valid_for_pushing
43
+ # Note: the previous API supported error messages as Hashes (context)
44
+ # I will remove that capability, such that a Rule only stores the
45
+ # message for the context to which the Rule is bound
46
+ # This will provide the same information, but with a simpler API
47
+ # @operation.errors.on(:network_connection).
48
+ # expect(first).to eq 'though git is advanced, it cannot push without network connectivity'
49
+ @operation.errors.on(:network_connection).
50
+ expect(first[:pushing]).to eq 'though git is advanced, it cannot push without network connectivity'
51
+ end
52
+
53
+ it "is not valid for pulling" do
54
+ expect(@operation).not_to be_valid_for_pulling
55
+ # NOTE: See previous spec, above
56
+ @operation.errors.on(:network_connection).
57
+ expect(first[:pulling]).to eq 'you must have network connectivity to pull from others'
58
+ # @operation.errors.on(:network_connection).
59
+ # expect(first).to eq 'you must have network connectivity to pull from others'
60
+ end
61
+
62
+ it "is not valid in default context" do
63
+ expect(@operation).not_to be_valid
64
+ end
65
+ end
66
+
67
+ describe "with a network connection" do
68
+ before do
69
+ @operation.network_connection = false
70
+ end
71
+
72
+ it "is valid for committing" do
73
+ expect(@operation).to be_valid_for_committing
74
+ end
75
+
76
+ it "is valid for pushing" do
77
+ expect(@operation).to be_valid_for_pushing
78
+ end
79
+
80
+ it "is valid for pulling" do
81
+ expect(@operation).to be_valid_for_pulling
82
+ end
83
+
84
+ it "is not valid in default context" do
85
+ expect(@operation).not_to be_valid
86
+ end
87
+ end
88
+
89
+
90
+ describe "WITHOUT a clean working copy" do
91
+ before do
92
+ @operation.clean_working_copy = nil
93
+ end
94
+
95
+ it "is valid for committing" do
96
+ expect(@operation).to be_valid_for_committing
97
+ end
98
+
99
+ it "is valid for pushing" do
100
+ expect(@operation).to be_valid_for_pushing
101
+ end
102
+
103
+ it "is not valid for pulling" do
104
+ expect(@operation).not_to be_valid_for_pulling
105
+ end
106
+
107
+ it "is not valid in default context" do
108
+ expect(@operation).not_to be_valid
109
+ end
110
+ end
111
+
112
+ describe "with a clean working copy" do
113
+ before do
114
+ @operation.clean_working_copy = true
115
+ end
116
+
117
+ it "is valid for committing" do
118
+ expect(@operation).to be_valid_for_committing
119
+ end
120
+
121
+ it "is valid for pushing" do
122
+ expect(@operation).to be_valid_for_pushing
123
+ end
124
+
125
+ it "is valid for pulling" do
126
+ expect(@operation).to be_valid_for_pulling
127
+ end
128
+
129
+ it "is not valid in default context" do
130
+ expect(@operation).not_to be_valid
131
+ end
132
+ end
133
+ end
134
+
135
+
136
+ describe 'SubversionOperation' do
137
+ before do
138
+ SubversionOperation.auto_migrate!
139
+
140
+ @operation = SubversionOperation.new :name => "ci", :network_connection => true,
141
+ :message => "v1.5.8", :clean_working_copy => true
142
+ end
143
+
144
+ describe "without operation name" do
145
+ before do
146
+ @operation.name = nil
147
+ end
148
+ it_behaves_like 'unnamed SCM operation'
149
+ end
150
+
151
+ describe "without network connection" do
152
+ before do
153
+ @operation.network_connection = nil
154
+ end
155
+
156
+ it "virtually useless" do
157
+ expect(@operation).not_to be_valid_for_committing
158
+ expect(@operation).not_to be_valid_for_log_viewing
159
+ end
160
+ end
161
+ end
162
+
163
+
164
+ end
@@ -0,0 +1,127 @@
1
+ require_relative '../../spec_helper'
2
+ require_relative 'spec_helper'
3
+
4
+ describe 'required_field_validator/date_type_value_spec' do
5
+
6
+ class Holiday
7
+ #
8
+ # Behaviors
9
+ #
10
+
11
+ include DataMapper::Resource
12
+
13
+ #
14
+ # Properties
15
+ #
16
+
17
+ property :id, Serial
18
+ property :on, Date, :auto_validation => false
19
+
20
+ #
21
+ # Validations
22
+ #
23
+
24
+ validates_presence_of :on
25
+ end
26
+
27
+ describe 'Holiday' do
28
+ before :all do
29
+ Holiday.auto_migrate!
30
+ end
31
+
32
+ before do
33
+ @ny09 = Holiday.new(:on => Date.new(2008, 12, 31))
34
+ expect(@ny09).to be_valid
35
+ end
36
+
37
+
38
+ describe "with on = nil" do
39
+ before do
40
+ @ny09.on = nil
41
+ end
42
+
43
+ it "is NOT valid" do
44
+ # nil = missing for Date value
45
+ # and Holiday only has default validation context
46
+ expect(@ny09).not_to be_valid
47
+
48
+ # sanity check
49
+ @ny09.on = Date.new(2008, 12, 31)
50
+ expect(@ny09).to be_valid
51
+ end
52
+ end
53
+
54
+
55
+ describe "with on = valid date" do
56
+ before do
57
+ @ny09.on = 0.0
58
+ end
59
+
60
+ it "IS valid" do
61
+ # yes, presence validator does not care
62
+ expect(@ny09).to be_valid
63
+ end
64
+ end
65
+
66
+
67
+
68
+ describe "with on = 0" do
69
+ before do
70
+ @ny09.on = 0
71
+ end
72
+
73
+ it "IS valid" do
74
+ # yes, presence validator does not care
75
+ expect(@ny09).to be_valid
76
+ end
77
+ end
78
+
79
+
80
+
81
+ describe "with on = 100" do
82
+ before do
83
+ @ny09.on = 100
84
+ end
85
+
86
+ it "IS valid" do
87
+ expect(@ny09).to be_valid
88
+ end
89
+ end
90
+
91
+
92
+ describe "with on = 100.0" do
93
+ before do
94
+ @ny09.on = 100.0
95
+ end
96
+
97
+ it "IS valid" do
98
+ expect(@ny09).to be_valid
99
+ end
100
+ end
101
+
102
+
103
+ describe "with on = -1100" do
104
+ before do
105
+ # presence validator does not care
106
+ @ny09.on = -1100
107
+ end
108
+
109
+ it "IS valid" do
110
+ expect(@ny09).to be_valid
111
+ end
112
+ end
113
+
114
+
115
+ describe "with on = -1100.5" do
116
+ before do
117
+ # presence validator does not care
118
+ @ny09.on = -1100.5
119
+ end
120
+
121
+ it "IS valid" do
122
+ expect(@ny09).to be_valid
123
+ end
124
+ end
125
+ end
126
+
127
+ end
@@ -0,0 +1,127 @@
1
+ require_relative '../../spec_helper'
2
+ require_relative 'spec_helper'
3
+
4
+ describe 'required_field_validator/datetime_type_value_spec' do
5
+
6
+ class ScheduledOperation
7
+ #
8
+ # Behaviors
9
+ #
10
+
11
+ include DataMapper::Resource
12
+
13
+ #
14
+ # Properties
15
+ #
16
+
17
+ property :id, Serial
18
+ property :at, DateTime, :auto_validation => false
19
+
20
+ #
21
+ # Validations
22
+ #
23
+
24
+ validates_presence_of :at
25
+ end
26
+
27
+ describe 'ScheduledOperation' do
28
+ before :all do
29
+ ScheduledOperation.auto_migrate!
30
+ end
31
+
32
+ before do
33
+ @operation = ScheduledOperation.new(:at => DateTime.civil(2008, 06, 07, 15, 00, 00))
34
+ expect(@operation).to be_valid
35
+ end
36
+
37
+
38
+ describe "with on = nil" do
39
+ before do
40
+ @operation.at = nil
41
+ end
42
+
43
+ it "is NOT valid" do
44
+ # nil = missing for Date value
45
+ # and ScheduledOperation only has default validation context
46
+ expect(@operation).not_to be_valid
47
+
48
+ # sanity check
49
+ @operation.at = Date.new(2008, 12, 31)
50
+ expect(@operation).to be_valid
51
+ end
52
+ end
53
+
54
+
55
+ describe "with on = valid date" do
56
+ before do
57
+ @operation.at = 0.0
58
+ end
59
+
60
+ it "IS valid" do
61
+ # yes, presence validator does not care
62
+ expect(@operation).to be_valid
63
+ end
64
+ end
65
+
66
+
67
+
68
+ describe "with on = 0" do
69
+ before do
70
+ @operation.at = 0
71
+ end
72
+
73
+ it "IS valid" do
74
+ # yes, presence validator does not care
75
+ expect(@operation).to be_valid
76
+ end
77
+ end
78
+
79
+
80
+
81
+ describe "with on = 100" do
82
+ before do
83
+ @operation.at = 100
84
+ end
85
+
86
+ it "IS valid" do
87
+ expect(@operation).to be_valid
88
+ end
89
+ end
90
+
91
+
92
+ describe "with on = 100.0" do
93
+ before do
94
+ @operation.at = 100.0
95
+ end
96
+
97
+ it "IS valid" do
98
+ expect(@operation).to be_valid
99
+ end
100
+ end
101
+
102
+
103
+ describe "with on = -1100" do
104
+ before do
105
+ # presence validator does not care
106
+ @operation.at = -1100
107
+ end
108
+
109
+ it "IS valid" do
110
+ expect(@operation).to be_valid
111
+ end
112
+ end
113
+
114
+
115
+ describe "with on = -1100.5" do
116
+ before do
117
+ # presence validator does not care
118
+ @operation.at = -1100.5
119
+ end
120
+
121
+ it "IS valid" do
122
+ expect(@operation).to be_valid
123
+ end
124
+ end
125
+ end
126
+
127
+ end
@@ -0,0 +1,131 @@
1
+ require_relative '../../spec_helper'
2
+ require_relative 'spec_helper'
3
+
4
+ describe 'required_field_validator/float_type_value_spec' do
5
+
6
+ #
7
+ # Especially stupid example since Hg adds local repository revision
8
+ # to each new commit, but lets roll on with this SCM-ish classes and
9
+ # still show how Integer type values are validated for presence
10
+ #
11
+ class CpuConsumption
12
+ #
13
+ # Behaviors
14
+ #
15
+
16
+ include DataMapper::Resource
17
+
18
+ #
19
+ # Properties
20
+ #
21
+
22
+ property :id, Serial
23
+ property :percent, Float, :auto_validation => false
24
+
25
+ #
26
+ # Validations
27
+ #
28
+
29
+ validates_presence_of :percent
30
+ end
31
+
32
+ describe 'CpuConsumption' do
33
+ before :all do
34
+ CpuConsumption.auto_migrate!
35
+ end
36
+
37
+ before do
38
+ @metric = CpuConsumption.new(:percent => 20.0)
39
+ expect(@metric).to be_valid
40
+ end
41
+
42
+ describe "with percentage = 0.0" do
43
+ before do
44
+ @metric.percent = 0.0
45
+ end
46
+
47
+ it "IS valid" do
48
+ # yes, presence validator does not care
49
+ expect(@metric).to be_valid
50
+ end
51
+ end
52
+
53
+
54
+
55
+ describe "with percentage = 0" do
56
+ before do
57
+ @metric.percent = 0
58
+ end
59
+
60
+ it "IS valid" do
61
+ # yes, presence validator does not care
62
+ expect(@metric).to be_valid
63
+ end
64
+ end
65
+
66
+
67
+
68
+ describe "with percentage = 100" do
69
+ before do
70
+ @metric.percent = 100
71
+ end
72
+
73
+ it "IS valid" do
74
+ expect(@metric).to be_valid
75
+ end
76
+ end
77
+
78
+
79
+ describe "with percentage = 100.0" do
80
+ before do
81
+ @metric.percent = 100.0
82
+ end
83
+
84
+ it "IS valid" do
85
+ expect(@metric).to be_valid
86
+ end
87
+ end
88
+
89
+
90
+ describe "with percentage = -1100" do
91
+ before do
92
+ # presence validator does not care
93
+ @metric.percent = -1100
94
+ end
95
+
96
+ it "IS valid" do
97
+ expect(@metric).to be_valid
98
+ end
99
+ end
100
+
101
+
102
+ describe "with percentage = -1100.5" do
103
+ before do
104
+ # presence validator does not care
105
+ @metric.percent = -1100.5
106
+ end
107
+
108
+ it "IS valid" do
109
+ expect(@metric).to be_valid
110
+ end
111
+ end
112
+
113
+
114
+ describe "with percentage = nil" do
115
+ before do
116
+ @metric.percent = nil
117
+ end
118
+
119
+ it "is NOT valid" do
120
+ # nil = missing for float value
121
+ # and CpuConsumption only has default validation context
122
+ expect(@metric).not_to be_valid
123
+
124
+ # sanity check
125
+ @metric.percent = 100
126
+ expect(@metric).to be_valid
127
+ end
128
+ end
129
+ end
130
+
131
+ end
@@ -0,0 +1,99 @@
1
+ require_relative '../../spec_helper'
2
+ require_relative 'spec_helper'
3
+
4
+ describe 'required_field_validator/integer_type_value_spec' do
5
+
6
+ #
7
+ # Especially stupid example since Hg adds local repository revision
8
+ # to each new commit, but lets roll on with this SCM-ish classes and
9
+ # still show how Integer type values are validated for presence
10
+ #
11
+ class HgCommit < ScmOperation
12
+ #
13
+ # Properties
14
+ #
15
+
16
+ property :local_repo_revision_num, Integer, :auto_validation => false
17
+
18
+ #
19
+ # Validations
20
+ #
21
+
22
+ validates_presence_of :local_repo_revision_num
23
+ end
24
+
25
+ describe 'HgCommit' do
26
+ before :all do
27
+ HgCommit.auto_migrate!
28
+ end
29
+
30
+ before do
31
+ @operation = HgCommit.new(:local_repo_revision_num => 90, :name => "ci")
32
+ expect(@operation).to be_valid
33
+ end
34
+
35
+ describe "with local revision number = 0" do
36
+ before do
37
+ @operation.local_repo_revision_num = 0
38
+ end
39
+
40
+ it "IS valid" do
41
+ # yes, presence validator does not care
42
+ expect(@operation).to be_valid
43
+ end
44
+ end
45
+
46
+
47
+
48
+ describe "with local revision number = 100" do
49
+ before do
50
+ @operation.local_repo_revision_num = 100
51
+ end
52
+
53
+ it "IS valid" do
54
+ expect(@operation).to be_valid
55
+ end
56
+ end
57
+
58
+
59
+ describe "with local revision number = 100.0 (float!)" do
60
+ before do
61
+ @operation.local_repo_revision_num = 100.0
62
+ end
63
+
64
+ it "IS valid" do
65
+ expect(@operation).to be_valid
66
+ end
67
+ end
68
+
69
+
70
+ describe "with local revision number = -1100" do
71
+ before do
72
+ # presence validator does not care
73
+ @operation.local_repo_revision_num = -1100
74
+ end
75
+
76
+ it "IS valid" do
77
+ expect(@operation).to be_valid
78
+ end
79
+ end
80
+
81
+
82
+ describe "with local revision number = nil" do
83
+ before do
84
+ @operation.local_repo_revision_num = nil
85
+ end
86
+
87
+ it "is NOT valid" do
88
+ # nil = missing for integer value
89
+ # and HgCommit only has default validation context
90
+ expect(@operation).not_to be_valid
91
+
92
+ # sanity check
93
+ @operation.local_repo_revision_num = 100
94
+ expect(@operation).to be_valid
95
+ end
96
+ end
97
+ end
98
+
99
+ end