aequitas 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/.rvmrc +1 -0
- data/Gemfile +6 -0
- data/LICENSE +21 -0
- data/README.rdoc +125 -0
- data/Rakefile +25 -0
- data/VERSION +1 -0
- data/aequitas.gemspec +20 -0
- data/lib/aequitas.rb +80 -0
- data/lib/aequitas/class_methods.rb +26 -0
- data/lib/aequitas/context.rb +53 -0
- data/lib/aequitas/contextual_rule_set.rb +221 -0
- data/lib/aequitas/exceptions.rb +10 -0
- data/lib/aequitas/macros.rb +466 -0
- data/lib/aequitas/message_transformer.rb +127 -0
- data/lib/aequitas/rule.rb +153 -0
- data/lib/aequitas/rule/absence.rb +14 -0
- data/lib/aequitas/rule/absence/blank.rb +21 -0
- data/lib/aequitas/rule/absence/nil.rb +21 -0
- data/lib/aequitas/rule/acceptance.rb +36 -0
- data/lib/aequitas/rule/block.rb +33 -0
- data/lib/aequitas/rule/confirmation.rb +41 -0
- data/lib/aequitas/rule/format.rb +81 -0
- data/lib/aequitas/rule/format/proc.rb +28 -0
- data/lib/aequitas/rule/format/regexp.rb +44 -0
- data/lib/aequitas/rule/formats/email.rb +52 -0
- data/lib/aequitas/rule/formats/url.rb +14 -0
- data/lib/aequitas/rule/guard.rb +51 -0
- data/lib/aequitas/rule/length.rb +87 -0
- data/lib/aequitas/rule/length/equal.rb +46 -0
- data/lib/aequitas/rule/length/maximum.rb +46 -0
- data/lib/aequitas/rule/length/minimum.rb +46 -0
- data/lib/aequitas/rule/length/range.rb +46 -0
- data/lib/aequitas/rule/method.rb +31 -0
- data/lib/aequitas/rule/numericalness.rb +85 -0
- data/lib/aequitas/rule/numericalness/equal.rb +30 -0
- data/lib/aequitas/rule/numericalness/greater_than.rb +30 -0
- data/lib/aequitas/rule/numericalness/greater_than_or_equal.rb +30 -0
- data/lib/aequitas/rule/numericalness/integer.rb +37 -0
- data/lib/aequitas/rule/numericalness/less_than.rb +30 -0
- data/lib/aequitas/rule/numericalness/less_than_or_equal.rb +30 -0
- data/lib/aequitas/rule/numericalness/non_integer.rb +64 -0
- data/lib/aequitas/rule/numericalness/not_equal.rb +30 -0
- data/lib/aequitas/rule/presence.rb +14 -0
- data/lib/aequitas/rule/presence/not_blank.rb +21 -0
- data/lib/aequitas/rule/presence/not_nil.rb +21 -0
- data/lib/aequitas/rule/primitive_type.rb +28 -0
- data/lib/aequitas/rule/skip_condition.rb +104 -0
- data/lib/aequitas/rule/within.rb +28 -0
- data/lib/aequitas/rule/within/range.rb +53 -0
- data/lib/aequitas/rule/within/range/bounded.rb +25 -0
- data/lib/aequitas/rule/within/range/unbounded_begin.rb +25 -0
- data/lib/aequitas/rule/within/range/unbounded_end.rb +25 -0
- data/lib/aequitas/rule/within/set.rb +39 -0
- data/lib/aequitas/rule_set.rb +80 -0
- data/lib/aequitas/support/blank.rb +22 -0
- data/lib/aequitas/support/equalizable.rb +113 -0
- data/lib/aequitas/support/ordered_hash.rb +438 -0
- data/lib/aequitas/version.rb +5 -0
- data/lib/aequitas/violation.rb +116 -0
- data/lib/aequitas/violation_set.rb +123 -0
- data/lib/aequitas/virtus.rb +29 -0
- data/lib/aequitas/virtus/inline_attribute_rule_extractor.rb +41 -0
- data/lib/aequitas/virtus/inline_attribute_rule_extractor/boolean.rb +17 -0
- data/lib/aequitas/virtus/inline_attribute_rule_extractor/object.rb +25 -0
- data/lib/aequitas/virtus/inline_attribute_rule_extractor/string.rb +27 -0
- data/spec/integration/aequitas/macros/validates_absence_of_spec.rb +19 -0
- data/spec/integration/aequitas/macros/validates_acceptance_of_spec.rb +19 -0
- data/spec/integration/aequitas/macros/validates_confirmation_of_spec.rb +25 -0
- data/spec/integration/aequitas/macros/validates_format_of_spec.rb +87 -0
- data/spec/integration/aequitas/macros/validates_length_of.rb +77 -0
- data/spec/integration/aequitas/macros/validates_numericalness_of_spec.rb +221 -0
- data/spec/integration/aequitas/macros/validates_presence_of_spec.rb +19 -0
- data/spec/integration/aequitas/macros/validates_with_block.rb +23 -0
- data/spec/integration/aequitas/macros/validates_with_method.rb +19 -0
- data/spec/integration/aequitas/macros/validates_within.rb +87 -0
- data/spec/integration/shared/macros/integration_spec.rb +67 -0
- data/spec/integration/virtus/boolean/presence_spec.rb +49 -0
- data/spec/integration/virtus/string/format/email_address_spec.rb +55 -0
- data/spec/integration/virtus/string/format/regexp_spec.rb +55 -0
- data/spec/integration/virtus/string/format/url_spec.rb +55 -0
- data/spec/integration/virtus/string/length/equal_spec.rb +49 -0
- data/spec/integration/virtus/string/length/range_spec.rb +49 -0
- data/spec/integration/virtus/string/presence_spec.rb +49 -0
- data/spec/rcov.opts +6 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/suite.rb +5 -0
- data/spec/unit/aequitas/rule/absence/blank_spec.rb +45 -0
- data/spec/unit/aequitas/rule/acceptance_spec.rb +71 -0
- data/spec/unit/aequitas/rule/confirmation_spec.rb +80 -0
- data/spec/unit/aequitas/rule/guard_spec.rb +120 -0
- data/spec/unit/aequitas/rule/skip_condition_spec.rb +170 -0
- data/spec/unit/aequitas/rule_spec.rb +40 -0
- data/spec/unit/aequitas/support/blank_spec.rb +83 -0
- data/spec/unit/aequitas/support/equalizable/equalizer_spec.rb +21 -0
- data/spec/unit/aequitas/support/equalizable_spec.rb +67 -0
- data/spec/unit/aequitas/violation_set_spec.rb +154 -0
- data/spec_legacy/fixtures/barcode.rb +40 -0
- data/spec_legacy/fixtures/basketball_court.rb +58 -0
- data/spec_legacy/fixtures/basketball_player.rb +34 -0
- data/spec_legacy/fixtures/beta_tester_account.rb +33 -0
- data/spec_legacy/fixtures/bill_of_landing.rb +47 -0
- data/spec_legacy/fixtures/boat_dock.rb +26 -0
- data/spec_legacy/fixtures/city.rb +24 -0
- data/spec_legacy/fixtures/company.rb +93 -0
- data/spec_legacy/fixtures/corporate_world.rb +39 -0
- data/spec_legacy/fixtures/country.rb +24 -0
- data/spec_legacy/fixtures/ethernet_frame.rb +56 -0
- data/spec_legacy/fixtures/event.rb +44 -0
- data/spec_legacy/fixtures/g3_concert.rb +57 -0
- data/spec_legacy/fixtures/jabberwock.rb +27 -0
- data/spec_legacy/fixtures/kayak.rb +28 -0
- data/spec_legacy/fixtures/lernean_hydra.rb +39 -0
- data/spec_legacy/fixtures/llama_spaceship.rb +15 -0
- data/spec_legacy/fixtures/mathematical_function.rb +34 -0
- data/spec_legacy/fixtures/memory_object.rb +30 -0
- data/spec_legacy/fixtures/mittelschnauzer.rb +39 -0
- data/spec_legacy/fixtures/motor_launch.rb +21 -0
- data/spec_legacy/fixtures/multibyte.rb +16 -0
- data/spec_legacy/fixtures/page.rb +32 -0
- data/spec_legacy/fixtures/phone_number.rb +28 -0
- data/spec_legacy/fixtures/pirogue.rb +28 -0
- data/spec_legacy/fixtures/programming_language.rb +83 -0
- data/spec_legacy/fixtures/reservation.rb +38 -0
- data/spec_legacy/fixtures/scm_operation.rb +56 -0
- data/spec_legacy/fixtures/sms_message.rb +22 -0
- data/spec_legacy/fixtures/udp_packet.rb +49 -0
- data/spec_legacy/integration/absent_field_validator/absent_field_validator_spec.rb +90 -0
- data/spec_legacy/integration/absent_field_validator/spec_helper.rb +7 -0
- data/spec_legacy/integration/acceptance_validator/acceptance_validator_spec.rb +196 -0
- data/spec_legacy/integration/acceptance_validator/spec_helper.rb +7 -0
- data/spec_legacy/integration/automatic_validation/custom_messages_for_inferred_validation_spec.rb +57 -0
- data/spec_legacy/integration/automatic_validation/disabling_inferred_validation_spec.rb +49 -0
- data/spec_legacy/integration/automatic_validation/inferred_boolean_properties_validation_spec.rb +100 -0
- data/spec_legacy/integration/automatic_validation/inferred_float_property_validation_spec.rb +45 -0
- data/spec_legacy/integration/automatic_validation/inferred_format_validation_spec.rb +35 -0
- data/spec_legacy/integration/automatic_validation/inferred_integer_properties_validation_spec.rb +70 -0
- data/spec_legacy/integration/automatic_validation/inferred_length_validation_spec.rb +142 -0
- data/spec_legacy/integration/automatic_validation/inferred_presence_validation_spec.rb +45 -0
- data/spec_legacy/integration/automatic_validation/inferred_primitive_validation_spec.rb +22 -0
- data/spec_legacy/integration/automatic_validation/inferred_uniqueness_validation_spec.rb +48 -0
- data/spec_legacy/integration/automatic_validation/inferred_within_validation_spec.rb +35 -0
- data/spec_legacy/integration/automatic_validation/spec_helper.rb +57 -0
- data/spec_legacy/integration/block_validator/block_validator_spec.rb +32 -0
- data/spec_legacy/integration/block_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/conditional_validation/if_condition_spec.rb +63 -0
- data/spec_legacy/integration/conditional_validation/spec_helper.rb +5 -0
- data/spec_legacy/integration/confirmation_validator/confirmation_validator_spec.rb +76 -0
- data/spec_legacy/integration/confirmation_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/datamapper_models/association_validation_spec.rb +29 -0
- data/spec_legacy/integration/datamapper_models/inheritance_spec.rb +82 -0
- data/spec_legacy/integration/dirty_attributes/dirty_attributes_spec.rb +13 -0
- data/spec_legacy/integration/duplicated_validations/duplicated_validations_spec.rb +24 -0
- data/spec_legacy/integration/duplicated_validations/spec_helper.rb +5 -0
- data/spec_legacy/integration/format_validator/email_format_validator_spec.rb +139 -0
- data/spec_legacy/integration/format_validator/format_validator_spec.rb +64 -0
- data/spec_legacy/integration/format_validator/regexp_validator_spec.rb +33 -0
- data/spec_legacy/integration/format_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/format_validator/url_format_validator_spec.rb +93 -0
- data/spec_legacy/integration/length_validator/default_value_spec.rb +14 -0
- data/spec_legacy/integration/length_validator/equality_spec.rb +87 -0
- data/spec_legacy/integration/length_validator/error_message_spec.rb +22 -0
- data/spec_legacy/integration/length_validator/maximum_spec.rb +49 -0
- data/spec_legacy/integration/length_validator/minimum_spec.rb +54 -0
- data/spec_legacy/integration/length_validator/range_spec.rb +87 -0
- data/spec_legacy/integration/length_validator/spec_helper.rb +7 -0
- data/spec_legacy/integration/method_validator/method_validator_spec.rb +242 -0
- data/spec_legacy/integration/method_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/numeric_validator/equality_with_float_type_spec.rb +65 -0
- data/spec_legacy/integration/numeric_validator/equality_with_integer_type_spec.rb +41 -0
- data/spec_legacy/integration/numeric_validator/float_type_spec.rb +90 -0
- data/spec_legacy/integration/numeric_validator/gt_with_float_type_spec.rb +37 -0
- data/spec_legacy/integration/numeric_validator/gte_with_float_type_spec.rb +37 -0
- data/spec_legacy/integration/numeric_validator/integer_only_true_spec.rb +91 -0
- data/spec_legacy/integration/numeric_validator/integer_type_spec.rb +86 -0
- data/spec_legacy/integration/numeric_validator/lt_with_float_type_spec.rb +37 -0
- data/spec_legacy/integration/numeric_validator/lte_with_float_type_spec.rb +37 -0
- data/spec_legacy/integration/numeric_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/primitive_validator/primitive_validator_spec.rb +92 -0
- data/spec_legacy/integration/primitive_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/pure_ruby_objects/plain_old_ruby_object_validation_spec.rb +118 -0
- data/spec_legacy/integration/required_field_validator/association_spec.rb +69 -0
- data/spec_legacy/integration/required_field_validator/boolean_type_value_spec.rb +164 -0
- data/spec_legacy/integration/required_field_validator/date_type_value_spec.rb +127 -0
- data/spec_legacy/integration/required_field_validator/datetime_type_value_spec.rb +127 -0
- data/spec_legacy/integration/required_field_validator/float_type_value_spec.rb +131 -0
- data/spec_legacy/integration/required_field_validator/integer_type_value_spec.rb +99 -0
- data/spec_legacy/integration/required_field_validator/plain_old_ruby_object_spec.rb +35 -0
- data/spec_legacy/integration/required_field_validator/shared_examples.rb +26 -0
- data/spec_legacy/integration/required_field_validator/spec_helper.rb +7 -0
- data/spec_legacy/integration/required_field_validator/string_type_value_spec.rb +167 -0
- data/spec_legacy/integration/required_field_validator/text_type_value_spec.rb +49 -0
- data/spec_legacy/integration/shared/default_validation_context.rb +13 -0
- data/spec_legacy/integration/shared/valid_and_invalid_model.rb +35 -0
- data/spec_legacy/integration/uniqueness_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/uniqueness_validator/uniqueness_validator_spec.rb +116 -0
- data/spec_legacy/integration/within_validator/spec_helper.rb +5 -0
- data/spec_legacy/integration/within_validator/within_validator_spec.rb +168 -0
- data/spec_legacy/public/resource_spec.rb +105 -0
- data/spec_legacy/spec.opts +4 -0
- data/spec_legacy/spec_helper.rb +29 -0
- data/spec_legacy/unit/contextual_validators/emptiness_spec.rb +50 -0
- data/spec_legacy/unit/contextual_validators/execution_spec.rb +48 -0
- data/spec_legacy/unit/contextual_validators/spec_helper.rb +37 -0
- data/spec_legacy/unit/generic_validator/equality_operator_spec.rb +26 -0
- data/spec_legacy/unit/generic_validator/optional_spec.rb +54 -0
- data/spec_legacy/unit/validators/within_validator_spec.rb +23 -0
- data/spec_legacy/unit/violation_set/adding_spec.rb +54 -0
- data/spec_legacy/unit/violation_set/emptiness_spec.rb +38 -0
- data/spec_legacy/unit/violation_set/enumerable_spec.rb +32 -0
- data/spec_legacy/unit/violation_set/reading_spec.rb +35 -0
- data/spec_legacy/unit/violation_set/respond_to_spec.rb +15 -0
- data/tasks/spec.rake +38 -0
- data/tasks/yard.rake +9 -0
- data/tasks/yardstick.rake +19 -0
- metadata +302 -0
@@ -0,0 +1,168 @@
|
|
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
|
@@ -0,0 +1,105 @@
|
|
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
|
@@ -0,0 +1,29 @@
|
|
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
|
@@ -0,0 +1,50 @@
|
|
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
|
@@ -0,0 +1,48 @@
|
|
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
|
@@ -0,0 +1,37 @@
|
|
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
|