aequitas 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (199) hide show
  1. data/VERSION +1 -1
  2. data/lib/aequitas/contextual_rule_set.rb +23 -29
  3. data/lib/aequitas/macros.rb +6 -0
  4. data/lib/aequitas/message_transformer.rb +23 -8
  5. data/lib/aequitas/rule.rb +2 -23
  6. data/lib/aequitas/rule/block.rb +5 -0
  7. data/lib/aequitas/rule/format.rb +24 -28
  8. data/lib/aequitas/rule/{formats/email.rb → format/email_address.rb} +7 -3
  9. data/lib/aequitas/rule/format/proc.rb +4 -10
  10. data/lib/aequitas/rule/format/regexp.rb +4 -6
  11. data/lib/aequitas/rule/{formats → format}/url.rb +7 -3
  12. data/lib/aequitas/rule/guard.rb +2 -2
  13. data/lib/aequitas/rule/length.rb +29 -30
  14. data/lib/aequitas/rule/length/equal.rb +4 -4
  15. data/lib/aequitas/rule/length/maximum.rb +4 -6
  16. data/lib/aequitas/rule/length/minimum.rb +4 -6
  17. data/lib/aequitas/rule/length/range.rb +4 -6
  18. data/lib/aequitas/rule/method.rb +6 -1
  19. data/lib/aequitas/rule/numericalness.rb +19 -40
  20. data/lib/aequitas/rule/numericalness/integer.rb +3 -19
  21. data/lib/aequitas/rule/numericalness/non_integer.rb +2 -18
  22. data/lib/aequitas/rule/primitive_type.rb +17 -6
  23. data/lib/aequitas/rule/primitive_type/virtus.rb +25 -0
  24. data/lib/aequitas/rule/skip_condition.rb +2 -2
  25. data/lib/aequitas/rule/value.rb +64 -0
  26. data/lib/aequitas/rule/{numericalness → value}/equal.rb +5 -7
  27. data/lib/aequitas/rule/{numericalness → value}/greater_than.rb +5 -7
  28. data/lib/aequitas/rule/{numericalness → value}/greater_than_or_equal.rb +5 -7
  29. data/lib/aequitas/rule/{numericalness → value}/less_than.rb +5 -7
  30. data/lib/aequitas/rule/{numericalness → value}/less_than_or_equal.rb +5 -7
  31. data/lib/aequitas/rule/{numericalness → value}/not_equal.rb +5 -7
  32. data/lib/aequitas/rule/value/range.rb +25 -0
  33. data/lib/aequitas/rule/within.rb +25 -13
  34. data/lib/aequitas/rule_set.rb +2 -2
  35. data/lib/aequitas/support/{equalizable.rb → value_object.rb} +2 -3
  36. data/lib/aequitas/version.rb +1 -1
  37. data/lib/aequitas/violation.rb +4 -4
  38. data/lib/aequitas/violation_set.rb +2 -3
  39. data/lib/aequitas/virtus_integration.rb +31 -0
  40. data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor.rb +30 -0
  41. data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/array.rb +29 -0
  42. data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/boolean.rb +17 -0
  43. data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/numeric.rb +22 -0
  44. data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/object.rb +38 -0
  45. data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/string.rb +35 -0
  46. data/spec/integration/aequitas/macros/validates_numericalness_of_spec.rb +77 -8
  47. data/spec/integration/aequitas/macros/validates_value_of_spec.rb +27 -0
  48. data/spec/integration/aequitas/macros/validates_within.rb +10 -74
  49. data/spec/integration/shared/macros/integration_spec.rb +10 -0
  50. data/spec/integration/virtus/array/length/equal_spec.rb +49 -0
  51. data/spec/integration/virtus/array/length/range_spec.rb +59 -0
  52. data/spec/integration/virtus/boolean/presence_spec.rb +4 -4
  53. data/spec/integration/virtus/integer/value/equal_to_spec.rb +45 -0
  54. data/spec/integration/virtus/integer/value/greater_than_or_equal.rb +45 -0
  55. data/spec/integration/virtus/integer/value/greater_than_spec.rb +45 -0
  56. data/spec/integration/virtus/integer/value/less_than_or_equal.rb +45 -0
  57. data/spec/integration/virtus/integer/value/less_than_spec.rb +45 -0
  58. data/spec/integration/virtus/integer/value/not_equal_to_spec.rb +45 -0
  59. data/spec/integration/virtus/string/format/email_address_spec.rb +3 -3
  60. data/spec/integration/virtus/string/format/regexp_spec.rb +2 -2
  61. data/spec/integration/virtus/string/format/url_spec.rb +2 -2
  62. data/spec/integration/virtus/string/length/equal_spec.rb +3 -3
  63. data/spec/integration/virtus/string/length/range_spec.rb +2 -2
  64. data/spec/integration/virtus/string/presence_spec.rb +2 -2
  65. data/spec/unit/aequitas/support/{equalizable → value_object}/equalizer_spec.rb +4 -4
  66. data/spec/unit/aequitas/support/{equalizable_spec.rb → value_object_spec.rb} +11 -11
  67. data/spec/unit/aequitas/violation_set_spec.rb +1 -1
  68. metadata +46 -149
  69. data/.gitignore +0 -4
  70. data/.rvmrc +0 -1
  71. data/aequitas.gemspec +0 -20
  72. data/lib/aequitas/rule/within/range.rb +0 -53
  73. data/lib/aequitas/rule/within/range/bounded.rb +0 -25
  74. data/lib/aequitas/rule/within/range/unbounded_begin.rb +0 -25
  75. data/lib/aequitas/rule/within/range/unbounded_end.rb +0 -25
  76. data/lib/aequitas/rule/within/set.rb +0 -39
  77. data/lib/aequitas/virtus.rb +0 -29
  78. data/lib/aequitas/virtus/inline_attribute_rule_extractor.rb +0 -41
  79. data/lib/aequitas/virtus/inline_attribute_rule_extractor/boolean.rb +0 -17
  80. data/lib/aequitas/virtus/inline_attribute_rule_extractor/object.rb +0 -25
  81. data/lib/aequitas/virtus/inline_attribute_rule_extractor/string.rb +0 -27
  82. data/spec_legacy/fixtures/barcode.rb +0 -40
  83. data/spec_legacy/fixtures/basketball_court.rb +0 -58
  84. data/spec_legacy/fixtures/basketball_player.rb +0 -34
  85. data/spec_legacy/fixtures/beta_tester_account.rb +0 -33
  86. data/spec_legacy/fixtures/bill_of_landing.rb +0 -47
  87. data/spec_legacy/fixtures/boat_dock.rb +0 -26
  88. data/spec_legacy/fixtures/city.rb +0 -24
  89. data/spec_legacy/fixtures/company.rb +0 -93
  90. data/spec_legacy/fixtures/corporate_world.rb +0 -39
  91. data/spec_legacy/fixtures/country.rb +0 -24
  92. data/spec_legacy/fixtures/ethernet_frame.rb +0 -56
  93. data/spec_legacy/fixtures/event.rb +0 -44
  94. data/spec_legacy/fixtures/g3_concert.rb +0 -57
  95. data/spec_legacy/fixtures/jabberwock.rb +0 -27
  96. data/spec_legacy/fixtures/kayak.rb +0 -28
  97. data/spec_legacy/fixtures/lernean_hydra.rb +0 -39
  98. data/spec_legacy/fixtures/llama_spaceship.rb +0 -15
  99. data/spec_legacy/fixtures/mathematical_function.rb +0 -34
  100. data/spec_legacy/fixtures/memory_object.rb +0 -30
  101. data/spec_legacy/fixtures/mittelschnauzer.rb +0 -39
  102. data/spec_legacy/fixtures/motor_launch.rb +0 -21
  103. data/spec_legacy/fixtures/multibyte.rb +0 -16
  104. data/spec_legacy/fixtures/page.rb +0 -32
  105. data/spec_legacy/fixtures/phone_number.rb +0 -28
  106. data/spec_legacy/fixtures/pirogue.rb +0 -28
  107. data/spec_legacy/fixtures/programming_language.rb +0 -83
  108. data/spec_legacy/fixtures/reservation.rb +0 -38
  109. data/spec_legacy/fixtures/scm_operation.rb +0 -56
  110. data/spec_legacy/fixtures/sms_message.rb +0 -22
  111. data/spec_legacy/fixtures/udp_packet.rb +0 -49
  112. data/spec_legacy/integration/absent_field_validator/absent_field_validator_spec.rb +0 -90
  113. data/spec_legacy/integration/absent_field_validator/spec_helper.rb +0 -7
  114. data/spec_legacy/integration/acceptance_validator/acceptance_validator_spec.rb +0 -196
  115. data/spec_legacy/integration/acceptance_validator/spec_helper.rb +0 -7
  116. data/spec_legacy/integration/automatic_validation/custom_messages_for_inferred_validation_spec.rb +0 -57
  117. data/spec_legacy/integration/automatic_validation/disabling_inferred_validation_spec.rb +0 -49
  118. data/spec_legacy/integration/automatic_validation/inferred_boolean_properties_validation_spec.rb +0 -100
  119. data/spec_legacy/integration/automatic_validation/inferred_float_property_validation_spec.rb +0 -45
  120. data/spec_legacy/integration/automatic_validation/inferred_format_validation_spec.rb +0 -35
  121. data/spec_legacy/integration/automatic_validation/inferred_integer_properties_validation_spec.rb +0 -70
  122. data/spec_legacy/integration/automatic_validation/inferred_length_validation_spec.rb +0 -142
  123. data/spec_legacy/integration/automatic_validation/inferred_presence_validation_spec.rb +0 -45
  124. data/spec_legacy/integration/automatic_validation/inferred_primitive_validation_spec.rb +0 -22
  125. data/spec_legacy/integration/automatic_validation/inferred_uniqueness_validation_spec.rb +0 -48
  126. data/spec_legacy/integration/automatic_validation/inferred_within_validation_spec.rb +0 -35
  127. data/spec_legacy/integration/automatic_validation/spec_helper.rb +0 -57
  128. data/spec_legacy/integration/block_validator/block_validator_spec.rb +0 -32
  129. data/spec_legacy/integration/block_validator/spec_helper.rb +0 -5
  130. data/spec_legacy/integration/conditional_validation/if_condition_spec.rb +0 -63
  131. data/spec_legacy/integration/conditional_validation/spec_helper.rb +0 -5
  132. data/spec_legacy/integration/confirmation_validator/confirmation_validator_spec.rb +0 -76
  133. data/spec_legacy/integration/confirmation_validator/spec_helper.rb +0 -5
  134. data/spec_legacy/integration/datamapper_models/association_validation_spec.rb +0 -29
  135. data/spec_legacy/integration/datamapper_models/inheritance_spec.rb +0 -82
  136. data/spec_legacy/integration/dirty_attributes/dirty_attributes_spec.rb +0 -13
  137. data/spec_legacy/integration/duplicated_validations/duplicated_validations_spec.rb +0 -24
  138. data/spec_legacy/integration/duplicated_validations/spec_helper.rb +0 -5
  139. data/spec_legacy/integration/format_validator/email_format_validator_spec.rb +0 -139
  140. data/spec_legacy/integration/format_validator/format_validator_spec.rb +0 -64
  141. data/spec_legacy/integration/format_validator/regexp_validator_spec.rb +0 -33
  142. data/spec_legacy/integration/format_validator/spec_helper.rb +0 -5
  143. data/spec_legacy/integration/format_validator/url_format_validator_spec.rb +0 -93
  144. data/spec_legacy/integration/length_validator/default_value_spec.rb +0 -14
  145. data/spec_legacy/integration/length_validator/equality_spec.rb +0 -87
  146. data/spec_legacy/integration/length_validator/error_message_spec.rb +0 -22
  147. data/spec_legacy/integration/length_validator/maximum_spec.rb +0 -49
  148. data/spec_legacy/integration/length_validator/minimum_spec.rb +0 -54
  149. data/spec_legacy/integration/length_validator/range_spec.rb +0 -87
  150. data/spec_legacy/integration/length_validator/spec_helper.rb +0 -7
  151. data/spec_legacy/integration/method_validator/method_validator_spec.rb +0 -242
  152. data/spec_legacy/integration/method_validator/spec_helper.rb +0 -5
  153. data/spec_legacy/integration/numeric_validator/equality_with_float_type_spec.rb +0 -65
  154. data/spec_legacy/integration/numeric_validator/equality_with_integer_type_spec.rb +0 -41
  155. data/spec_legacy/integration/numeric_validator/float_type_spec.rb +0 -90
  156. data/spec_legacy/integration/numeric_validator/gt_with_float_type_spec.rb +0 -37
  157. data/spec_legacy/integration/numeric_validator/gte_with_float_type_spec.rb +0 -37
  158. data/spec_legacy/integration/numeric_validator/integer_only_true_spec.rb +0 -91
  159. data/spec_legacy/integration/numeric_validator/integer_type_spec.rb +0 -86
  160. data/spec_legacy/integration/numeric_validator/lt_with_float_type_spec.rb +0 -37
  161. data/spec_legacy/integration/numeric_validator/lte_with_float_type_spec.rb +0 -37
  162. data/spec_legacy/integration/numeric_validator/spec_helper.rb +0 -5
  163. data/spec_legacy/integration/primitive_validator/primitive_validator_spec.rb +0 -92
  164. data/spec_legacy/integration/primitive_validator/spec_helper.rb +0 -5
  165. data/spec_legacy/integration/pure_ruby_objects/plain_old_ruby_object_validation_spec.rb +0 -118
  166. data/spec_legacy/integration/required_field_validator/association_spec.rb +0 -69
  167. data/spec_legacy/integration/required_field_validator/boolean_type_value_spec.rb +0 -164
  168. data/spec_legacy/integration/required_field_validator/date_type_value_spec.rb +0 -127
  169. data/spec_legacy/integration/required_field_validator/datetime_type_value_spec.rb +0 -127
  170. data/spec_legacy/integration/required_field_validator/float_type_value_spec.rb +0 -131
  171. data/spec_legacy/integration/required_field_validator/integer_type_value_spec.rb +0 -99
  172. data/spec_legacy/integration/required_field_validator/plain_old_ruby_object_spec.rb +0 -35
  173. data/spec_legacy/integration/required_field_validator/shared_examples.rb +0 -26
  174. data/spec_legacy/integration/required_field_validator/spec_helper.rb +0 -7
  175. data/spec_legacy/integration/required_field_validator/string_type_value_spec.rb +0 -167
  176. data/spec_legacy/integration/required_field_validator/text_type_value_spec.rb +0 -49
  177. data/spec_legacy/integration/shared/default_validation_context.rb +0 -13
  178. data/spec_legacy/integration/shared/valid_and_invalid_model.rb +0 -35
  179. data/spec_legacy/integration/uniqueness_validator/spec_helper.rb +0 -5
  180. data/spec_legacy/integration/uniqueness_validator/uniqueness_validator_spec.rb +0 -116
  181. data/spec_legacy/integration/within_validator/spec_helper.rb +0 -5
  182. data/spec_legacy/integration/within_validator/within_validator_spec.rb +0 -168
  183. data/spec_legacy/public/resource_spec.rb +0 -105
  184. data/spec_legacy/spec.opts +0 -4
  185. data/spec_legacy/spec_helper.rb +0 -29
  186. data/spec_legacy/unit/contextual_validators/emptiness_spec.rb +0 -50
  187. data/spec_legacy/unit/contextual_validators/execution_spec.rb +0 -48
  188. data/spec_legacy/unit/contextual_validators/spec_helper.rb +0 -37
  189. data/spec_legacy/unit/generic_validator/equality_operator_spec.rb +0 -26
  190. data/spec_legacy/unit/generic_validator/optional_spec.rb +0 -54
  191. data/spec_legacy/unit/validators/within_validator_spec.rb +0 -23
  192. data/spec_legacy/unit/violation_set/adding_spec.rb +0 -54
  193. data/spec_legacy/unit/violation_set/emptiness_spec.rb +0 -38
  194. data/spec_legacy/unit/violation_set/enumerable_spec.rb +0 -32
  195. data/spec_legacy/unit/violation_set/reading_spec.rb +0 -35
  196. data/spec_legacy/unit/violation_set/respond_to_spec.rb +0 -15
  197. data/tasks/spec.rake +0 -38
  198. data/tasks/yard.rake +0 -9
  199. data/tasks/yardstick.rake +0 -19
