aequitas 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/aequitas/contextual_rule_set.rb +23 -29
- data/lib/aequitas/macros.rb +6 -0
- data/lib/aequitas/message_transformer.rb +23 -8
- data/lib/aequitas/rule.rb +2 -23
- data/lib/aequitas/rule/block.rb +5 -0
- data/lib/aequitas/rule/format.rb +24 -28
- data/lib/aequitas/rule/{formats/email.rb → format/email_address.rb} +7 -3
- data/lib/aequitas/rule/format/proc.rb +4 -10
- data/lib/aequitas/rule/format/regexp.rb +4 -6
- data/lib/aequitas/rule/{formats → format}/url.rb +7 -3
- data/lib/aequitas/rule/guard.rb +2 -2
- data/lib/aequitas/rule/length.rb +29 -30
- data/lib/aequitas/rule/length/equal.rb +4 -4
- data/lib/aequitas/rule/length/maximum.rb +4 -6
- data/lib/aequitas/rule/length/minimum.rb +4 -6
- data/lib/aequitas/rule/length/range.rb +4 -6
- data/lib/aequitas/rule/method.rb +6 -1
- data/lib/aequitas/rule/numericalness.rb +19 -40
- data/lib/aequitas/rule/numericalness/integer.rb +3 -19
- data/lib/aequitas/rule/numericalness/non_integer.rb +2 -18
- data/lib/aequitas/rule/primitive_type.rb +17 -6
- data/lib/aequitas/rule/primitive_type/virtus.rb +25 -0
- data/lib/aequitas/rule/skip_condition.rb +2 -2
- data/lib/aequitas/rule/value.rb +64 -0
- data/lib/aequitas/rule/{numericalness → value}/equal.rb +5 -7
- data/lib/aequitas/rule/{numericalness → value}/greater_than.rb +5 -7
- data/lib/aequitas/rule/{numericalness → value}/greater_than_or_equal.rb +5 -7
- data/lib/aequitas/rule/{numericalness → value}/less_than.rb +5 -7
- data/lib/aequitas/rule/{numericalness → value}/less_than_or_equal.rb +5 -7
- data/lib/aequitas/rule/{numericalness → value}/not_equal.rb +5 -7
- data/lib/aequitas/rule/value/range.rb +25 -0
- data/lib/aequitas/rule/within.rb +25 -13
- data/lib/aequitas/rule_set.rb +2 -2
- data/lib/aequitas/support/{equalizable.rb → value_object.rb} +2 -3
- data/lib/aequitas/version.rb +1 -1
- data/lib/aequitas/violation.rb +4 -4
- data/lib/aequitas/violation_set.rb +2 -3
- data/lib/aequitas/virtus_integration.rb +31 -0
- data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor.rb +30 -0
- data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/array.rb +29 -0
- data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/boolean.rb +17 -0
- data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/numeric.rb +22 -0
- data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/object.rb +38 -0
- data/lib/aequitas/virtus_integration/inline_attribute_rule_extractor/string.rb +35 -0
- data/spec/integration/aequitas/macros/validates_numericalness_of_spec.rb +77 -8
- data/spec/integration/aequitas/macros/validates_value_of_spec.rb +27 -0
- data/spec/integration/aequitas/macros/validates_within.rb +10 -74
- data/spec/integration/shared/macros/integration_spec.rb +10 -0
- data/spec/integration/virtus/array/length/equal_spec.rb +49 -0
- data/spec/integration/virtus/array/length/range_spec.rb +59 -0
- data/spec/integration/virtus/boolean/presence_spec.rb +4 -4
- data/spec/integration/virtus/integer/value/equal_to_spec.rb +45 -0
- data/spec/integration/virtus/integer/value/greater_than_or_equal.rb +45 -0
- data/spec/integration/virtus/integer/value/greater_than_spec.rb +45 -0
- data/spec/integration/virtus/integer/value/less_than_or_equal.rb +45 -0
- data/spec/integration/virtus/integer/value/less_than_spec.rb +45 -0
- data/spec/integration/virtus/integer/value/not_equal_to_spec.rb +45 -0
- data/spec/integration/virtus/string/format/email_address_spec.rb +3 -3
- data/spec/integration/virtus/string/format/regexp_spec.rb +2 -2
- data/spec/integration/virtus/string/format/url_spec.rb +2 -2
- data/spec/integration/virtus/string/length/equal_spec.rb +3 -3
- data/spec/integration/virtus/string/length/range_spec.rb +2 -2
- data/spec/integration/virtus/string/presence_spec.rb +2 -2
- data/spec/unit/aequitas/support/{equalizable → value_object}/equalizer_spec.rb +4 -4
- data/spec/unit/aequitas/support/{equalizable_spec.rb → value_object_spec.rb} +11 -11
- data/spec/unit/aequitas/violation_set_spec.rb +1 -1
- metadata +46 -149
- data/.gitignore +0 -4
- data/.rvmrc +0 -1
- data/aequitas.gemspec +0 -20
- data/lib/aequitas/rule/within/range.rb +0 -53
- data/lib/aequitas/rule/within/range/bounded.rb +0 -25
- data/lib/aequitas/rule/within/range/unbounded_begin.rb +0 -25
- data/lib/aequitas/rule/within/range/unbounded_end.rb +0 -25
- data/lib/aequitas/rule/within/set.rb +0 -39
- data/lib/aequitas/virtus.rb +0 -29
- data/lib/aequitas/virtus/inline_attribute_rule_extractor.rb +0 -41
- data/lib/aequitas/virtus/inline_attribute_rule_extractor/boolean.rb +0 -17
- data/lib/aequitas/virtus/inline_attribute_rule_extractor/object.rb +0 -25
- data/lib/aequitas/virtus/inline_attribute_rule_extractor/string.rb +0 -27
- data/spec_legacy/fixtures/barcode.rb +0 -40
- data/spec_legacy/fixtures/basketball_court.rb +0 -58
- data/spec_legacy/fixtures/basketball_player.rb +0 -34
- data/spec_legacy/fixtures/beta_tester_account.rb +0 -33
- data/spec_legacy/fixtures/bill_of_landing.rb +0 -47
- data/spec_legacy/fixtures/boat_dock.rb +0 -26
- data/spec_legacy/fixtures/city.rb +0 -24
- data/spec_legacy/fixtures/company.rb +0 -93
- data/spec_legacy/fixtures/corporate_world.rb +0 -39
- data/spec_legacy/fixtures/country.rb +0 -24
- data/spec_legacy/fixtures/ethernet_frame.rb +0 -56
- data/spec_legacy/fixtures/event.rb +0 -44
- data/spec_legacy/fixtures/g3_concert.rb +0 -57
- data/spec_legacy/fixtures/jabberwock.rb +0 -27
- data/spec_legacy/fixtures/kayak.rb +0 -28
- data/spec_legacy/fixtures/lernean_hydra.rb +0 -39
- data/spec_legacy/fixtures/llama_spaceship.rb +0 -15
- data/spec_legacy/fixtures/mathematical_function.rb +0 -34
- data/spec_legacy/fixtures/memory_object.rb +0 -30
- data/spec_legacy/fixtures/mittelschnauzer.rb +0 -39
- data/spec_legacy/fixtures/motor_launch.rb +0 -21
- data/spec_legacy/fixtures/multibyte.rb +0 -16
- data/spec_legacy/fixtures/page.rb +0 -32
- data/spec_legacy/fixtures/phone_number.rb +0 -28
- data/spec_legacy/fixtures/pirogue.rb +0 -28
- data/spec_legacy/fixtures/programming_language.rb +0 -83
- data/spec_legacy/fixtures/reservation.rb +0 -38
- data/spec_legacy/fixtures/scm_operation.rb +0 -56
- data/spec_legacy/fixtures/sms_message.rb +0 -22
- data/spec_legacy/fixtures/udp_packet.rb +0 -49
- data/spec_legacy/integration/absent_field_validator/absent_field_validator_spec.rb +0 -90
- data/spec_legacy/integration/absent_field_validator/spec_helper.rb +0 -7
- data/spec_legacy/integration/acceptance_validator/acceptance_validator_spec.rb +0 -196
- data/spec_legacy/integration/acceptance_validator/spec_helper.rb +0 -7
- data/spec_legacy/integration/automatic_validation/custom_messages_for_inferred_validation_spec.rb +0 -57
- data/spec_legacy/integration/automatic_validation/disabling_inferred_validation_spec.rb +0 -49
- data/spec_legacy/integration/automatic_validation/inferred_boolean_properties_validation_spec.rb +0 -100
- data/spec_legacy/integration/automatic_validation/inferred_float_property_validation_spec.rb +0 -45
- data/spec_legacy/integration/automatic_validation/inferred_format_validation_spec.rb +0 -35
- data/spec_legacy/integration/automatic_validation/inferred_integer_properties_validation_spec.rb +0 -70
- data/spec_legacy/integration/automatic_validation/inferred_length_validation_spec.rb +0 -142
- data/spec_legacy/integration/automatic_validation/inferred_presence_validation_spec.rb +0 -45
- data/spec_legacy/integration/automatic_validation/inferred_primitive_validation_spec.rb +0 -22
- data/spec_legacy/integration/automatic_validation/inferred_uniqueness_validation_spec.rb +0 -48
- data/spec_legacy/integration/automatic_validation/inferred_within_validation_spec.rb +0 -35
- data/spec_legacy/integration/automatic_validation/spec_helper.rb +0 -57
- data/spec_legacy/integration/block_validator/block_validator_spec.rb +0 -32
- data/spec_legacy/integration/block_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/conditional_validation/if_condition_spec.rb +0 -63
- data/spec_legacy/integration/conditional_validation/spec_helper.rb +0 -5
- data/spec_legacy/integration/confirmation_validator/confirmation_validator_spec.rb +0 -76
- data/spec_legacy/integration/confirmation_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/datamapper_models/association_validation_spec.rb +0 -29
- data/spec_legacy/integration/datamapper_models/inheritance_spec.rb +0 -82
- data/spec_legacy/integration/dirty_attributes/dirty_attributes_spec.rb +0 -13
- data/spec_legacy/integration/duplicated_validations/duplicated_validations_spec.rb +0 -24
- data/spec_legacy/integration/duplicated_validations/spec_helper.rb +0 -5
- data/spec_legacy/integration/format_validator/email_format_validator_spec.rb +0 -139
- data/spec_legacy/integration/format_validator/format_validator_spec.rb +0 -64
- data/spec_legacy/integration/format_validator/regexp_validator_spec.rb +0 -33
- data/spec_legacy/integration/format_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/format_validator/url_format_validator_spec.rb +0 -93
- data/spec_legacy/integration/length_validator/default_value_spec.rb +0 -14
- data/spec_legacy/integration/length_validator/equality_spec.rb +0 -87
- data/spec_legacy/integration/length_validator/error_message_spec.rb +0 -22
- data/spec_legacy/integration/length_validator/maximum_spec.rb +0 -49
- data/spec_legacy/integration/length_validator/minimum_spec.rb +0 -54
- data/spec_legacy/integration/length_validator/range_spec.rb +0 -87
- data/spec_legacy/integration/length_validator/spec_helper.rb +0 -7
- data/spec_legacy/integration/method_validator/method_validator_spec.rb +0 -242
- data/spec_legacy/integration/method_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/numeric_validator/equality_with_float_type_spec.rb +0 -65
- data/spec_legacy/integration/numeric_validator/equality_with_integer_type_spec.rb +0 -41
- data/spec_legacy/integration/numeric_validator/float_type_spec.rb +0 -90
- data/spec_legacy/integration/numeric_validator/gt_with_float_type_spec.rb +0 -37
- data/spec_legacy/integration/numeric_validator/gte_with_float_type_spec.rb +0 -37
- data/spec_legacy/integration/numeric_validator/integer_only_true_spec.rb +0 -91
- data/spec_legacy/integration/numeric_validator/integer_type_spec.rb +0 -86
- data/spec_legacy/integration/numeric_validator/lt_with_float_type_spec.rb +0 -37
- data/spec_legacy/integration/numeric_validator/lte_with_float_type_spec.rb +0 -37
- data/spec_legacy/integration/numeric_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/primitive_validator/primitive_validator_spec.rb +0 -92
- data/spec_legacy/integration/primitive_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/pure_ruby_objects/plain_old_ruby_object_validation_spec.rb +0 -118
- data/spec_legacy/integration/required_field_validator/association_spec.rb +0 -69
- data/spec_legacy/integration/required_field_validator/boolean_type_value_spec.rb +0 -164
- data/spec_legacy/integration/required_field_validator/date_type_value_spec.rb +0 -127
- data/spec_legacy/integration/required_field_validator/datetime_type_value_spec.rb +0 -127
- data/spec_legacy/integration/required_field_validator/float_type_value_spec.rb +0 -131
- data/spec_legacy/integration/required_field_validator/integer_type_value_spec.rb +0 -99
- data/spec_legacy/integration/required_field_validator/plain_old_ruby_object_spec.rb +0 -35
- data/spec_legacy/integration/required_field_validator/shared_examples.rb +0 -26
- data/spec_legacy/integration/required_field_validator/spec_helper.rb +0 -7
- data/spec_legacy/integration/required_field_validator/string_type_value_spec.rb +0 -167
- data/spec_legacy/integration/required_field_validator/text_type_value_spec.rb +0 -49
- data/spec_legacy/integration/shared/default_validation_context.rb +0 -13
- data/spec_legacy/integration/shared/valid_and_invalid_model.rb +0 -35
- data/spec_legacy/integration/uniqueness_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/uniqueness_validator/uniqueness_validator_spec.rb +0 -116
- data/spec_legacy/integration/within_validator/spec_helper.rb +0 -5
- data/spec_legacy/integration/within_validator/within_validator_spec.rb +0 -168
- data/spec_legacy/public/resource_spec.rb +0 -105
- data/spec_legacy/spec.opts +0 -4
- data/spec_legacy/spec_helper.rb +0 -29
- data/spec_legacy/unit/contextual_validators/emptiness_spec.rb +0 -50
- data/spec_legacy/unit/contextual_validators/execution_spec.rb +0 -48
- data/spec_legacy/unit/contextual_validators/spec_helper.rb +0 -37
- data/spec_legacy/unit/generic_validator/equality_operator_spec.rb +0 -26
- data/spec_legacy/unit/generic_validator/optional_spec.rb +0 -54
- data/spec_legacy/unit/validators/within_validator_spec.rb +0 -23
- data/spec_legacy/unit/violation_set/adding_spec.rb +0 -54
- data/spec_legacy/unit/violation_set/emptiness_spec.rb +0 -38
- data/spec_legacy/unit/violation_set/enumerable_spec.rb +0 -32
- data/spec_legacy/unit/violation_set/reading_spec.rb +0 -35
- data/spec_legacy/unit/violation_set/respond_to_spec.rb +0 -15
- data/tasks/spec.rake +0 -38
- data/tasks/yard.rake +0 -9
- data/tasks/yardstick.rake +0 -19
data/.gitignore
DELETED
data/.rvmrc
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
rvm use @aequitas --create
|
data/aequitas.gemspec
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
$:.push File.expand_path("../lib", __FILE__)
|
3
|
-
require "aequitas/version"
|
4
|
-
|
5
|
-
Gem::Specification.new do |s|
|
6
|
-
s.name = "aequitas"
|
7
|
-
s.version = Aequitas::VERSION
|
8
|
-
s.authors = ["Emmanuel Gomez"]
|
9
|
-
s.email = ["emmanuel.gomez@gmail.com"]
|
10
|
-
s.homepage = "https://github.com/emmanuel/aequitas"
|
11
|
-
s.summary = %q{Library for performing validations on Ruby objects.}
|
12
|
-
s.description = %q{Library for validating Ruby objects with rich metadata support.}
|
13
|
-
|
14
|
-
s.files = `git ls-files`.split("\n")
|
15
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
16
|
-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
17
|
-
s.require_paths = ["lib"]
|
18
|
-
|
19
|
-
s.add_development_dependency("minitest", ["~> 2.8"])
|
20
|
-
end
|
@@ -1,53 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'aequitas/rule/within'
|
4
|
-
|
5
|
-
module Aequitas
|
6
|
-
class Rule
|
7
|
-
module Within
|
8
|
-
module Range
|
9
|
-
|
10
|
-
Infinity = 1.0 / 0
|
11
|
-
|
12
|
-
include Within
|
13
|
-
|
14
|
-
attr_reader :range
|
15
|
-
|
16
|
-
def self.rules_for(attribute_name, options)
|
17
|
-
Array(new(attribute_name, options))
|
18
|
-
end
|
19
|
-
|
20
|
-
def self.new(attribute_name, options)
|
21
|
-
super if Within::Range != self
|
22
|
-
|
23
|
-
range = options.fetch(:range) { options.fetch(:set) }
|
24
|
-
|
25
|
-
if range.first != -Infinity && range.last != Infinity
|
26
|
-
Bounded.new(attribute_name, options)
|
27
|
-
elsif range.first == -Infinity
|
28
|
-
UnboundedBegin.new(attribute_name, options)
|
29
|
-
elsif range.last == Infinity
|
30
|
-
UnboundedEnd.new(attribute_name, options)
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
def initialize(attribute_name, options={})
|
35
|
-
super
|
36
|
-
|
37
|
-
@range = options.fetch(:range) { options.fetch(:set) }
|
38
|
-
end
|
39
|
-
|
40
|
-
def valid?(resource)
|
41
|
-
value = attribute_value(resource)
|
42
|
-
|
43
|
-
skip?(value) || range.include?(value)
|
44
|
-
end
|
45
|
-
|
46
|
-
end # module Range
|
47
|
-
end # module Within
|
48
|
-
end # class Rule
|
49
|
-
end # module Aequitas
|
50
|
-
|
51
|
-
require 'aequitas/rule/within/range/bounded'
|
52
|
-
require 'aequitas/rule/within/range/unbounded_begin'
|
53
|
-
require 'aequitas/rule/within/range/unbounded_end'
|
@@ -1,25 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'aequitas/rule/within/range'
|
4
|
-
|
5
|
-
module Aequitas
|
6
|
-
class Rule
|
7
|
-
module Within
|
8
|
-
module Range
|
9
|
-
class Bounded < Rule
|
10
|
-
|
11
|
-
include Range
|
12
|
-
|
13
|
-
def violation_type(resource)
|
14
|
-
:value_between
|
15
|
-
end
|
16
|
-
|
17
|
-
def violation_data(resource)
|
18
|
-
[ [ :minimum, range.begin ], [ :maximum, range.end ] ]
|
19
|
-
end
|
20
|
-
|
21
|
-
end # class Bounded
|
22
|
-
end # module Range
|
23
|
-
end # module Within
|
24
|
-
end # class Rule
|
25
|
-
end # module Aequitas
|
@@ -1,25 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'aequitas/rule/within/range'
|
4
|
-
|
5
|
-
module Aequitas
|
6
|
-
class Rule
|
7
|
-
module Within
|
8
|
-
module Range
|
9
|
-
class UnboundedBegin < Rule
|
10
|
-
|
11
|
-
include Range
|
12
|
-
|
13
|
-
def violation_type(resource)
|
14
|
-
:less_than_or_equal_to
|
15
|
-
end
|
16
|
-
|
17
|
-
def violation_data(resource)
|
18
|
-
[ [ :maximum, range.max ] ]
|
19
|
-
end
|
20
|
-
|
21
|
-
end # class UnboundedBegin
|
22
|
-
end # module Range
|
23
|
-
end # module Within
|
24
|
-
end # class Rule
|
25
|
-
end # module Aequitas
|
@@ -1,25 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'aequitas/rule/within/range'
|
4
|
-
|
5
|
-
module Aequitas
|
6
|
-
class Rule
|
7
|
-
module Within
|
8
|
-
module Range
|
9
|
-
class UnboundedEnd < Rule
|
10
|
-
|
11
|
-
include Range
|
12
|
-
|
13
|
-
def violation_type(resource)
|
14
|
-
:greater_than_or_equal_to
|
15
|
-
end
|
16
|
-
|
17
|
-
def violation_data(resource)
|
18
|
-
[ [ :minimum, range.begin ] ]
|
19
|
-
end
|
20
|
-
|
21
|
-
end # class UnboundedBegin
|
22
|
-
end # module Range
|
23
|
-
end # module Within
|
24
|
-
end # class Rule
|
25
|
-
end # module Aequitas
|
@@ -1,39 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'aequitas/rule/within'
|
4
|
-
|
5
|
-
module Aequitas
|
6
|
-
class Rule
|
7
|
-
module Within
|
8
|
-
class Set < Rule
|
9
|
-
|
10
|
-
equalize_on *(superclass.equalizer.keys + [:set])
|
11
|
-
|
12
|
-
include Within
|
13
|
-
|
14
|
-
attr_reader :set
|
15
|
-
|
16
|
-
def initialize(attribute_name, options={})
|
17
|
-
super
|
18
|
-
|
19
|
-
@set = options.fetch(:set, [])
|
20
|
-
end
|
21
|
-
|
22
|
-
def valid?(resource)
|
23
|
-
value = attribute_value(resource)
|
24
|
-
|
25
|
-
skip?(value) || set.include?(value)
|
26
|
-
end
|
27
|
-
|
28
|
-
def violation_type(resource)
|
29
|
-
:inclusion
|
30
|
-
end
|
31
|
-
|
32
|
-
def violation_data(resource)
|
33
|
-
[ [ :set, set.to_a.join(', ') ] ]
|
34
|
-
end
|
35
|
-
|
36
|
-
end # class Set
|
37
|
-
end # module Within
|
38
|
-
end # class Rule
|
39
|
-
end # module Aequitas
|
data/lib/aequitas/virtus.rb
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
require 'aequitas/virtus/inline_attribute_rule_extractor'
|
2
|
-
|
3
|
-
module Virtus
|
4
|
-
class Attribute
|
5
|
-
Object.accept_options :required# , :prohibited, :forbidden # hmm...
|
6
|
-
String.accept_options :length, :format
|
7
|
-
Decimal.accept_options :precision, :scale
|
8
|
-
Float.accept_options :precision, :scale
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
module Aequitas
|
13
|
-
module ClassMethods
|
14
|
-
def self.extended(base)
|
15
|
-
super
|
16
|
-
base.extend Aequitas::Virtus::ClassMethodOverrides
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
module Virtus
|
21
|
-
module ClassMethodOverrides
|
22
|
-
def virtus_add_attribute(attribute)
|
23
|
-
super
|
24
|
-
inline_attribute_rules = InlineAttributeRuleExtractor.extract(attribute)
|
25
|
-
validation_rules.context(:default).concat(inline_attribute_rules)
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
module Aequitas
|
2
|
-
module Virtus
|
3
|
-
class InlineAttributeRuleExtractor
|
4
|
-
|
5
|
-
def self.extract(attribute)
|
6
|
-
type =
|
7
|
-
case attribute
|
8
|
-
when ::Virtus::Attribute::Boolean; self::Boolean
|
9
|
-
when ::Virtus::Attribute::String; self::String
|
10
|
-
# when ::Virtus::Attribute::Decimal; self::Decimal
|
11
|
-
# when ::Virtus::Attribute::Float; self::Float
|
12
|
-
when ::Virtus::Attribute::Object; self::Object
|
13
|
-
end
|
14
|
-
type.new(attribute).extract
|
15
|
-
end
|
16
|
-
|
17
|
-
attr_reader :attribute
|
18
|
-
|
19
|
-
def initialize(attribute)
|
20
|
-
@attribute = attribute
|
21
|
-
end
|
22
|
-
|
23
|
-
def options
|
24
|
-
attribute.options
|
25
|
-
end
|
26
|
-
|
27
|
-
def extract
|
28
|
-
rules = []
|
29
|
-
rules.concat Array(extract_presence_rules) if options.fetch(:required, false)
|
30
|
-
rules.concat Array(extract_length_rules) if options.fetch(:length, false)
|
31
|
-
rules.concat Array(extract_format_rules) if options.fetch(:format, false)
|
32
|
-
rules
|
33
|
-
end
|
34
|
-
|
35
|
-
end
|
36
|
-
end # module Virtus
|
37
|
-
end # module Aequitas
|
38
|
-
|
39
|
-
require 'aequitas/virtus/inline_attribute_rule_extractor/object'
|
40
|
-
require 'aequitas/virtus/inline_attribute_rule_extractor/boolean'
|
41
|
-
require 'aequitas/virtus/inline_attribute_rule_extractor/string'
|
@@ -1,17 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'aequitas/virtus/inline_attribute_rule_extractor/object'
|
4
|
-
|
5
|
-
module Aequitas
|
6
|
-
module Virtus
|
7
|
-
class InlineAttributeRuleExtractor
|
8
|
-
class Boolean < Object
|
9
|
-
|
10
|
-
def extract_presence_rules
|
11
|
-
Rule::Presence::NotNil.new(attribute.name)
|
12
|
-
end
|
13
|
-
|
14
|
-
end # class Boolean
|
15
|
-
end # class InlineAttributeRuleExtractor
|
16
|
-
end # module Virtus
|
17
|
-
end # module Aequitas
|
@@ -1,25 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'aequitas/virtus/inline_attribute_rule_extractor'
|
4
|
-
|
5
|
-
module Aequitas
|
6
|
-
module Virtus
|
7
|
-
class InlineAttributeRuleExtractor
|
8
|
-
class Object < InlineAttributeRuleExtractor
|
9
|
-
|
10
|
-
def extract_presence_rules
|
11
|
-
Rule::Presence::NotBlank.new(attribute.name)
|
12
|
-
end
|
13
|
-
|
14
|
-
def extract_length_rules
|
15
|
-
nil
|
16
|
-
end
|
17
|
-
|
18
|
-
def extract_format_rules
|
19
|
-
nil
|
20
|
-
end
|
21
|
-
|
22
|
-
end # class Object
|
23
|
-
end # class InlineAttributeRuleExtractor
|
24
|
-
end # module Virtus
|
25
|
-
end # module Aequitas
|
@@ -1,27 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'aequitas/virtus/inline_attribute_rule_extractor/object'
|
4
|
-
|
5
|
-
module Aequitas
|
6
|
-
module Virtus
|
7
|
-
class InlineAttributeRuleExtractor
|
8
|
-
class String < Object
|
9
|
-
|
10
|
-
def extract_length_rules
|
11
|
-
length = attribute.options.fetch(:length)
|
12
|
-
|
13
|
-
case length
|
14
|
-
when Integer; Rule::Length::Equal.new(attribute.name, :expected => length)
|
15
|
-
when Range; Rule::Length::Range.new(attribute.name, :range => length)
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
def extract_format_rules
|
20
|
-
format = attribute.options.fetch(:format)
|
21
|
-
Rule::Format.new(attribute.name, :with => format)
|
22
|
-
end
|
23
|
-
|
24
|
-
end # class String
|
25
|
-
end # class InlineAttributeRuleExtractor
|
26
|
-
end # module Virtus
|
27
|
-
end # module Aequitas
|
@@ -1,40 +0,0 @@
|
|
1
|
-
module DataMapper
|
2
|
-
module Validation
|
3
|
-
module Fixtures
|
4
|
-
class Barcode
|
5
|
-
attr_accessor :valid_hook_call_count
|
6
|
-
|
7
|
-
#
|
8
|
-
# Behaviors
|
9
|
-
#
|
10
|
-
|
11
|
-
include DataMapper::Resource
|
12
|
-
|
13
|
-
#
|
14
|
-
# Properties
|
15
|
-
#
|
16
|
-
|
17
|
-
without_auto_validations do
|
18
|
-
property :code, String, :key => true
|
19
|
-
end
|
20
|
-
|
21
|
-
#
|
22
|
-
# Validations
|
23
|
-
#
|
24
|
-
|
25
|
-
validates_length_of :code, :max => 10
|
26
|
-
|
27
|
-
def self.valid_instance
|
28
|
-
new(:code => "3600029145")
|
29
|
-
end
|
30
|
-
|
31
|
-
# measure the number of times #valid? is executed
|
32
|
-
before :valid? do
|
33
|
-
@valid_hook_call_count ||= 0
|
34
|
-
@valid_hook_call_count += 1
|
35
|
-
end
|
36
|
-
|
37
|
-
end # Barcode
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end
|
@@ -1,58 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
|
3
|
-
module DataMapper
|
4
|
-
module Validation
|
5
|
-
module Fixtures
|
6
|
-
class BasketballCourt
|
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 :name, String
|
21
|
-
|
22
|
-
property :length, Float
|
23
|
-
property :width, Float
|
24
|
-
|
25
|
-
property :three_point_line_distance, Float
|
26
|
-
property :free_throw_line_distance, Float
|
27
|
-
property :rim_height, Float
|
28
|
-
end
|
29
|
-
|
30
|
-
#
|
31
|
-
# Validations
|
32
|
-
#
|
33
|
-
|
34
|
-
# obviously these are all metrics
|
35
|
-
validates_numericality_of :length, :gte => 15.0, :lte => 15.24
|
36
|
-
validates_numericality_of :width, :gte => 25.28, :lte => 28.65
|
37
|
-
|
38
|
-
# 3 pt line distance may use :gte and :lte, but for
|
39
|
-
# sake of spec example we make it up a little
|
40
|
-
validates_numericality_of :three_point_line_distance, :gt => 6.7, :lt => 7.24
|
41
|
-
validates_numericality_of :free_throw_line_distance, :equals => 4.57
|
42
|
-
validates_numericality_of :rim_height, :eq => 3.05
|
43
|
-
|
44
|
-
def self.valid_instance(overrides = {})
|
45
|
-
defaults = {
|
46
|
-
:length => 15.24,
|
47
|
-
:width => 28.65,
|
48
|
-
:free_throw_line_distance => 4.57,
|
49
|
-
:rim_height => 3.05,
|
50
|
-
:three_point_line_distance => 6.9
|
51
|
-
}
|
52
|
-
|
53
|
-
new(defaults.merge(overrides))
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end # Fixtures
|
57
|
-
end # Validations
|
58
|
-
end # DataMapper
|