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,27 +0,0 @@
1
- module DataMapper
2
- module Validation
3
- module Fixtures
4
-
5
- class Jabberwock
6
- #
7
- # Behaviors
8
- #
9
-
10
- include DataMapper::Resource
11
-
12
- #
13
- # Properties
14
- #
15
-
16
- property :id, Serial
17
- property :snickersnack, String
18
-
19
- #
20
- # Validations
21
- #
22
-
23
- validates_length_of :snickersnack, :within => 3..40, :message => "worble warble"
24
- end # Jabberwock
25
- end
26
- end
27
- end
@@ -1,28 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- module DataMapper
4
- module Validation
5
- module Fixtures
6
- class Kayak
7
- #
8
- # Behaviors
9
- #
10
-
11
- include ::DataMapper::Resource
12
-
13
- #
14
- # Properties
15
- #
16
-
17
- property :id, Serial
18
- property :salesman, String, :auto_validation => false
19
-
20
- #
21
- # Validations
22
- #
23
-
24
- validates_absence_of :salesman, :on => :sale
25
- end
26
- end
27
- end
28
- end
@@ -1,39 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- module DataMapper
4
- module Validation
5
- module Fixtures
6
- class LerneanHydra
7
- #
8
- # Behaviors
9
- #
10
-
11
- include DataMapper::Resource
12
-
13
- #
14
- # Properties
15
- #
16
-
17
- property :id, Serial
18
-
19
- without_auto_validations do
20
- property :head_count, Float
21
- end
22
-
23
- #
24
- # Validations
25
- #
26
-
27
- validates_numericality_of :head_count, :eq => 9, :message => "Lernean hydra is said to have exactly 9 heads"
28
-
29
- def self.valid_instance(overrides = {})
30
- defaults = {
31
- :head_count => 9
32
- }
33
-
34
- new(defaults.merge(overrides))
35
- end
36
- end
37
- end # Fixtures
38
- end # Validations
39
- end # DataMapper
@@ -1,15 +0,0 @@
1
- module DataMapper
2
- module Validations
3
- module Fixtures
4
- class LlamaSpaceship
5
- include DataMapper::Resource
6
-
7
- property :id, Serial
8
- property :type, String
9
- property :color, String
10
-
11
- validates_format_of :color, :with => /^red|black$/, :if => Proc.new { |spaceship| spaceship.type == "standard" }
12
- end
13
- end
14
- end
15
- end
@@ -1,34 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- module DataMapper
4
- module Validation
5
- module Fixtures
6
- class MathematicalFunction
7
- #
8
- # Behaviors
9
- #
10
-
11
- include ::DataMapper::Resource
12
-
13
- #
14
- # Properties
15
- #
16
-
17
- property :id, Serial
18
- property :input, Float, :auto_validation => false
19
- property :output, Float, :auto_validation => false
20
-
21
- #
22
- # Validations
23
- #
24
-
25
- # function domain
26
- # don't ask me what function that is
27
- validates_within :input, :set => (1..n)
28
-
29
- # function range
30
- validates_within :output, :set => (-n..0), :message => "Negative values or zero only, please"
31
- end # MathematicalFunction
32
- end # Fixtures
33
- end # Validations
34
- end # DataMapper
@@ -1,30 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- module DataMapper
4
- module Validation
5
- module Fixtures
6
- class MemoryObject
7
- #
8
- # Behaviors
9
- #
10
-
11
- include ::DataMapper::Resource
12
-
13
- #
14
- # Properties
15
- #
16
-
17
- property :id, Serial
18
- property :marked, Boolean, :auto_validation => false
19
- property :color, String, :auto_validation => false
20
-
21
- #
22
- # Validations
23
- #
24
-
25
- validates_primitive_type_of :marked
26
- validates_primitive_type_of :color
27
- end
28
- end
29
- end
30
- end
@@ -1,39 +0,0 @@
1
- module DataMapper
2
- module Validation
3
- module Fixtures
4
- # Mittelschauzer is a type of dog. The More You Know.
5
- class Mittelschnauzer
6
-
7
- #
8
- # Behaviors
9
- #
10
-
11
- include DataMapper::Resource
12
-
13
- #
14
- # Properties
15
- #
16
-
17
- without_auto_validations do
18
- property :name, String, :key => true
19
- property :height, Float
20
- end
21
-
22
- attr_accessor :owner
23
-
24
- #
25
- # Validations
26
- #
27
-
28
- validates_length_of :name, :min => 2, :allow_nil => false
29
- validates_length_of :owner, :min => 2
30
-
31
- validates_numericality_of :height, :lt => 55.2
32
-
33
- def self.valid_instance
34
- new(:name => "Roudolf Wilde", :height => 50.4, :owner => 'don')
35
- end
36
- end # Mittelschnauzer
37
- end
38
- end
39
- end
@@ -1,21 +0,0 @@
1
- module DataMapper
2
- module Validation
3
- module Fixtures
4
-
5
- class MotorLaunch
6
- #
7
- # Behaviors
8
- #
9
-
10
- include DataMapper::Resource
11
-
12
- #
13
- # Properties
14
- #
15
-
16
- property :id, Serial
17
- property :name, String, :auto_validation => false
18
- end
19
- end
20
- end
21
- end
@@ -1,16 +0,0 @@
1
- # coding: utf-8
2
-
3
- module DataMapper
4
- module Validation
5
- module Fixtures
6
- class Multibyte
7
- include DataMapper::Resource
8
-
9
- property :id, Serial
10
- property :name, String
11
-
12
- validates_length_of :name, :is => 20
13
- end
14
- end
15
- end
16
- end
@@ -1,32 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- module DataMapper
4
- module Validation
5
- module Fixtures
6
-
7
- # see http://datamapper.lighthouseapp.com/projects/20609/tickets/671
8
- class Page
9
- #
10
- # Behaviors
11
- #
12
-
13
- include DataMapper::Resource
14
-
15
- #
16
- # Properties
17
- #
18
-
19
- property :id, Serial, :key => true
20
- property :body, Text, :required => true
21
-
22
- #
23
- # Validations
24
- #
25
-
26
- # duplicates inferred validation for body (caused by
27
- # :required => true)
28
- validates_presence_of :body
29
- end
30
- end # Fixtures
31
- end # Validations
32
- end # DataMapper
@@ -1,28 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- module DataMapper
4
- module Validation
5
- module Fixtures
6
- class PhoneNumber
7
- #
8
- # Behaviors
9
- #
10
-
11
- include ::DataMapper::Resource
12
-
13
- #
14
- # Properties
15
- #
16
-
17
- property :id, Serial
18
- property :type_of_number, String, :auto_validation => false
19
-
20
- #
21
- # Validations
22
- #
23
-
24
- validates_within :type_of_number, :set => %w(home work cell), :message => "Should be one of: home, cell or work"
25
- end # PhoneNumber
26
- end # Fixtures
27
- end # Validations
28
- end # DataMapper
@@ -1,28 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- module DataMapper
4
- module Validation
5
- module Fixtures
6
- class Pirogue
7
- #
8
- # Behaviors
9
- #
10
-
11
- include DataMapper::Resource
12
-
13
- #
14
- # Properties
15
- #
16
-
17
- property :id, Serial
18
- property :salesman, String, :default => 'Layfayette'
19
-
20
- #
21
- # Validations
22
- #
23
-
24
- validates_absence_of :salesman, :on => :sale
25
- end
26
- end
27
- end
28
- end
@@ -1,83 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- module DataMapper
4
- module Validation
5
- module Fixtures
6
- # If you think that this particular fixture class
7
- # and assumptions made below are full of bullshit
8
- # and author is a moron, you are 100% right. I am,
9
- # but it's me who rewrites poor dm-validations
10
- # spec suite this time, so unless someone smart
11
- # steps up to do it, we have to roll on with
12
- # this crappy example of method validation. — MK
13
- class ProgrammingLanguage
14
- #
15
- # Behaviors
16
- #
17
-
18
- include ::DataMapper::Validations
19
-
20
- #
21
- # Attributes
22
- #
23
-
24
- attr_accessor :name, :allows_system_calls, :allows_manual_memory_management, :allows_optional_parentheses,
25
- :allows_operator_overload, :approved_by_linus, :compiler_excels_at_utilizing_cpu_cache,
26
- :is_very_high_level, :does_not_require_explicit_return_keyword, :standard_library_support_parallel_programming_out_of_the_box
27
-
28
- #
29
- # Validations
30
- #
31
-
32
- validates_with_method :ensure_appropriate_for_system_programming, :when => [:doing_system_programming, :hacking_on_the_kernel, :implementing_a_game_engine]
33
- validates_with_method :ensure_appropriate_for_dsls, :when => [:implementing_a_dsl]
34
- validates_with_method :ensure_appropriate_for_cpu_intensive_tasks, :when => [:implementing_a_game_engine_core]
35
- validates_with_method :ensure_approved_by_linus_himself, :when => [:hacking_on_the_kernel]
36
-
37
- #
38
- # API
39
- #
40
-
41
- def initialize(args = {})
42
- args.each do |key, value|
43
- self.send("#{key}=", value)
44
- end
45
- end
46
-
47
- def ensure_appropriate_for_system_programming
48
- if allows_manual_memory_management && allows_system_calls
49
- true
50
- else
51
- [false, "try something that is closer to the metal"]
52
- end
53
- end
54
-
55
- def ensure_appropriate_for_dsls
56
- if allows_optional_parentheses && allows_operator_overload && is_very_high_level && does_not_require_explicit_return_keyword
57
- true
58
- else
59
- [false, "may not be so good for domain specific languages"]
60
- end
61
- end
62
-
63
- def ensure_appropriate_for_cpu_intensive_tasks
64
- if compiler_excels_at_utilizing_cpu_cache && allows_manual_memory_management
65
- true
66
- else
67
- [false, "may not be so good for CPU intensive tasks"]
68
- end
69
- end
70
-
71
- def ensure_approved_by_linus_himself
72
- if name.downcase == "c++"
73
- [false, "Quite frankly, even if the choice of C were to do *nothing*
74
- but keep the C++ programmers out, that in itself would be
75
- a huge reason to use C."]
76
- else
77
- true
78
- end
79
- end
80
- end # ProgrammingLanguage
81
- end # Fixtures
82
- end # Validations
83
- end # DataMapper
@@ -1,38 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- module DataMapper
4
- module Validation
5
- module Fixtures
6
- class Reservation
7
- #
8
- # Behaviors
9
- #
10
-
11
- include ::DataMapper::Resource
12
-
13
- #
14
- # Attributes
15
- #
16
-
17
- attr_accessor :person_name_confirmation, :seats_confirmation
18
-
19
- #
20
- # Properties
21
- #
22
-
23
- property :id, Serial
24
- property :person_name, String, :auto_validation => false
25
- property :number_of_seats, Integer, :auto_validation => false
26
-
27
- #
28
- # Validations
29
- #
30
-
31
- validates_confirmation_of :person_name, :allow_nil => false, :allow_blank => false
32
- validates_confirmation_of :number_of_seats, :confirm => :seats_confirmation, :message => Proc.new { |resource, property|
33
- '%s requires confirmation for %s' % [DataMapper::Inflector.demodulize(resource.model.name), property.name]
34
- }
35
- end # Reservation
36
- end # Fixtures
37
- end # Validations
38
- end # DataMapper