@@ -1,5 +0,0 @@
1
- # make sure you check out spec/fixtures to see fixture models
2
- # already written
3
- #
4
- # DataMapper developers feels strongly against foobars in the spec
5
- # suite
@@ -1,168 +0,0 @@
1
- require 'spec_helper'
2
- require 'integration/within_validator/spec_helper'
3
-
4
- describe 'DataMapper::Validations::Fixtures::PhoneNumber' do
5
- before :all do
6
- DataMapper::Validations::Fixtures::PhoneNumber.auto_migrate!
7
-
8
- @model = DataMapper::Validations::Fixtures::PhoneNumber.new(:type_of_number => 'cell')
9
- @model.should be_valid
10
- end
11
-
12
- describe "with type of number set to 'home'" do
13
- before :all do
14
- @model.type_of_number = 'home'
15
- end
16
-
17
- it_should_behave_like "valid model"
18
- end
19
-
20
-
21
- describe "with type of number set to 'cell'" do
22
- before :all do
23
- @model.type_of_number = 'cell'
24
- end
25
-
26
- it_should_behave_like "valid model"
27
- end
28
-
29
-
30
- describe "with type of number set to 'work'" do
31
- before :all do
32
- @model.type_of_number = 'home'
33
- end
34
-
35
- it_should_behave_like "valid model"
36
- end
37
-
38
-
39
- describe "with type of number set to 'fax'" do
40
- before :all do
41
- @model.type_of_number = 'fax'
42
- end
43
-
44
- it_should_behave_like "invalid model"
45
-
46
- it "has meaningful error message on invalid property" do
47
- @model.errors.on(:type_of_number).should == [ 'Should be one of: home, cell or work' ]
48
- end
49
- end
50
- end
51
-
52
-
53
-
54
- describe 'DataMapper::Validations::Fixtures::MathematicalFunction' do
55
- before :all do
56
- DataMapper::Validations::Fixtures::MathematicalFunction.auto_migrate!
57
-
58
- @model = DataMapper::Validations::Fixtures::MathematicalFunction.new(:input => 2, :output => -2)
59
- @model.should be_valid
60
- end
61
-
62
- describe "with input = 0" do
63
- before :all do
64
- @model.input = 0
65
- end
66
-
67
- it_should_behave_like "invalid model"
68
-
69
- it "notices 'greater than or equal to 1' in the error message" do
70
- @model.errors.on(:input).should == [ 'Input must be greater than or equal to 1' ]
71
- end
72
- end
73
-
74
- describe "with input = -10" do
75
- before :all do
76
- @model.input = -10
77
- end
78
-
79
- it_should_behave_like "invalid model"
80
-
81
- it "notices 'greater than or equal to 1' in the error message" do
82
- @model.errors.on(:input).should == [ 'Input must be greater than or equal to 1' ]
83
- end
84
- end
85
-
86
- describe "with input = -Infinity" do
87
- before :all do
88
- @model.input = -(1.0/0)
89
- end
90
-
91
- it_should_behave_like "invalid model"
92
-
93
- it "notices 'greater than or equal to 1' in the error message" do
94
- @model.errors.on(:input).should == [ 'Input must be greater than or equal to 1' ]
95
- end
96
- end
97
-
98
- describe "with input = 10" do
99
- before :all do
100
- @model.input = 10
101
- end
102
-
103
- it_should_behave_like "valid model"
104
- end
105
-
106
-
107
- describe "with input = Infinity" do
108
- before :all do
109
- @model.input = (1.0/0)
110
- end
111
-
112
- it_should_behave_like "valid model"
113
- end
114
-
115
-
116
- #
117
- # Function range
118
- #
119
-
120
- describe "with output = 0" do
121
- before :all do
122
- @model.output = 0
123
- end
124
-
125
- it_should_behave_like "valid model"
126
- end
127
-
128
- describe "with output = -10" do
129
- before :all do
130
- @model.output = -10
131
- end
132
-
133
- it_should_behave_like "valid model"
134
- end
135
-
136
- describe "with output = -Infinity" do
137
- before :all do
138
- @model.output = -(1.0/0)
139
- end
140
-
141
- it_should_behave_like "valid model"
142
- end
143
-
144
- describe "with output = 10" do
145
- before :all do
146
- @model.output = 10
147
- end
148
-
149
- it_should_behave_like "invalid model"
150
-
151
- it "uses overriden error message" do
152
- @model.errors.on(:output).should == [ 'Negative values or zero only, please' ]
153
- end
154
- end
155
-
156
-
157
- describe "with output = Infinity" do
158
- before :all do
159
- @model.output = (1.0/0)
160
- end
161
-
162
- it_should_behave_like "invalid model"
163
-
164
- it "uses overriden error message" do
165
- @model.errors.on(:output).should == [ 'Negative values or zero only, please' ]
166
- end
167
- end
168
- end
@@ -1,105 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe 'DataMapper::Resource' do
4
- before :all do
5
- DataMapper::Validations::Fixtures::Barcode.destroy!
6
-
7
- @resource = DataMapper::Validations::Fixtures::Barcode.new
8
- end
9
-
10
- describe '#update' do
11
- describe 'when provided valid attributes' do
12
- before :all do
13
- @response = @resource.update(:code => 'a' * 10)
14
- end
15
-
16
- it 'should return true' do
17
- @response.should be(true)
18
- end
19
- end
20
-
21
- describe 'when provided invalid attributes' do
22
- before :all do
23
- @response = @resource.update(:code => 'a' * 11)
24
- end
25
-
26
- it 'should return false' do
27
- @response.should be(false)
28
- end
29
-
30
- it 'should set errors' do
31
- @resource.errors.to_a.should == [ [ 'Code must be at most 10 characters long' ] ]
32
- end
33
- end
34
-
35
- describe 'when provided invalid attributes and a context' do
36
- before :all do
37
- DataMapper::Validations::Fixtures::Organisation.destroy!
38
- DataMapper::Validations::Fixtures::Department.destroy!
39
- DataMapper::Validations::Fixtures::User.destroy!
40
-
41
- organization = DataMapper::Validations::Fixtures::Organisation.create(:name => 'Org 101', :domain => '101')
42
- dept = DataMapper::Validations::Fixtures::Department.create(:name => 'accounting')
43
-
44
- attributes = {
45
- :organisation => organization,
46
- :user_name => 'guy',
47
- :department => dept,
48
- }
49
-
50
- # create a record that will be a dupe when User#update is executed below
51
- DataMapper::Validations::Fixtures::User.create(attributes).should be_saved
52
-
53
- @resource = DataMapper::Validations::Fixtures::User.create(attributes.merge(:user_name => 'other'))
54
-
55
- @response = @resource.update(attributes, :signing_up_for_department_account)
56
- end
57
-
58
- it 'should return false' do
59
- @response.should be(false)
60
- end
61
-
62
- it 'should set errors' do
63
- @resource.errors.to_a.should == [ [ 'User name is already taken' ] ]
64
- end
65
- end
66
- end
67
-
68
- describe '#save' do
69
- before :all do
70
- @resource.code = 'a' * 10
71
- @resource.save
72
- end
73
-
74
- describe 'on a new resource' do
75
- it 'should call valid? once' do
76
- @resource.valid_hook_call_count.should == 1
77
- end
78
- end
79
-
80
- describe 'on a saved, non-dirty resource' do
81
- before :all do
82
- # reload the resource
83
- @resource = @resource.model.get(*@resource.key)
84
- @resource.save
85
- end
86
-
87
- it 'should call valid?' do
88
- @resource.valid_hook_call_count.should == 1
89
- end
90
- end
91
-
92
- describe 'on a saved, dirty resource' do
93
- before :all do
94
- # reload the resource
95
- @resource = @resource.model.get(*@resource.key)
96
- @resource.code = 'b' * 10
97
- @resource.save
98
- end
99
-
100
- it 'should call valid? once' do
101
- @resource.valid_hook_call_count.should == 1
102
- end
103
- end
104
- end
105
- end
@@ -1,4 +0,0 @@
1
- --colour
2
- --loadby random
3
- --format profile
4
- --backtrace
@@ -1,29 +0,0 @@
1
- require 'dm-core/spec/setup'
2
- require 'dm-core/spec/lib/adapter_helpers'
3
-
4
- require 'dm-validations'
5
- require 'dm-types'
6
- require 'dm-migrations'
7
-
8
- class Hash
9
- def except(*keys)
10
- hash = dup
11
- keys.each { |key| hash.delete(key) }
12
- hash
13
- end
14
- end
15
-
16
- SPEC_ROOT = Pathname(__FILE__).dirname
17
- Pathname.glob((SPEC_ROOT + 'fixtures/**/*.rb').to_s).each { |file| require file }
18
- Pathname.glob((SPEC_ROOT + 'integration/shared/**/*.rb').to_s).each { |file| require file }
19
-
20
- DataMapper::Spec.setup
21
- DataMapper.finalize
22
-
23
- Spec::Runner.configure do |config|
24
- config.extend(DataMapper::Spec::Adapters::Helpers)
25
-
26
- config.before :suite do
27
- DataMapper.finalize.auto_migrate!
28
- end
29
- end
@@ -1,50 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- require 'spec_helper'
3
- require 'unit/contextual_validators/spec_helper'
4
-
5
- describe 'DataMapper::Validations::ContextualRuleSet' do
6
- before :all do
7
- @validators = DataMapper::Validations::ContextualRuleSet.new
8
- end
9
-
10
- describe "initially" do
11
- it "is empty" do
12
- @validators.should be_empty
13
- end
14
- end
15
-
16
-
17
- describe "after first reference to context" do
18
- before :all do
19
- @validators.context(:create)
20
- end
21
-
22
- it "initializes list of validators for referred context" do
23
- @validators.context(:create).should be_empty
24
- end
25
- end
26
-
27
-
28
- describe "after a context being added" do
29
- before :all do
30
- @validators.context(:default) << DataMapper::Validations::Rule::Presence.new(:toc, :when => [:publishing])
31
- end
32
-
33
- it "is no longer empty" do
34
- @validators.should_not be_empty
35
- end
36
- end
37
-
38
-
39
- describe "when cleared" do
40
- before :all do
41
- @validators.context(:default) << DataMapper::Validations::Rule::Presence.new(:toc, :when => [:publishing])
42
- @validators.should_not be_empty
43
- @validators.clear
44
- end
45
-
46
- it "becomes empty again" do
47
- @validators.should be_empty
48
- end
49
- end
50
- end
@@ -1,48 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- require 'spec_helper'
3
- require 'unit/contextual_validators/spec_helper'
4
-
5
- describe 'DataMapper::Validations::ContextualRuleSet' do
6
- before :all do
7
- @validators = DataMapper::Validations::ContextualRuleSet.new
8
- end
9
-
10
- describe "#execute(name, target)" do
11
- before do
12
- @validator_one = DataMapper::Validations::Rule::Presence.new(:name)
13
- @validator_two = DataMapper::Validations::Rule::Within.new(:operating_system, :set => ["Mac OS X", "Linux", "FreeBSD", "Solaris"])
14
-
15
- @validators.context(:default) << @validator_one << @validator_two
16
- end
17
-
18
-
19
- describe "when target satisfies all validators" do
20
- before do
21
- @target = DataMapper::Validations::Fixtures::PieceOfSoftware.new(:name => 'gcc', :operating_system => "Mac OS X")
22
- @validator_one.call(@target).should be(true)
23
- @validator_two.call(@target).should be(true)
24
-
25
- @result = @validators.execute(:default, @target)
26
- end
27
-
28
- it "returns true" do
29
- @result.should be(true)
30
- end
31
- end
32
-
33
-
34
- describe "when target does not satisfy all validators" do
35
- before do
36
- @target = DataMapper::Validations::Fixtures::PieceOfSoftware.new(:name => 'Skitch', :operating_system => "Haiku")
37
- @validator_one.call(@target).should be(true)
38
- @validator_two.call(@target).should be(false)
39
-
40
- @result = @validators.execute(:default, @target)
41
- end
42
-
43
- it "returns false" do
44
- @result.should be(false)
45
- end
46
- end
47
- end
48
- end
@@ -1,37 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- module DataMapper
4
- module Validation
5
- module Fixtures
6
-
7
- class PieceOfSoftware
8
- #
9
- # Behaviors
10
- #
11
-
12
- include DataMapper::Validations
13
-
14
- #
15
- # Attributes
16
- #
17
-
18
- attr_accessor :name, :operating_system
19
-
20
- #
21
- # Validations
22
- #
23
-
24
- #
25
- # API
26
- #
27
-
28
- def initialize(attributes = {})
29
- attributes.each do |key, value|
30
- self.send("#{key}=", value)
31
- end
32
- end
33
- end
34
-
35
- end # Fixtures
36
- end # Validations
37
- end # DataMapper