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,56 +0,0 @@
1
- #
2
- # SCMs
3
- #
4
- # This example may look stupid (I am sure it is),
5
- # but it is way better than foobars and easier to read/add cases
6
- # compared to gardening examples because every software engineer has idea
7
- # about SCMs and not every software engineer does gardening often.
8
- #
9
-
10
- class ScmOperation
11
- include DataMapper::Resource
12
-
13
- #
14
- # Property
15
- #
16
-
17
- property :id, Serial
18
-
19
- # operation name
20
- property :name, String, :auto_validation => false
21
-
22
- property :committer_name, String, :auto_validation => false, :default => "Just another Ruby hacker"
23
- property :author_name, String, :auto_validation => false, :default => "Just another Ruby hacker"
24
- property :network_connection, Boolean, :auto_validation => false
25
- property :message, Text, :auto_validation => false
26
- property :clean_working_copy, Boolean, :auto_validation => false
27
-
28
- #
29
- # Validations
30
- #
31
-
32
- validates_presence_of :name
33
- end
34
-
35
- class SubversionOperation < ScmOperation
36
- #
37
- # Validations
38
- #
39
-
40
- validates_presence_of :network_connection, :when => [:committing, :log_viewing]
41
- end
42
-
43
- class GitOperation < ScmOperation
44
- #
45
- # Validations
46
- #
47
-
48
- validates_presence_of :author_name, :committer_name, :when => :committing
49
-
50
- validates_presence_of :message, :when => :committing
51
- validates_presence_of :network_connection, :when => [:pushing, :pulling], :message => {
52
- :pushing => "though git is advanced, it cannot push without network connectivity",
53
- :pulling => "you must have network connectivity to pull from others"
54
- }
55
- validates_presence_of :clean_working_copy, :when => :pulling
56
- end
@@ -1,22 +0,0 @@
1
- module DataMapper
2
- module Validation
3
- module Fixtures
4
-
5
- class SmsMessage
6
- #
7
- # Behaviors
8
- #
9
-
10
- include DataMapper::Resource
11
-
12
- #
13
- # Properties
14
- #
15
-
16
- property :id, Serial
17
- property :body, Text, :length => (1..500)
18
- end
19
-
20
- end
21
- end
22
- end
@@ -1,49 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- module DataMapper
4
- module Validation
5
- module Fixtures
6
-
7
- class UDPPacket
8
- #
9
- # Behaviors
10
- #
11
-
12
- include DataMapper::Resource
13
-
14
- #
15
- # Properties
16
- #
17
-
18
- property :id, Serial
19
-
20
- property :source_port, Integer, :auto_validation => false
21
- property :destination_port, Integer, :auto_validation => false
22
-
23
- property :length, Integer, :auto_validation => false
24
- property :checksum, String, :auto_validation => false
25
- # consider that there are multiple algorithms
26
- # available to the app, and it is allowed
27
- # to be chosed
28
- #
29
- # yes, to some degree, this is a made up
30
- # property ;)
31
- property :checksum_algorithm, String, :auto_validation => false
32
- property :data, Text, :auto_validation => false
33
-
34
- #
35
- # Volatile attributes
36
- #
37
-
38
- attr_accessor :underlying_ip_version
39
-
40
- #
41
- # Validations
42
- #
43
-
44
- validates_presence_of :checksum_algorithm, :checksum, :if => Proc.new { |packet| packet.underlying_ip_version == 6 }, :message => "Checksum is mandatory when used with IPv6"
45
- end
46
-
47
- end # Fixtures
48
- end # Validations
49
- end # DataMapper
@@ -1,90 +0,0 @@
1
- require 'spec_helper'
2
- require 'integration/absent_field_validator/spec_helper'
3
-
4
- describe 'DataMapper::Validations::Fixtures::Kayak' do
5
- before :all do
6
- DataMapper::Validations::Fixtures::Kayak.auto_migrate!
7
-
8
- @kayak = DataMapper::Validations::Fixtures::Kayak.new
9
- @kayak.should be_valid_for_sale
10
- end
11
-
12
- describe "with salesman being non blank" do
13
- before :all do
14
- @kayak.salesman = 'Joe'
15
- end
16
-
17
- it "is invalid" do
18
- @kayak.should_not be_valid_for_sale
19
- end
20
-
21
- it "has meaningful error message" do
22
- @kayak.errors.on(:salesman).should == [ 'Salesman must be absent' ]
23
- end
24
- end
25
-
26
-
27
- describe "with salesman being nil" do
28
- before :all do
29
- @kayak.salesman = nil
30
- end
31
-
32
- it "is valid" do
33
- @kayak.should be_valid_for_sale
34
- end
35
-
36
- it "has no error messages" do
37
- @kayak.errors.on(:salesman).should be_nil
38
- end
39
- end
40
-
41
-
42
- describe "with salesman being an empty string" do
43
- before :all do
44
- @kayak.salesman = ''
45
- end
46
-
47
- it "is valid" do
48
- @kayak.should be_valid_for_sale
49
- end
50
-
51
- it "has no error messages" do
52
- @kayak.errors.on(:salesman).should be_nil
53
- end
54
- end
55
-
56
-
57
- describe "with salesman being a string of white spaces" do
58
- before :all do
59
- @kayak.salesman = ' '
60
- end
61
-
62
- it "is valid" do
63
- @kayak.should be_valid_for_sale
64
- end
65
-
66
- it "has no error messages" do
67
- @kayak.errors.on(:salesman).should be_nil
68
- end
69
- end
70
- end
71
-
72
-
73
- describe 'DataMapper::Validations::Fixtures::Pirogue' do
74
- before :all do
75
- DataMapper::Validations::Fixtures::Pirogue.auto_migrate!
76
-
77
- @kayak = DataMapper::Validations::Fixtures::Pirogue.new
78
- @kayak.should_not be_valid_for_sale
79
- end
80
-
81
- describe "by default" do
82
- it "is invalid" do
83
- @kayak.should_not be_valid_for_sale
84
- end
85
-
86
- it "has meaningful error message" do
87
- @kayak.errors.on(:salesman).should == [ 'Salesman must be absent' ]
88
- end
89
- end
90
- end
@@ -1,7 +0,0 @@
1
- # put validator specific fixture models and helpers here
2
- #
3
- # make sure you check out spec/fixtures to see fixture models
4
- # already written
5
- #
6
- # DataMapper developers feels strongly against foobars in the spec
7
- # suite
@@ -1,196 +0,0 @@
1
- require 'spec_helper'
2
- require 'integration/acceptance_validator/spec_helper'
3
-
4
- describe 'DataMapper::Validations::Fixtures::BetaTesterAccount' do
5
- before :all do
6
- DataMapper::Validations::Fixtures::BetaTesterAccount.auto_migrate!
7
- end
8
-
9
- before do
10
- @model = DataMapper::Validations::Fixtures::BetaTesterAccount.new(:user_agreement => true,
11
- :newsletter_signup => nil,
12
- :privacy_agreement => "accept")
13
- @model.should be_valid
14
- end
15
-
16
- describe "with a missing newsletter signup field" do
17
- before do
18
- @model.newsletter_signup = nil
19
- end
20
-
21
- it "is perfectly valid" do
22
- @model.should be_valid
23
- end
24
- end
25
-
26
- describe "with a blank newsletter signup field" do
27
- before do
28
- @model.newsletter_signup = ""
29
- end
30
-
31
- it "is NOT valid" do
32
- @model.should_not be_valid
33
- end
34
- end
35
-
36
- describe "with a blank user agreement field" do
37
- before do
38
- @model.user_agreement = ""
39
- end
40
-
41
- it "is NOT valid" do
42
- @model.should_not be_valid
43
- end
44
- end
45
-
46
- describe "with a nil user agreement field" do
47
- before do
48
- @model.user_agreement = nil
49
- end
50
-
51
- it "is NOT valid" do
52
- @model.should_not be_valid
53
- end
54
- end
55
-
56
- describe "with user agreement field having value of 1 (as integer)" do
57
- before do
58
- @model.user_agreement = 1
59
- end
60
-
61
- it "is valid" do
62
- @model.should be_valid
63
- end
64
- end
65
-
66
- describe "with user agreement field having value of 1 (as a string)" do
67
- before do
68
- @model.user_agreement = "1"
69
- end
70
-
71
- it "is valid" do
72
- @model.should be_valid
73
- end
74
- end
75
-
76
- describe "with user agreement field having value of 'true' (as a string)" do
77
- before do
78
- @model.user_agreement = 'true'
79
- end
80
-
81
- it "is valid" do
82
- @model.should be_valid
83
- end
84
- end
85
-
86
- describe "with user agreement field having value of true (TrueClass instance)" do
87
- before do
88
- @model.user_agreement = true
89
- end
90
-
91
- it "is valid" do
92
- @model.should be_valid
93
- end
94
- end
95
-
96
- describe "with user agreement field having value of 't' (The Lisp Way)" do
97
- before do
98
- @model.user_agreement = 't'
99
- end
100
-
101
- it "is valid" do
102
- @model.should be_valid
103
- end
104
- end
105
-
106
- describe "with user agreement field having value of 'f'" do
107
- before do
108
- @model.user_agreement = 'f'
109
- end
110
-
111
- it "is NOT valid" do
112
- @model.should_not be_valid
113
- end
114
- end
115
-
116
- describe "with user agreement field having value of false" do
117
- before do
118
- @model.user_agreement = false
119
- end
120
-
121
- it "is NOT valid" do
122
- @model.should_not be_valid
123
- end
124
- end
125
-
126
- describe "with privacy agreement field having value of 1" do
127
- before do
128
- @model.privacy_agreement = 1
129
- end
130
-
131
- it "is NOT valid" do
132
- @model.should_not be_valid
133
- end
134
- end
135
-
136
- describe "with privacy agreement field having value of true" do
137
- before do
138
- @model.privacy_agreement = true
139
- end
140
-
141
- it "is NOT valid" do
142
- @model.should_not be_valid
143
- end
144
- end
145
-
146
- describe "with privacy agreement field having value of '1'" do
147
- before do
148
- @model.privacy_agreement = '1'
149
- end
150
-
151
- it "is NOT valid" do
152
- @model.should_not be_valid
153
- end
154
- end
155
-
156
- describe "with privacy agreement field having value of 't'" do
157
- before do
158
- @model.privacy_agreement = 't'
159
- end
160
-
161
- it "is NOT valid" do
162
- @model.should_not be_valid
163
- end
164
- end
165
-
166
- describe "with privacy agreement field having value of 'accept'" do
167
- before do
168
- @model.privacy_agreement = 'accept'
169
- end
170
-
171
- it "is valid" do
172
- @model.should be_valid
173
- end
174
- end
175
-
176
- describe "with privacy agreement field having value of 'agreed'" do
177
- before do
178
- @model.privacy_agreement = 'agreed'
179
- end
180
-
181
- it "is valid" do
182
- @model.should be_valid
183
- end
184
- end
185
-
186
- describe "with privacy agreement field having value of 'ah, greed'" do
187
- before do
188
- @model.privacy_agreement = 'ah, greed'
189
- end
190
-
191
- it "is NOT valid" do
192
- # greed is invalid? can't be
193
- @model.should_not be_valid
194
- end
195
- end
196
- end
@@ -1,7 +0,0 @@
1
- # put validator specific fixture models and helpers here
2
- #
3
- # make sure you check out spec/fixtures to see fixture models
4
- # already written
5
- #
6
- # DataMapper developers feels strongly against foobars in the spec
7
- # suite
@@ -1,57 +0,0 @@
1
- require 'spec_helper'
2
- require 'integration/automatic_validation/spec_helper'
3
-
4
- describe 'Inferred validations' do
5
- it "allow overriding a single error message" do
6
- custom_boat = Class.new do
7
- include DataMapper::Resource
8
-
9
- def self.name
10
- 'Boat'
11
- end
12
-
13
- property :id, DataMapper::Property::Serial
14
- property :name, String, :required => true, :message => "This boat must have name"
15
- end
16
- boat = custom_boat.new
17
- boat.should_not be_valid
18
- boat.errors.on(:name).should == [ 'This boat must have name' ]
19
- end
20
-
21
- it "should have correct error messages" do
22
- custom_boat = Class.new do
23
- include DataMapper::Resource
24
-
25
- def self.name
26
- 'Boat'
27
- end
28
-
29
- property :id, DataMapper::Property::Serial
30
- property :name, String, :required => true, :length => 5..20, :format => /^[a-z]+$/,
31
- :messages => {
32
- :presence => "This boat must have name",
33
- :length => "Name must have at least 4 and at most 20 chars",
34
- :format => "Please use only small letters"
35
- }
36
- end
37
-
38
- boat = custom_boat.new
39
- boat.should_not be_valid
40
- boat.errors.on(:name).should == [ 'This boat must have name' ]
41
-
42
- boat.name = "%%"
43
- boat.should_not be_valid
44
- boat.errors.on(:name).should == [
45
- 'Name must have at least 4 and at most 20 chars',
46
- 'Please use only small letters',
47
- ]
48
-
49
- boat.name = "%%asd"
50
- boat.should_not be_valid
51
- boat.errors.on(:name).should == [ 'Please use only small letters' ]
52
-
53
- boat.name = "superboat"
54
- boat.should be_valid
55
- boat.errors.on(:name).should be_nil
56
- end
57
- end