sbf-dm-validations 1.3.0.beta
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +38 -0
- data/.rspec +1 -0
- data/.rubocop.yml +468 -0
- data/.travis.yml +51 -0
- data/Gemfile +60 -0
- data/LICENSE +21 -0
- data/README.rdoc +122 -0
- data/Rakefile +4 -0
- data/dm-validations.gemspec +20 -0
- data/lib/data_mapper/core.rb +1 -0
- data/lib/data_mapper/support/assertions.rb +1 -0
- data/lib/data_mapper/support/equalizer.rb +1 -0
- data/lib/data_mapper/support/ordered_set.rb +2 -0
- data/lib/data_mapper/validation/backward.rb +205 -0
- data/lib/data_mapper/validation/context.rb +57 -0
- data/lib/data_mapper/validation/contextual_rule_set.rb +210 -0
- data/lib/data_mapper/validation/exceptions.rb +7 -0
- data/lib/data_mapper/validation/inferred.rb +264 -0
- data/lib/data_mapper/validation/macros.rb +449 -0
- data/lib/data_mapper/validation/message_transformer.rb +111 -0
- data/lib/data_mapper/validation/model_extensions.rb +17 -0
- data/lib/data_mapper/validation/resource_extensions.rb +131 -0
- data/lib/data_mapper/validation/rule/absence.rb +31 -0
- data/lib/data_mapper/validation/rule/acceptance.rb +49 -0
- data/lib/data_mapper/validation/rule/block.rb +37 -0
- data/lib/data_mapper/validation/rule/confirmation.rb +47 -0
- data/lib/data_mapper/validation/rule/format/proc.rb +34 -0
- data/lib/data_mapper/validation/rule/format/regexp.rb +51 -0
- data/lib/data_mapper/validation/rule/format.rb +86 -0
- data/lib/data_mapper/validation/rule/formats/email.rb +54 -0
- data/lib/data_mapper/validation/rule/formats/url.rb +13 -0
- data/lib/data_mapper/validation/rule/length/equal.rb +48 -0
- data/lib/data_mapper/validation/rule/length/maximum.rb +50 -0
- data/lib/data_mapper/validation/rule/length/minimum.rb +50 -0
- data/lib/data_mapper/validation/rule/length/range.rb +50 -0
- data/lib/data_mapper/validation/rule/length.rb +96 -0
- data/lib/data_mapper/validation/rule/method.rb +42 -0
- data/lib/data_mapper/validation/rule/numericalness/equal.rb +34 -0
- data/lib/data_mapper/validation/rule/numericalness/greater_than.rb +34 -0
- data/lib/data_mapper/validation/rule/numericalness/greater_than_or_equal.rb +34 -0
- data/lib/data_mapper/validation/rule/numericalness/integer.rb +41 -0
- data/lib/data_mapper/validation/rule/numericalness/less_than.rb +34 -0
- data/lib/data_mapper/validation/rule/numericalness/less_than_or_equal.rb +34 -0
- data/lib/data_mapper/validation/rule/numericalness/not_equal.rb +34 -0
- data/lib/data_mapper/validation/rule/numericalness/numeric.rb +68 -0
- data/lib/data_mapper/validation/rule/numericalness.rb +91 -0
- data/lib/data_mapper/validation/rule/presence.rb +52 -0
- data/lib/data_mapper/validation/rule/primitive_type.rb +32 -0
- data/lib/data_mapper/validation/rule/uniqueness.rb +64 -0
- data/lib/data_mapper/validation/rule/within/range/bounded.rb +29 -0
- data/lib/data_mapper/validation/rule/within/range/unbounded_begin.rb +29 -0
- data/lib/data_mapper/validation/rule/within/range/unbounded_end.rb +29 -0
- data/lib/data_mapper/validation/rule/within/range.rb +55 -0
- data/lib/data_mapper/validation/rule/within/set.rb +45 -0
- data/lib/data_mapper/validation/rule/within.rb +32 -0
- data/lib/data_mapper/validation/rule.rb +232 -0
- data/lib/data_mapper/validation/rule_set.rb +157 -0
- data/lib/data_mapper/validation/support/object.rb +19 -0
- data/lib/data_mapper/validation/support/ordered_hash.rb +434 -0
- data/lib/data_mapper/validation/version.rb +5 -0
- data/lib/data_mapper/validation/violation.rb +136 -0
- data/lib/data_mapper/validation/violation_set.rb +115 -0
- data/lib/data_mapper/validation.rb +105 -0
- data/lib/dm-validations.rb +24 -0
- data/spec/data_mapper/validation/resource_extensions/save_spec.rb +56 -0
- data/spec/data_mapper/validation/resource_extensions/validate_spec.rb +103 -0
- data/spec/fixtures/barcode.rb +40 -0
- data/spec/fixtures/basketball_court.rb +58 -0
- data/spec/fixtures/basketball_player.rb +34 -0
- data/spec/fixtures/beta_tester_account.rb +33 -0
- data/spec/fixtures/bill_of_landing.rb +47 -0
- data/spec/fixtures/boat_dock.rb +26 -0
- data/spec/fixtures/city.rb +24 -0
- data/spec/fixtures/company.rb +93 -0
- data/spec/fixtures/corporate_world.rb +39 -0
- data/spec/fixtures/country.rb +24 -0
- data/spec/fixtures/ethernet_frame.rb +56 -0
- data/spec/fixtures/event.rb +44 -0
- data/spec/fixtures/g3_concert.rb +57 -0
- data/spec/fixtures/integer_dumped_as_string_property.rb +24 -0
- data/spec/fixtures/jabberwock.rb +27 -0
- data/spec/fixtures/kayak.rb +28 -0
- data/spec/fixtures/lernean_hydra.rb +39 -0
- data/spec/fixtures/llama_spaceship.rb +15 -0
- data/spec/fixtures/mathematical_function.rb +34 -0
- data/spec/fixtures/memory_object.rb +35 -0
- data/spec/fixtures/mittelschnauzer.rb +39 -0
- data/spec/fixtures/motor_launch.rb +21 -0
- data/spec/fixtures/multibyte.rb +16 -0
- data/spec/fixtures/page.rb +32 -0
- data/spec/fixtures/phone_number.rb +28 -0
- data/spec/fixtures/pirogue.rb +28 -0
- data/spec/fixtures/programming_language.rb +83 -0
- data/spec/fixtures/reservation.rb +38 -0
- data/spec/fixtures/scm_operation.rb +56 -0
- data/spec/fixtures/sms_message.rb +22 -0
- data/spec/fixtures/udp_packet.rb +49 -0
- data/spec/integration/absent_field_validator/absent_field_validator_spec.rb +90 -0
- data/spec/integration/absent_field_validator/spec_helper.rb +7 -0
- data/spec/integration/acceptance_validator/acceptance_validator_spec.rb +196 -0
- data/spec/integration/acceptance_validator/spec_helper.rb +7 -0
- data/spec/integration/automatic_validation/custom_messages_for_inferred_validation_spec.rb +57 -0
- data/spec/integration/automatic_validation/disabling_inferred_validation_spec.rb +49 -0
- data/spec/integration/automatic_validation/inferred_boolean_properties_validation_spec.rb +100 -0
- data/spec/integration/automatic_validation/inferred_float_property_validation_spec.rb +45 -0
- data/spec/integration/automatic_validation/inferred_format_validation_spec.rb +35 -0
- data/spec/integration/automatic_validation/inferred_integer_properties_validation_spec.rb +70 -0
- data/spec/integration/automatic_validation/inferred_length_validation_spec.rb +142 -0
- data/spec/integration/automatic_validation/inferred_presence_validation_spec.rb +45 -0
- data/spec/integration/automatic_validation/inferred_primitive_validation_spec.rb +22 -0
- data/spec/integration/automatic_validation/inferred_uniqueness_validation_spec.rb +48 -0
- data/spec/integration/automatic_validation/inferred_within_validation_spec.rb +35 -0
- data/spec/integration/automatic_validation/spec_helper.rb +57 -0
- data/spec/integration/block_validator/spec_helper.rb +5 -0
- data/spec/integration/conditional_validation/if_condition_spec.rb +63 -0
- data/spec/integration/conditional_validation/spec_helper.rb +5 -0
- data/spec/integration/confirmation_validator/confirmation_validator_spec.rb +76 -0
- data/spec/integration/confirmation_validator/spec_helper.rb +5 -0
- data/spec/integration/datamapper_models/association_validation_spec.rb +29 -0
- data/spec/integration/datamapper_models/inheritance_spec.rb +82 -0
- data/spec/integration/dirty_attributes/dirty_attributes_spec.rb +13 -0
- data/spec/integration/duplicated_validations/duplicated_validations_spec.rb +24 -0
- data/spec/integration/duplicated_validations/spec_helper.rb +5 -0
- data/spec/integration/format_validator/email_format_validator_spec.rb +139 -0
- data/spec/integration/format_validator/format_validator_spec.rb +64 -0
- data/spec/integration/format_validator/regexp_validator_spec.rb +33 -0
- data/spec/integration/format_validator/spec_helper.rb +5 -0
- data/spec/integration/format_validator/url_format_validator_spec.rb +91 -0
- data/spec/integration/length_validator/default_value_spec.rb +14 -0
- data/spec/integration/length_validator/equality_spec.rb +83 -0
- data/spec/integration/length_validator/error_message_spec.rb +22 -0
- data/spec/integration/length_validator/maximum_spec.rb +47 -0
- data/spec/integration/length_validator/minimum_spec.rb +54 -0
- data/spec/integration/length_validator/range_spec.rb +87 -0
- data/spec/integration/length_validator/spec_helper.rb +7 -0
- data/spec/integration/method_validator/method_validator_spec.rb +243 -0
- data/spec/integration/method_validator/spec_helper.rb +5 -0
- data/spec/integration/numeric_validator/equality_with_float_type_spec.rb +65 -0
- data/spec/integration/numeric_validator/equality_with_integer_type_spec.rb +41 -0
- data/spec/integration/numeric_validator/float_type_spec.rb +90 -0
- data/spec/integration/numeric_validator/gt_with_float_type_spec.rb +37 -0
- data/spec/integration/numeric_validator/gte_with_float_type_spec.rb +36 -0
- data/spec/integration/numeric_validator/integer_only_true_spec.rb +91 -0
- data/spec/integration/numeric_validator/integer_type_spec.rb +86 -0
- data/spec/integration/numeric_validator/lt_with_float_type_spec.rb +37 -0
- data/spec/integration/numeric_validator/lte_with_float_type_spec.rb +37 -0
- data/spec/integration/numeric_validator/spec_helper.rb +5 -0
- data/spec/integration/primitive_validator/primitive_validator_spec.rb +112 -0
- data/spec/integration/primitive_validator/spec_helper.rb +5 -0
- data/spec/integration/pure_ruby_objects/plain_old_ruby_object_validation_spec.rb +118 -0
- data/spec/integration/required_field_validator/association_spec.rb +69 -0
- data/spec/integration/required_field_validator/boolean_type_value_spec.rb +164 -0
- data/spec/integration/required_field_validator/date_type_value_spec.rb +127 -0
- data/spec/integration/required_field_validator/datetime_type_value_spec.rb +127 -0
- data/spec/integration/required_field_validator/float_type_value_spec.rb +131 -0
- data/spec/integration/required_field_validator/integer_type_value_spec.rb +99 -0
- data/spec/integration/required_field_validator/plain_old_ruby_object_spec.rb +35 -0
- data/spec/integration/required_field_validator/shared_examples.rb +27 -0
- data/spec/integration/required_field_validator/spec_helper.rb +7 -0
- data/spec/integration/required_field_validator/string_type_value_spec.rb +167 -0
- data/spec/integration/required_field_validator/text_type_value_spec.rb +49 -0
- data/spec/integration/shared/default_validation_context.rb +13 -0
- data/spec/integration/shared/valid_and_invalid_model.rb +35 -0
- data/spec/integration/uniqueness_validator/spec_helper.rb +5 -0
- data/spec/integration/uniqueness_validator/uniqueness_validator_spec.rb +116 -0
- data/spec/integration/within_validator/spec_helper.rb +5 -0
- data/spec/integration/within_validator/within_validator_spec.rb +168 -0
- data/spec/public/resource_spec.rb +113 -0
- data/spec/spec_helper.rb +28 -0
- data/spec/unit/contextual_validators/emptiness_spec.rb +50 -0
- data/spec/unit/contextual_validators/execution_spec.rb +48 -0
- data/spec/unit/contextual_validators/spec_helper.rb +37 -0
- data/spec/unit/generic_validator/equality_operator_spec.rb +26 -0
- data/spec/unit/generic_validator/optional_spec.rb +54 -0
- data/spec/unit/validators/within_validator_spec.rb +23 -0
- data/spec/unit/violation_set/adding_spec.rb +54 -0
- data/spec/unit/violation_set/emptiness_spec.rb +38 -0
- data/spec/unit/violation_set/enumerable_spec.rb +32 -0
- data/spec/unit/violation_set/reading_spec.rb +35 -0
- data/spec/unit/violation_set/respond_to_spec.rb +15 -0
- data/tasks/spec.rake +21 -0
- data/tasks/yard.rake +9 -0
- data/tasks/yardstick.rake +19 -0
- metadata +245 -0
@@ -0,0 +1,63 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
require_relative 'spec_helper'
|
3
|
+
|
4
|
+
describe 'DataMapper::Validations::Fixtures::UDPPacket' do
|
5
|
+
before :all do
|
6
|
+
DataMapper::Validations::Fixtures::UDPPacket.auto_migrate!
|
7
|
+
|
8
|
+
@model = DataMapper::Validations::Fixtures::UDPPacket.new
|
9
|
+
end
|
10
|
+
|
11
|
+
describe "that is transported encapsulated into IPv4 packet" do
|
12
|
+
before :all do
|
13
|
+
@model.underlying_ip_version = 4
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "and has no checksum" do
|
17
|
+
before :all do
|
18
|
+
@model.checksum = nil
|
19
|
+
end
|
20
|
+
|
21
|
+
it_behaves_like 'valid model'
|
22
|
+
end
|
23
|
+
|
24
|
+
describe "and has no checksum algorithm" do
|
25
|
+
before :all do
|
26
|
+
@model.checksum_algorithm = nil
|
27
|
+
end
|
28
|
+
|
29
|
+
it_behaves_like 'valid model'
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
|
34
|
+
describe "that is transported encapsulated into IPv6 packet" do
|
35
|
+
before :all do
|
36
|
+
@model.underlying_ip_version = 6
|
37
|
+
end
|
38
|
+
|
39
|
+
describe "and has no checksum" do
|
40
|
+
before :all do
|
41
|
+
@model.checksum = nil
|
42
|
+
end
|
43
|
+
|
44
|
+
it_behaves_like 'invalid model'
|
45
|
+
|
46
|
+
it "has a meaningful error message" do
|
47
|
+
expect(@model.errors.on(:checksum)).to eq [ 'Checksum is mandatory when used with IPv6' ]
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
describe "and has no checksum algorithm" do
|
52
|
+
before :all do
|
53
|
+
@model.checksum_algorithm = nil
|
54
|
+
end
|
55
|
+
|
56
|
+
it_behaves_like 'invalid model'
|
57
|
+
|
58
|
+
it "has a meaningful error message" do
|
59
|
+
expect(@model.errors.on(:checksum_algorithm)).to eq [ 'Checksum is mandatory when used with IPv6' ]
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,76 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
require_relative 'spec_helper'
|
3
|
+
|
4
|
+
shared_examples 'reservation with mismatched person name' do
|
5
|
+
it 'has meaningful error message' do
|
6
|
+
expect(@model.errors.on(:person_name)).to eq ['Person name does not match the confirmation']
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
shared_examples 'reservation with mismatched seats number' do
|
11
|
+
it 'has meaningful error message' do
|
12
|
+
# Proc gets expanded here
|
13
|
+
expect(@model.errors.on(:number_of_seats)).to eq ['Reservation requires confirmation for number_of_seats']
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
|
18
|
+
describe 'DataMapper::Validations::Fixtures::Reservation' do
|
19
|
+
before :all do
|
20
|
+
DataMapper::Validations::Fixtures::Reservation.auto_migrate!
|
21
|
+
|
22
|
+
@model = DataMapper::Validations::Fixtures::Reservation.new(:person_name => "Tyler Durden",
|
23
|
+
:person_name_confirmation => "Tyler Durden",
|
24
|
+
:number_of_seats => 2,
|
25
|
+
:seats_confirmation => 2)
|
26
|
+
expect(@model).to be_valid
|
27
|
+
end
|
28
|
+
|
29
|
+
describe "with matching person name and confirmation" do
|
30
|
+
before :all do
|
31
|
+
@model.person_name = "mismatch"
|
32
|
+
end
|
33
|
+
|
34
|
+
it_behaves_like 'invalid model'
|
35
|
+
it_behaves_like 'reservation with mismatched person name'
|
36
|
+
end
|
37
|
+
|
38
|
+
|
39
|
+
describe "with a blank person name and confirmation" do
|
40
|
+
before :all do
|
41
|
+
@model.person_name = ""
|
42
|
+
end
|
43
|
+
|
44
|
+
it_behaves_like 'invalid model'
|
45
|
+
it_behaves_like 'reservation with mismatched person name'
|
46
|
+
end
|
47
|
+
|
48
|
+
|
49
|
+
describe "with a missing person name and confirmation" do
|
50
|
+
before :all do
|
51
|
+
@model.person_name = nil
|
52
|
+
end
|
53
|
+
|
54
|
+
it_behaves_like 'invalid model'
|
55
|
+
it_behaves_like 'reservation with mismatched person name'
|
56
|
+
end
|
57
|
+
|
58
|
+
|
59
|
+
describe "with mismatching number of seats and confirmation" do
|
60
|
+
before :all do
|
61
|
+
@model.number_of_seats = -1
|
62
|
+
end
|
63
|
+
|
64
|
+
it_behaves_like 'invalid model'
|
65
|
+
it_behaves_like 'reservation with mismatched seats number'
|
66
|
+
end
|
67
|
+
|
68
|
+
|
69
|
+
describe "with a blank number of seats and confirmation" do
|
70
|
+
before :all do
|
71
|
+
@model.number_of_seats = nil
|
72
|
+
end
|
73
|
+
|
74
|
+
it_behaves_like 'valid model'
|
75
|
+
end
|
76
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
describe 'DataMapper::Validations::Fixtures::Product' do
|
4
|
+
before :all do
|
5
|
+
DataMapper::Validations::Fixtures::ProductCompany.auto_migrate!
|
6
|
+
DataMapper::Validations::Fixtures::Product.auto_migrate!
|
7
|
+
|
8
|
+
parent_model = DataMapper::Validations::Fixtures::ProductCompany
|
9
|
+
@parent = parent_model.new(:title => "Apple", :flagship_product => "Macintosh")
|
10
|
+
expect(@parent).to be_valid
|
11
|
+
expect(@parent.save).to be_true
|
12
|
+
|
13
|
+
model_model = DataMapper::Validations::Fixtures::Product
|
14
|
+
@model = model_model.new(:name => "MacBook Pro", :company => @parent)
|
15
|
+
expect(@model).to be_valid
|
16
|
+
end
|
17
|
+
|
18
|
+
describe "without company" do
|
19
|
+
before :all do
|
20
|
+
@model.company = nil
|
21
|
+
end
|
22
|
+
|
23
|
+
it_behaves_like 'invalid model'
|
24
|
+
|
25
|
+
it "has a meaningful error message" do
|
26
|
+
expect(@model.errors.on(:company)).to eq [ 'Company must not be blank' ]
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,82 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
describe 'DataMapper::Validations::Fixtures::ServiceCompany' do
|
4
|
+
before :all do
|
5
|
+
DataMapper::Validations::Fixtures::ServiceCompany.auto_migrate!
|
6
|
+
|
7
|
+
@model = DataMapper::Validations::Fixtures::ServiceCompany.new(:title => "Monsters, Inc.", :area_of_expertise => "Little children's nightmares")
|
8
|
+
@model.valid?
|
9
|
+
end
|
10
|
+
|
11
|
+
describe "without title" do
|
12
|
+
before :all do
|
13
|
+
@model.title = nil
|
14
|
+
end
|
15
|
+
|
16
|
+
it_behaves_like 'invalid model'
|
17
|
+
|
18
|
+
it "has a meaningful error message for inherited property" do
|
19
|
+
expect(@model.errors.on(:title)).to eq [ 'Company name is a required field' ]
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
describe "without area of expertise" do
|
24
|
+
before :all do
|
25
|
+
@model.area_of_expertise = nil
|
26
|
+
end
|
27
|
+
|
28
|
+
it_behaves_like 'invalid model'
|
29
|
+
|
30
|
+
it "has a meaningful error message for own property" do
|
31
|
+
expect(@model.errors.on(:area_of_expertise)).to eq [ 'Area of expertise must not be blank' ]
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
describe 'DataMapper::Validations::Fixtures::ProductCompany' do
|
39
|
+
before :all do
|
40
|
+
DataMapper::Validations::Fixtures::ProductCompany.auto_migrate!
|
41
|
+
|
42
|
+
@model = DataMapper::Validations::Fixtures::ProductCompany.new(:title => "Apple", :flagship_product => "Macintosh")
|
43
|
+
@model.valid?
|
44
|
+
end
|
45
|
+
|
46
|
+
it_behaves_like 'valid model'
|
47
|
+
|
48
|
+
describe "without title" do
|
49
|
+
before :all do
|
50
|
+
@model.title = nil
|
51
|
+
end
|
52
|
+
|
53
|
+
it_behaves_like 'invalid model'
|
54
|
+
|
55
|
+
it "has error message from the subclass itself" do
|
56
|
+
expect(@model.errors.on(:title)).to include('Product company must have a name')
|
57
|
+
end
|
58
|
+
|
59
|
+
# this may or may not be a desired behavior,
|
60
|
+
# but append vs. replace is a matter of opinion
|
61
|
+
# anyway
|
62
|
+
#
|
63
|
+
# TODO: there should be a way to clear validations for a field
|
64
|
+
# that subclasses can use
|
65
|
+
it "has error message from superclass" do
|
66
|
+
expect(@model.errors.on(:title)).to include('Company name is a required field')
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
|
71
|
+
describe "without flagship product" do
|
72
|
+
before :all do
|
73
|
+
@model.flagship_product = nil
|
74
|
+
end
|
75
|
+
|
76
|
+
it_behaves_like 'invalid model'
|
77
|
+
|
78
|
+
it "has a meaningful error message for own property" do
|
79
|
+
expect(@model.errors.on(:flagship_product)).to eq [ 'Flagship product must not be blank' ]
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
|
3
|
+
describe 'DataMapper::Validations::Fixtures::LlamaSpaceship' do
|
4
|
+
before :all do
|
5
|
+
DataMapper::Validations::Fixtures::LlamaSpaceship.auto_migrate!
|
6
|
+
end
|
7
|
+
|
8
|
+
it "validates even non dirty attributes" do
|
9
|
+
spaceship = DataMapper::Validations::Fixtures::LlamaSpaceship.create(:type => "custom", :color => "pink")
|
10
|
+
spaceship.type = "standard"
|
11
|
+
expect(spaceship).not_to be_valid
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
require_relative '../../spec_helper'
|
4
|
+
require_relative 'spec_helper'
|
5
|
+
|
6
|
+
describe 'DataMapper::Validations::Fixtures::Page' do
|
7
|
+
before :all do
|
8
|
+
DataMapper::Validations::Fixtures::Page.auto_migrate!
|
9
|
+
|
10
|
+
@model = DataMapper::Validations::Fixtures::Page.new(:id => 1024)
|
11
|
+
end
|
12
|
+
|
13
|
+
describe "without body" do
|
14
|
+
before :all do
|
15
|
+
@model.body = nil
|
16
|
+
end
|
17
|
+
|
18
|
+
it_behaves_like 'invalid model'
|
19
|
+
|
20
|
+
it "does not have duplicated error messages" do
|
21
|
+
expect(@model.errors.on(:body)).to eq ["Body must not be blank"]
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,139 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
require_relative '../../spec_helper'
|
3
|
+
require_relative 'spec_helper'
|
4
|
+
|
5
|
+
describe 'DataMapper::Validations::Fixtures::BillOfLading' do
|
6
|
+
before :all do
|
7
|
+
DataMapper::Validations::Fixtures::BillOfLading.auto_migrate!
|
8
|
+
end
|
9
|
+
|
10
|
+
def valid_attributes
|
11
|
+
{ :id => 1, :doc_no => 'A1234', :email => 'user@example.com', :url => 'http://example.com' }
|
12
|
+
end
|
13
|
+
|
14
|
+
@valid_email_addresses = [
|
15
|
+
'+1~1+@example.com',
|
16
|
+
'{_dave_}@example.com',
|
17
|
+
'"[[ dave ]]"@example.com',
|
18
|
+
'dave."dave"@example.com',
|
19
|
+
'test@example.com',
|
20
|
+
'test@example.co.uk',
|
21
|
+
'test@example.com.br',
|
22
|
+
'"J. P. \'s-Gravezande, a.k.a. The Hacker!"@example.com',
|
23
|
+
'me@[187.223.45.119]',
|
24
|
+
'someone@123.com',
|
25
|
+
'simon&garfunkel@songs.com'].each do |email|
|
26
|
+
|
27
|
+
describe "with email value of #{email} (RFC2822 compliant)" do
|
28
|
+
before :all do
|
29
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.merge(:email => email))
|
30
|
+
end
|
31
|
+
|
32
|
+
it_behaves_like 'valid model'
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
|
37
|
+
@invalid_email_addresses = [
|
38
|
+
'-- dave --@example.com',
|
39
|
+
'[dave]@example.com',
|
40
|
+
'.dave@example.com',
|
41
|
+
'Max@Job 3:14',
|
42
|
+
'Job@Book of Job',
|
43
|
+
'test@localhost',
|
44
|
+
'J. P. \'s-Gravezande, a.k.a. The Hacker!@example.com',
|
45
|
+
"test@example.com\nsomething after the newline"].each do |email|
|
46
|
+
describe "with email value of #{email} (non RFC2822 compliant)" do
|
47
|
+
before :all do
|
48
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.merge(:email => email))
|
49
|
+
end
|
50
|
+
|
51
|
+
it_behaves_like 'invalid model'
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe "with valid email including unicode characters" do
|
56
|
+
before :all do
|
57
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.merge(:email => 'pelé@gmail.com'))
|
58
|
+
end
|
59
|
+
|
60
|
+
if (RUBY_VERSION == '1.9.2' && RUBY_ENGINE == 'jruby') || RUBY_VERSION == '1.9.3'
|
61
|
+
# Not supported on jruby 1.9 or 1.9.3 yet - see formats/email.rb
|
62
|
+
it 'does not raise an error' do
|
63
|
+
expect { @model.valid? }.not_to raise_error
|
64
|
+
end
|
65
|
+
else
|
66
|
+
# Unicode emails not supported on MRI18
|
67
|
+
unless !defined?(RUBY_ENGINE) && RUBY_VERSION == '1.8.7'
|
68
|
+
it 'behaves like valid model' do
|
69
|
+
expect(@model).to be_valid
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
|
76
|
+
it 'has a pre-defined URL format' do
|
77
|
+
bad = [ 'http:// example.com',
|
78
|
+
'ftp://example.com',
|
79
|
+
'http://.com',
|
80
|
+
'http://',
|
81
|
+
'test',
|
82
|
+
'...'
|
83
|
+
]
|
84
|
+
|
85
|
+
good = [
|
86
|
+
'http://example.com',
|
87
|
+
'http://www.example.com',
|
88
|
+
]
|
89
|
+
|
90
|
+
bol = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.except(:url))
|
91
|
+
expect(bol).not_to be_valid
|
92
|
+
expect(bol.errors.on(:url)).to eq [ 'Url has an invalid format' ]
|
93
|
+
|
94
|
+
bad.map do |e|
|
95
|
+
bol.url = e
|
96
|
+
bol.valid?
|
97
|
+
expect(bol.errors.on(:url)).to eq [ 'Url has an invalid format' ]
|
98
|
+
end
|
99
|
+
|
100
|
+
good.map do |e|
|
101
|
+
bol.url = e
|
102
|
+
bol.valid?
|
103
|
+
expect(bol.errors.on(:url)).to be_nil
|
104
|
+
end
|
105
|
+
|
106
|
+
end
|
107
|
+
|
108
|
+
describe 'with a regexp' do
|
109
|
+
before do
|
110
|
+
@bol = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes)
|
111
|
+
expect(@bol).to be_valid
|
112
|
+
end
|
113
|
+
|
114
|
+
describe 'if matched' do
|
115
|
+
before do
|
116
|
+
@bol.username = 'a12345'
|
117
|
+
end
|
118
|
+
|
119
|
+
it 'validates' do
|
120
|
+
expect(@bol).to be_valid
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
describe 'if not matched' do
|
125
|
+
before do
|
126
|
+
@bol.username = '12345'
|
127
|
+
end
|
128
|
+
|
129
|
+
it 'does not validate' do
|
130
|
+
expect(@bol).not_to be_valid
|
131
|
+
end
|
132
|
+
|
133
|
+
it 'sets an error message' do
|
134
|
+
@bol.valid?
|
135
|
+
expect(@bol.errors.on(:username)).to eq [ 'Username must have at least one letter' ]
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
require_relative 'spec_helper'
|
3
|
+
|
4
|
+
describe 'DataMapper::Validations::Fixtures::BillOfLading' do
|
5
|
+
before :all do
|
6
|
+
DataMapper::Validations::Fixtures::BillOfLading.auto_migrate!
|
7
|
+
end
|
8
|
+
|
9
|
+
def valid_attributes
|
10
|
+
{ :id => 1, :doc_no => 'A1234', :email => 'user@example.com', :url => 'http://example.com' }
|
11
|
+
end
|
12
|
+
|
13
|
+
describe "with doc no with value of 'BAD CODE :)'" do
|
14
|
+
before :all do
|
15
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.merge(:doc_no => 'BAD CODE :)'))
|
16
|
+
end
|
17
|
+
|
18
|
+
it_behaves_like 'invalid model'
|
19
|
+
|
20
|
+
it "has meaningful error message on invalid field" do
|
21
|
+
expect(@model.errors.on(:doc_no)).to eq [ 'Doc no has an invalid format' ]
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
describe "with doc no with value of 'A1234'" do
|
26
|
+
before :all do
|
27
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.merge(:doc_no => 'A1234'))
|
28
|
+
end
|
29
|
+
|
30
|
+
it_behaves_like 'valid model'
|
31
|
+
end
|
32
|
+
|
33
|
+
describe "with doc no with value of 'B123456X12'" do
|
34
|
+
before :all do
|
35
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.merge(:doc_no => 'B123456X12'))
|
36
|
+
end
|
37
|
+
|
38
|
+
it_behaves_like 'valid model'
|
39
|
+
end
|
40
|
+
|
41
|
+
describe "with missing url" do
|
42
|
+
before :all do
|
43
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.except(:url))
|
44
|
+
end
|
45
|
+
|
46
|
+
it_behaves_like 'invalid model'
|
47
|
+
end
|
48
|
+
|
49
|
+
describe "with blank name" do
|
50
|
+
before :all do
|
51
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.merge(:username => ''))
|
52
|
+
end
|
53
|
+
|
54
|
+
it_behaves_like 'valid model'
|
55
|
+
end
|
56
|
+
|
57
|
+
describe "with blank email" do
|
58
|
+
before :all do
|
59
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.merge(:email => ''))
|
60
|
+
end
|
61
|
+
|
62
|
+
it_behaves_like 'valid model'
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
require_relative 'spec_helper'
|
3
|
+
|
4
|
+
describe 'DataMapper::Validations::Fixtures::BillOfLading' do
|
5
|
+
before :all do
|
6
|
+
DataMapper::Validations::Fixtures::BillOfLading.auto_migrate!
|
7
|
+
end
|
8
|
+
|
9
|
+
def valid_attributes
|
10
|
+
{ :id => 1, :doc_no => 'A1234', :email => 'user@example.com', :url => 'http://example.com' }
|
11
|
+
end
|
12
|
+
|
13
|
+
describe "with code of 123456" do
|
14
|
+
before :all do
|
15
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.merge(:code => '123456'))
|
16
|
+
end
|
17
|
+
|
18
|
+
it_behaves_like 'valid model'
|
19
|
+
end
|
20
|
+
|
21
|
+
|
22
|
+
describe "with code of 12" do
|
23
|
+
before :all do
|
24
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.merge(:code => '12'))
|
25
|
+
end
|
26
|
+
|
27
|
+
it_behaves_like 'invalid model'
|
28
|
+
|
29
|
+
it "has a meaningful error message" do
|
30
|
+
expect(@model.errors.on(:code)).to eq [ 'Code format is invalid' ]
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,91 @@
|
|
1
|
+
require_relative '../../spec_helper'
|
2
|
+
require_relative 'spec_helper'
|
3
|
+
|
4
|
+
describe 'DataMapper::Validations::Fixtures::BillOfLading' do
|
5
|
+
before :all do
|
6
|
+
DataMapper::Validations::Fixtures::BillOfLading.auto_migrate!
|
7
|
+
end
|
8
|
+
|
9
|
+
def valid_attributes
|
10
|
+
{ :id => 1, :doc_no => 'A1234', :email => 'user@example.com', :url => 'http://example.com' }
|
11
|
+
end
|
12
|
+
|
13
|
+
invalid_uris = [ 'http:// example.com', 'ftp://example.com', 'http://.com', 'http://', 'test', '...',
|
14
|
+
# these are valid URIs from RFC perspective,
|
15
|
+
# but too often not the case for web apps
|
16
|
+
#
|
17
|
+
# TODO: add another format that is strictly
|
18
|
+
# RFC compliant so it can be used, for instance,
|
19
|
+
# for internal apps that may refer to local domains
|
20
|
+
# like http://backend:8080
|
21
|
+
"http://localhost:4000", "http://localhost" ]
|
22
|
+
|
23
|
+
invalid_uris.each do |uri|
|
24
|
+
describe "with URL of #{uri.inspect}" do
|
25
|
+
before :all do
|
26
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.merge(:url => uri))
|
27
|
+
end
|
28
|
+
|
29
|
+
it_behaves_like 'invalid model'
|
30
|
+
|
31
|
+
it "has a meaningful error message" do
|
32
|
+
expect(@model.errors.on(:url)).to eq [ 'Url has an invalid format' ]
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
# http:// throws an exception in Addressable::URI, so it wouldn't make it to the validation part anyway :)
|
38
|
+
(invalid_uris - ['http:// example.com', 'http://']).each do |uri|
|
39
|
+
describe "with dm-type URI of #{uri.inspect}" do
|
40
|
+
before(:all) do
|
41
|
+
@model = DataMapper::Validations::Fixtures::SurrenderBillOfLading.new(valid_attributes.merge(:bank_url => uri))
|
42
|
+
end
|
43
|
+
|
44
|
+
it_behaves_like 'invalid model'
|
45
|
+
|
46
|
+
it "has a meaningful error message" do
|
47
|
+
expect(@model.errors.on(:bank_url)).to eq [ 'Bank url has an invalid format' ]
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
[ 'http://apple.com',
|
53
|
+
'http://www.apple.com',
|
54
|
+
"http://apple.com/",
|
55
|
+
"http://apple.com/iphone",
|
56
|
+
"http://www.google.com/search?client=safari&rls=en-us&q=LED&ie=UTF-8&oe=UTF-8",
|
57
|
+
"http://books.google.com",
|
58
|
+
"http://books.google.com/",
|
59
|
+
"http://db2.clouds.megacorp.net:8080",
|
60
|
+
"https://github.com",
|
61
|
+
"https://github.com/",
|
62
|
+
"http://www.example.com:8088/never/ending/path/segments/",
|
63
|
+
"http://db2.clouds.megacorp.net:8080/resources/10",
|
64
|
+
"http://www.example.com:8088/never/ending/path/segments",
|
65
|
+
"http://books.google.com/books?id=uSUJ3VhH4BsC&printsec=frontcover&dq=subject:%22+Linguistics+%22&as_brr=3&ei=DAHPSbGQE5rEzATk1sShAQ&rview=1",
|
66
|
+
"http://books.google.com:80/books?uid=14472359158468915761&rview=1",
|
67
|
+
"http://books.google.com/books?id=Ar3-TXCYXUkC&printsec=frontcover&rview=1",
|
68
|
+
"http://books.google.com/books/vp6ae081e454d30f89b6bca94e0f96fc14.js",
|
69
|
+
"http://www.google.com/images/cleardot.gif",
|
70
|
+
"http://books.google.com:80/books?id=Ar3-TXCYXUkC&printsec=frontcover&rview=1#PPA5,M1",
|
71
|
+
"http://www.hulu.com/watch/64923/terminator-the-sarah-connor-chronicles-to-the-lighthouse",
|
72
|
+
"http://hulu.com:80/browse/popular/tv",
|
73
|
+
"http://www.hulu.com/watch/62475/the-simpsons-gone-maggie-gone#s-p1-so-i0"
|
74
|
+
].each do |uri|
|
75
|
+
describe "with URL of #{uri.inspect}" do
|
76
|
+
before :all do
|
77
|
+
@model = DataMapper::Validations::Fixtures::BillOfLading.new(valid_attributes.merge(:url => uri))
|
78
|
+
end
|
79
|
+
|
80
|
+
it_behaves_like 'valid model'
|
81
|
+
end
|
82
|
+
|
83
|
+
describe "with dm-type URI of #{uri.inspect}" do
|
84
|
+
before(:all) do
|
85
|
+
@model = DataMapper::Validations::Fixtures::SurrenderBillOfLading.new(valid_attributes.merge(:bank_url => uri))
|
86
|
+
end
|
87
|
+
|
88
|
+
it_behaves_like 'valid model'
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'integration/length_validator/spec_helper'
|
3
|
+
|
4
|
+
describe 'DataMapper::Validations::Fixtures::BoatDock' do
|
5
|
+
before :all do
|
6
|
+
DataMapper::Validations::Fixtures::BoatDock.auto_migrate!
|
7
|
+
|
8
|
+
@model = DataMapper::Validations::Fixtures::BoatDock.new
|
9
|
+
end
|
10
|
+
|
11
|
+
describe 'with default values that are valid' do
|
12
|
+
it_behaves_like 'valid model'
|
13
|
+
end
|
14
|
+
end
|