grape 1.1.0 → 1.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +278 -44
- data/LICENSE +1 -1
- data/README.md +514 -69
- data/UPGRADING.md +424 -17
- data/grape.gemspec +13 -2
- data/lib/grape.rb +104 -71
- data/lib/grape/api.rb +138 -175
- data/lib/grape/api/helpers.rb +2 -0
- data/lib/grape/api/instance.rb +283 -0
- data/lib/grape/config.rb +34 -0
- data/lib/grape/content_types.rb +34 -0
- data/lib/grape/cookies.rb +2 -0
- data/lib/grape/dsl/api.rb +2 -0
- data/lib/grape/dsl/callbacks.rb +22 -0
- data/lib/grape/dsl/configuration.rb +2 -0
- data/lib/grape/dsl/desc.rb +41 -7
- data/lib/grape/dsl/headers.rb +2 -0
- data/lib/grape/dsl/helpers.rb +5 -2
- data/lib/grape/dsl/inside_route.rb +92 -49
- data/lib/grape/dsl/logger.rb +2 -0
- data/lib/grape/dsl/middleware.rb +9 -0
- data/lib/grape/dsl/parameters.rb +25 -14
- data/lib/grape/dsl/request_response.rb +4 -2
- data/lib/grape/dsl/routing.rb +17 -10
- data/lib/grape/dsl/settings.rb +7 -1
- data/lib/grape/dsl/validations.rb +24 -4
- data/lib/grape/eager_load.rb +20 -0
- data/lib/grape/endpoint.rb +59 -35
- data/lib/grape/error_formatter.rb +4 -2
- data/lib/grape/error_formatter/base.rb +2 -0
- data/lib/grape/error_formatter/json.rb +2 -0
- data/lib/grape/error_formatter/txt.rb +2 -0
- data/lib/grape/error_formatter/xml.rb +2 -0
- data/lib/grape/exceptions/base.rb +20 -14
- data/lib/grape/exceptions/empty_message_body.rb +11 -0
- data/lib/grape/exceptions/incompatible_option_values.rb +2 -0
- data/lib/grape/exceptions/invalid_accept_header.rb +2 -0
- data/lib/grape/exceptions/invalid_formatter.rb +2 -0
- data/lib/grape/exceptions/invalid_message_body.rb +2 -0
- data/lib/grape/exceptions/invalid_response.rb +11 -0
- data/lib/grape/exceptions/invalid_version_header.rb +2 -0
- data/lib/grape/exceptions/invalid_versioner_option.rb +2 -0
- data/lib/grape/exceptions/invalid_with_option_for_represent.rb +2 -0
- data/lib/grape/exceptions/method_not_allowed.rb +2 -0
- data/lib/grape/exceptions/missing_group_type.rb +2 -0
- data/lib/grape/exceptions/missing_mime_type.rb +2 -0
- data/lib/grape/exceptions/missing_option.rb +2 -0
- data/lib/grape/exceptions/missing_vendor_option.rb +2 -0
- data/lib/grape/exceptions/unknown_options.rb +2 -0
- data/lib/grape/exceptions/unknown_parameter.rb +2 -0
- data/lib/grape/exceptions/unknown_validator.rb +2 -0
- data/lib/grape/exceptions/unsupported_group_type.rb +2 -0
- data/lib/grape/exceptions/validation.rb +4 -2
- data/lib/grape/exceptions/validation_array_errors.rb +2 -0
- data/lib/grape/exceptions/validation_errors.rb +16 -13
- data/lib/grape/extensions/active_support/hash_with_indifferent_access.rb +4 -3
- data/lib/grape/extensions/deep_mergeable_hash.rb +2 -0
- data/lib/grape/extensions/deep_symbolize_hash.rb +2 -0
- data/lib/grape/extensions/hash.rb +2 -0
- data/lib/grape/extensions/hashie/mash.rb +2 -0
- data/lib/grape/formatter.rb +5 -3
- data/lib/grape/formatter/json.rb +2 -0
- data/lib/grape/formatter/serializable_hash.rb +2 -0
- data/lib/grape/formatter/txt.rb +2 -0
- data/lib/grape/formatter/xml.rb +2 -0
- data/lib/grape/http/headers.rb +50 -18
- data/lib/grape/locale/en.yml +3 -1
- data/lib/grape/middleware/auth/base.rb +7 -7
- data/lib/grape/middleware/auth/dsl.rb +2 -0
- data/lib/grape/middleware/auth/strategies.rb +2 -0
- data/lib/grape/middleware/auth/strategy_info.rb +2 -0
- data/lib/grape/middleware/base.rb +10 -7
- data/lib/grape/middleware/error.rb +21 -16
- data/lib/grape/middleware/filter.rb +2 -0
- data/lib/grape/middleware/formatter.rb +8 -6
- data/lib/grape/middleware/globals.rb +2 -0
- data/lib/grape/middleware/helpers.rb +12 -0
- data/lib/grape/middleware/stack.rb +13 -3
- data/lib/grape/middleware/versioner.rb +2 -0
- data/lib/grape/middleware/versioner/accept_version_header.rb +2 -0
- data/lib/grape/middleware/versioner/header.rb +10 -8
- data/lib/grape/middleware/versioner/param.rb +3 -1
- data/lib/grape/middleware/versioner/parse_media_type_patch.rb +4 -1
- data/lib/grape/middleware/versioner/path.rb +3 -1
- data/lib/grape/namespace.rb +14 -2
- data/lib/grape/parser.rb +4 -2
- data/lib/grape/parser/json.rb +3 -1
- data/lib/grape/parser/xml.rb +3 -1
- data/lib/grape/path.rb +15 -3
- data/lib/grape/presenters/presenter.rb +2 -0
- data/lib/grape/request.rb +19 -10
- data/lib/grape/router.rb +30 -29
- data/lib/grape/router/attribute_translator.rb +41 -8
- data/lib/grape/router/pattern.rb +20 -16
- data/lib/grape/router/route.rb +14 -28
- data/lib/grape/{serve_file → serve_stream}/file_body.rb +3 -1
- data/lib/grape/{serve_file → serve_stream}/sendfile_response.rb +3 -1
- data/lib/grape/{serve_file/file_response.rb → serve_stream/stream_response.rb} +10 -8
- data/lib/grape/util/base_inheritable.rb +43 -0
- data/lib/grape/util/cache.rb +20 -0
- data/lib/grape/util/endpoint_configuration.rb +8 -0
- data/lib/grape/util/env.rb +19 -17
- data/lib/grape/util/inheritable_setting.rb +2 -0
- data/lib/grape/util/inheritable_values.rb +7 -25
- data/lib/grape/util/json.rb +2 -0
- data/lib/grape/util/lazy_block.rb +27 -0
- data/lib/grape/util/lazy_object.rb +43 -0
- data/lib/grape/util/lazy_value.rb +98 -0
- data/lib/grape/util/registrable.rb +2 -0
- data/lib/grape/util/reverse_stackable_values.rb +10 -35
- data/lib/grape/util/stackable_values.rb +21 -34
- data/lib/grape/util/strict_hash_configuration.rb +2 -0
- data/lib/grape/util/xml.rb +2 -0
- data/lib/grape/validations.rb +2 -0
- data/lib/grape/validations/attributes_iterator.rb +16 -6
- data/lib/grape/validations/multiple_attributes_iterator.rb +13 -0
- data/lib/grape/validations/params_scope.rb +51 -30
- data/lib/grape/validations/single_attribute_iterator.rb +24 -0
- data/lib/grape/validations/types.rb +13 -38
- data/lib/grape/validations/types/array_coercer.rb +65 -0
- data/lib/grape/validations/types/build_coercer.rb +47 -49
- data/lib/grape/validations/types/custom_type_coercer.rb +29 -51
- data/lib/grape/validations/types/custom_type_collection_coercer.rb +10 -25
- data/lib/grape/validations/types/dry_type_coercer.rb +76 -0
- data/lib/grape/validations/types/file.rb +22 -18
- data/lib/grape/validations/types/invalid_value.rb +24 -0
- data/lib/grape/validations/types/json.rb +46 -39
- data/lib/grape/validations/types/multiple_type_coercer.rb +14 -33
- data/lib/grape/validations/types/primitive_coercer.rb +67 -0
- data/lib/grape/validations/types/set_coercer.rb +40 -0
- data/lib/grape/validations/types/variant_collection_coercer.rb +5 -13
- data/lib/grape/validations/validator_factory.rb +8 -11
- data/lib/grape/validations/validators/all_or_none.rb +8 -13
- data/lib/grape/validations/validators/allow_blank.rb +3 -1
- data/lib/grape/validations/validators/as.rb +5 -4
- data/lib/grape/validations/validators/at_least_one_of.rb +7 -13
- data/lib/grape/validations/validators/base.rb +20 -16
- data/lib/grape/validations/validators/coerce.rb +46 -29
- data/lib/grape/validations/validators/default.rb +6 -6
- data/lib/grape/validations/validators/exactly_one_of.rb +10 -23
- data/lib/grape/validations/validators/except_values.rb +4 -2
- data/lib/grape/validations/validators/multiple_params_base.rb +17 -10
- data/lib/grape/validations/validators/mutual_exclusion.rb +8 -18
- data/lib/grape/validations/validators/presence.rb +3 -1
- data/lib/grape/validations/validators/regexp.rb +4 -2
- data/lib/grape/validations/validators/same_as.rb +26 -0
- data/lib/grape/validations/validators/values.rb +18 -6
- data/lib/grape/version.rb +3 -1
- data/spec/grape/api/custom_validations_spec.rb +5 -3
- data/spec/grape/api/deeply_included_options_spec.rb +2 -0
- data/spec/grape/api/defines_boolean_in_params_spec.rb +39 -0
- data/spec/grape/api/inherited_helpers_spec.rb +2 -0
- data/spec/grape/api/instance_spec.rb +104 -0
- data/spec/grape/api/invalid_format_spec.rb +2 -0
- data/spec/grape/api/namespace_parameters_in_route_spec.rb +2 -0
- data/spec/grape/api/nested_helpers_spec.rb +2 -0
- data/spec/grape/api/optional_parameters_in_route_spec.rb +2 -0
- data/spec/grape/api/parameters_modification_spec.rb +3 -1
- data/spec/grape/api/patch_method_helpers_spec.rb +2 -0
- data/spec/grape/api/recognize_path_spec.rb +2 -0
- data/spec/grape/api/required_parameters_in_route_spec.rb +2 -0
- data/spec/grape/api/required_parameters_with_invalid_method_spec.rb +2 -0
- data/spec/grape/api/routes_with_requirements_spec.rb +61 -0
- data/spec/grape/api/shared_helpers_exactly_one_of_spec.rb +2 -0
- data/spec/grape/api/shared_helpers_spec.rb +2 -0
- data/spec/grape/api_remount_spec.rb +473 -0
- data/spec/grape/api_spec.rb +565 -12
- data/spec/grape/config_spec.rb +19 -0
- data/spec/grape/dsl/callbacks_spec.rb +2 -0
- data/spec/grape/dsl/configuration_spec.rb +2 -0
- data/spec/grape/dsl/desc_spec.rb +42 -16
- data/spec/grape/dsl/headers_spec.rb +2 -0
- data/spec/grape/dsl/helpers_spec.rb +4 -2
- data/spec/grape/dsl/inside_route_spec.rb +184 -33
- data/spec/grape/dsl/logger_spec.rb +2 -0
- data/spec/grape/dsl/middleware_spec.rb +10 -0
- data/spec/grape/dsl/parameters_spec.rb +2 -0
- data/spec/grape/dsl/request_response_spec.rb +2 -0
- data/spec/grape/dsl/routing_spec.rb +12 -0
- data/spec/grape/dsl/settings_spec.rb +2 -0
- data/spec/grape/dsl/validations_spec.rb +2 -0
- data/spec/grape/endpoint/declared_spec.rb +601 -0
- data/spec/grape/endpoint_spec.rb +53 -523
- data/spec/grape/entity_spec.rb +9 -1
- data/spec/grape/exceptions/base_spec.rb +67 -0
- data/spec/grape/exceptions/body_parse_errors_spec.rb +2 -0
- data/spec/grape/exceptions/invalid_accept_header_spec.rb +2 -0
- data/spec/grape/exceptions/invalid_formatter_spec.rb +2 -0
- data/spec/grape/exceptions/invalid_response_spec.rb +13 -0
- data/spec/grape/exceptions/invalid_versioner_option_spec.rb +2 -0
- data/spec/grape/exceptions/missing_mime_type_spec.rb +2 -0
- data/spec/grape/exceptions/missing_option_spec.rb +2 -0
- data/spec/grape/exceptions/unknown_options_spec.rb +2 -0
- data/spec/grape/exceptions/unknown_validator_spec.rb +2 -0
- data/spec/grape/exceptions/validation_errors_spec.rb +8 -4
- data/spec/grape/exceptions/validation_spec.rb +3 -1
- data/spec/grape/extensions/param_builders/hash_spec.rb +2 -0
- data/spec/grape/extensions/param_builders/hash_with_indifferent_access_spec.rb +2 -0
- data/spec/grape/extensions/param_builders/hashie/mash_spec.rb +2 -0
- data/spec/grape/integration/global_namespace_function_spec.rb +2 -0
- data/spec/grape/integration/rack_sendfile_spec.rb +14 -8
- data/spec/grape/integration/rack_spec.rb +25 -7
- data/spec/grape/loading_spec.rb +2 -0
- data/spec/grape/middleware/auth/base_spec.rb +2 -0
- data/spec/grape/middleware/auth/dsl_spec.rb +5 -3
- data/spec/grape/middleware/auth/strategies_spec.rb +3 -1
- data/spec/grape/middleware/base_spec.rb +10 -0
- data/spec/grape/middleware/error_spec.rb +3 -1
- data/spec/grape/middleware/exception_spec.rb +4 -2
- data/spec/grape/middleware/formatter_spec.rb +33 -16
- data/spec/grape/middleware/globals_spec.rb +2 -0
- data/spec/grape/middleware/stack_spec.rb +12 -0
- data/spec/grape/middleware/versioner/accept_version_header_spec.rb +3 -1
- data/spec/grape/middleware/versioner/header_spec.rb +9 -1
- data/spec/grape/middleware/versioner/param_spec.rb +3 -1
- data/spec/grape/middleware/versioner/path_spec.rb +3 -1
- data/spec/grape/middleware/versioner_spec.rb +2 -0
- data/spec/grape/named_api_spec.rb +21 -0
- data/spec/grape/parser_spec.rb +7 -5
- data/spec/grape/path_spec.rb +6 -4
- data/spec/grape/presenters/presenter_spec.rb +2 -0
- data/spec/grape/request_spec.rb +26 -0
- data/spec/grape/util/inheritable_setting_spec.rb +2 -0
- data/spec/grape/util/inheritable_values_spec.rb +2 -0
- data/spec/grape/util/reverse_stackable_values_spec.rb +2 -0
- data/spec/grape/util/stackable_values_spec.rb +3 -1
- data/spec/grape/util/strict_hash_configuration_spec.rb +2 -0
- data/spec/grape/validations/attributes_iterator_spec.rb +2 -0
- data/spec/grape/validations/instance_behaivour_spec.rb +5 -3
- data/spec/grape/validations/multiple_attributes_iterator_spec.rb +41 -0
- data/spec/grape/validations/params_scope_spec.rb +213 -9
- data/spec/grape/validations/single_attribute_iterator_spec.rb +58 -0
- data/spec/grape/validations/types/array_coercer_spec.rb +35 -0
- data/spec/grape/validations/types/primitive_coercer_spec.rb +135 -0
- data/spec/grape/validations/types/set_coercer_spec.rb +34 -0
- data/spec/grape/validations/types_spec.rb +9 -36
- data/spec/grape/validations/validators/all_or_none_spec.rb +140 -30
- data/spec/grape/validations/validators/allow_blank_spec.rb +2 -0
- data/spec/grape/validations/validators/at_least_one_of_spec.rb +175 -29
- data/spec/grape/validations/validators/coerce_spec.rb +476 -135
- data/spec/grape/validations/validators/default_spec.rb +172 -0
- data/spec/grape/validations/validators/exactly_one_of_spec.rb +204 -38
- data/spec/grape/validations/validators/except_values_spec.rb +4 -1
- data/spec/grape/validations/validators/mutual_exclusion_spec.rb +186 -27
- data/spec/grape/validations/validators/presence_spec.rb +30 -0
- data/spec/grape/validations/validators/regexp_spec.rb +2 -0
- data/spec/grape/validations/validators/same_as_spec.rb +65 -0
- data/spec/grape/validations/validators/values_spec.rb +30 -5
- data/spec/grape/validations_spec.rb +388 -50
- data/spec/integration/eager_load/eager_load_spec.rb +15 -0
- data/spec/integration/multi_json/json_spec.rb +2 -0
- data/spec/integration/multi_xml/xml_spec.rb +2 -0
- data/spec/shared/versioning_examples.rb +22 -20
- data/spec/spec_helper.rb +12 -1
- data/spec/support/basic_auth_encode_helpers.rb +2 -0
- data/spec/support/chunks.rb +14 -0
- data/spec/support/content_type_helpers.rb +2 -0
- data/spec/support/eager_load.rb +19 -0
- data/spec/support/endpoint_faker.rb +2 -0
- data/spec/support/file_streamer.rb +2 -0
- data/spec/support/integer_helpers.rb +2 -0
- data/spec/support/versioned_helpers.rb +8 -8
- metadata +86 -48
- data/Appraisals +0 -32
- data/Dangerfile +0 -2
- data/Gemfile +0 -33
- data/Gemfile.lock +0 -231
- data/Guardfile +0 -10
- data/RELEASING.md +0 -111
- data/Rakefile +0 -25
- data/benchmark/simple.rb +0 -27
- data/benchmark/simple_with_type_coercer.rb +0 -22
- data/gemfiles/multi_json.gemfile +0 -35
- data/gemfiles/multi_xml.gemfile +0 -35
- data/gemfiles/rack_1.5.2.gemfile +0 -35
- data/gemfiles/rack_edge.gemfile +0 -35
- data/gemfiles/rails_3.gemfile +0 -36
- data/gemfiles/rails_4.gemfile +0 -35
- data/gemfiles/rails_5.gemfile +0 -35
- data/gemfiles/rails_edge.gemfile +0 -35
- data/lib/grape/extensions/deep_hash_with_indifferent_access.rb +0 -18
- data/lib/grape/util/content_types.rb +0 -26
- data/lib/grape/validations/types/virtus_collection_patch.rb +0 -16
- data/pkg/grape-0.17.0.gem +0 -0
- data/pkg/grape-0.19.0.gem +0 -0
@@ -0,0 +1,135 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe Grape::Validations::Types::PrimitiveCoercer do
|
6
|
+
let(:strict) { false }
|
7
|
+
|
8
|
+
subject { described_class.new(type, strict) }
|
9
|
+
|
10
|
+
describe '#call' do
|
11
|
+
context 'BigDecimal' do
|
12
|
+
let(:type) { BigDecimal }
|
13
|
+
|
14
|
+
it 'coerces to BigDecimal' do
|
15
|
+
expect(subject.call(5)).to eq(BigDecimal(5))
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'coerces an empty string to nil' do
|
19
|
+
expect(subject.call('')).to be_nil
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
context 'Boolean' do
|
24
|
+
let(:type) { Grape::API::Boolean }
|
25
|
+
|
26
|
+
[true, 'true', 1].each do |val|
|
27
|
+
it "coerces '#{val}' to true" do
|
28
|
+
expect(subject.call(val)).to eq(true)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
[false, 'false', 0].each do |val|
|
33
|
+
it "coerces '#{val}' to false" do
|
34
|
+
expect(subject.call(val)).to eq(false)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'returns an error when the given value cannot be coerced' do
|
39
|
+
expect(subject.call(123)).to be_instance_of(Grape::Validations::Types::InvalidValue)
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'coerces an empty string to nil' do
|
43
|
+
expect(subject.call('')).to be_nil
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
context 'DateTime' do
|
48
|
+
let(:type) { DateTime }
|
49
|
+
|
50
|
+
it 'coerces an empty string to nil' do
|
51
|
+
expect(subject.call('')).to be_nil
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
context 'Float' do
|
56
|
+
let(:type) { Float }
|
57
|
+
|
58
|
+
it 'coerces an empty string to nil' do
|
59
|
+
expect(subject.call('')).to be_nil
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
context 'Integer' do
|
64
|
+
let(:type) { Integer }
|
65
|
+
|
66
|
+
it 'coerces an empty string to nil' do
|
67
|
+
expect(subject.call('')).to be_nil
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
context 'Numeric' do
|
72
|
+
let(:type) { Numeric }
|
73
|
+
|
74
|
+
it 'coerces an empty string to nil' do
|
75
|
+
expect(subject.call('')).to be_nil
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
context 'Time' do
|
80
|
+
let(:type) { Time }
|
81
|
+
|
82
|
+
it 'coerces an empty string to nil' do
|
83
|
+
expect(subject.call('')).to be_nil
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
context 'String' do
|
88
|
+
let(:type) { String }
|
89
|
+
|
90
|
+
it 'coerces to String' do
|
91
|
+
expect(subject.call(10)).to eq('10')
|
92
|
+
end
|
93
|
+
|
94
|
+
it 'does not coerce an empty string to nil' do
|
95
|
+
expect(subject.call('')).to eq('')
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
context 'Symbol' do
|
100
|
+
let(:type) { Symbol }
|
101
|
+
|
102
|
+
it 'coerces an empty string to nil' do
|
103
|
+
expect(subject.call('')).to be_nil
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
context 'the strict mode' do
|
108
|
+
let(:strict) { true }
|
109
|
+
|
110
|
+
context 'Boolean' do
|
111
|
+
let(:type) { Grape::API::Boolean }
|
112
|
+
|
113
|
+
it 'returns an error when the given value is not Boolean' do
|
114
|
+
expect(subject.call(1)).to be_instance_of(Grape::Validations::Types::InvalidValue)
|
115
|
+
end
|
116
|
+
|
117
|
+
it 'returns a value as it is when the given value is Boolean' do
|
118
|
+
expect(subject.call(true)).to eq(true)
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
context 'BigDecimal' do
|
123
|
+
let(:type) { BigDecimal }
|
124
|
+
|
125
|
+
it 'returns an error when the given value is not BigDecimal' do
|
126
|
+
expect(subject.call(1)).to be_instance_of(Grape::Validations::Types::InvalidValue)
|
127
|
+
end
|
128
|
+
|
129
|
+
it 'returns a value as it is when the given value is BigDecimal' do
|
130
|
+
expect(subject.call(BigDecimal(0))).to eq(BigDecimal(0))
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe Grape::Validations::Types::SetCoercer do
|
6
|
+
subject { described_class.new(type) }
|
7
|
+
|
8
|
+
describe '#call' do
|
9
|
+
context 'a set of primitives' do
|
10
|
+
let(:type) { Set[String] }
|
11
|
+
|
12
|
+
it 'coerces elements to the set' do
|
13
|
+
expect(subject.call([10, 20])).to eq(Set['10', '20'])
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
context 'a set of sets' do
|
18
|
+
let(:type) { Set[Set[Integer]] }
|
19
|
+
|
20
|
+
it 'coerces elements in the nested set' do
|
21
|
+
expect(subject.call([%w[10 20]])).to eq(Set[Set[10, 20]])
|
22
|
+
expect(subject.call([['10'], ['20']])).to eq(Set[Set[10], Set[20]])
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
context 'a set of sets of arrays' do
|
27
|
+
let(:type) { Set[Set[Array[Integer]]] }
|
28
|
+
|
29
|
+
it 'coerces elements in the nested set' do
|
30
|
+
expect(subject.call([[['10'], ['20']]])).to eq(Set[Set[Array[10], Array[20]]])
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Grape::Validations::Types do
|
@@ -11,30 +13,11 @@ describe Grape::Validations::Types do
|
|
11
13
|
end
|
12
14
|
end
|
13
15
|
|
14
|
-
VirtusA = Virtus::Attribute.build(String)
|
15
|
-
|
16
|
-
module VirtusModule
|
17
|
-
include Virtus.module
|
18
|
-
end
|
19
|
-
|
20
|
-
class VirtusB
|
21
|
-
include VirtusModule
|
22
|
-
end
|
23
|
-
|
24
|
-
class VirtusC
|
25
|
-
include Virtus.model
|
26
|
-
end
|
27
|
-
|
28
|
-
MyAxiom = Axiom::Types::String.new do
|
29
|
-
minimum_length 1
|
30
|
-
maximum_length 30
|
31
|
-
end
|
32
|
-
|
33
16
|
describe '::primitive?' do
|
34
17
|
[
|
35
18
|
Integer, Float, Numeric, BigDecimal,
|
36
|
-
|
37
|
-
Date, DateTime, Time
|
19
|
+
Grape::API::Boolean, String, Symbol,
|
20
|
+
Date, DateTime, Time
|
38
21
|
].each do |type|
|
39
22
|
it "recognizes #{type} as a primitive" do
|
40
23
|
expect(described_class.primitive?(type)).to be_truthy
|
@@ -57,16 +40,6 @@ describe Grape::Validations::Types do
|
|
57
40
|
end
|
58
41
|
end
|
59
42
|
|
60
|
-
describe '::recognized?' do
|
61
|
-
[
|
62
|
-
VirtusA, VirtusB, VirtusC, MyAxiom
|
63
|
-
].each do |type|
|
64
|
-
it "recognizes #{type}" do
|
65
|
-
expect(described_class.recognized?(type)).to be_truthy
|
66
|
-
end
|
67
|
-
end
|
68
|
-
end
|
69
|
-
|
70
43
|
describe '::special?' do
|
71
44
|
[
|
72
45
|
JSON, Array[JSON], File, Rack::Multipart::UploadedFile
|
@@ -97,14 +70,14 @@ describe Grape::Validations::Types do
|
|
97
70
|
expect(described_class.instance_variable_get(:@__cache_write_lock)).to be_a(Mutex)
|
98
71
|
end
|
99
72
|
|
100
|
-
it 'caches the result of the
|
73
|
+
it 'caches the result of the build_coercer method' do
|
101
74
|
original_cache = described_class.instance_variable_get(:@__cache)
|
102
75
|
described_class.instance_variable_set(:@__cache, {})
|
103
76
|
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
expect(
|
77
|
+
a_coercer = described_class.build_coercer(Array[String])
|
78
|
+
b_coercer = described_class.build_coercer(Array[String])
|
79
|
+
|
80
|
+
expect(a_coercer.object_id).to eq(b_coercer.object_id)
|
108
81
|
|
109
82
|
described_class.instance_variable_set(:@__cache, original_cache)
|
110
83
|
end
|
@@ -1,59 +1,169 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Grape::Validations::AllOrNoneOfValidator do
|
4
6
|
describe '#validate!' do
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
7
|
+
subject(:validate) { post path, params }
|
8
|
+
|
9
|
+
module ValidationsSpec
|
10
|
+
module AllOrNoneOfValidatorSpec
|
11
|
+
class API < Grape::API
|
12
|
+
rescue_from Grape::Exceptions::ValidationErrors do |e|
|
13
|
+
error!(e.errors.transform_keys! { |key| key.join(',') }, 400)
|
14
|
+
end
|
15
|
+
|
16
|
+
params do
|
17
|
+
optional :beer, :wine, type: Boolean
|
18
|
+
all_or_none_of :beer, :wine
|
19
|
+
end
|
20
|
+
post do
|
21
|
+
end
|
22
|
+
|
23
|
+
params do
|
24
|
+
optional :beer, :wine, :other, type: Boolean
|
25
|
+
all_or_none_of :beer, :wine
|
26
|
+
end
|
27
|
+
post 'mixed-params' do
|
28
|
+
end
|
29
|
+
|
30
|
+
params do
|
31
|
+
optional :beer, :wine, type: Boolean
|
32
|
+
all_or_none_of :beer, :wine, message: 'choose all or none'
|
33
|
+
end
|
34
|
+
post '/custom-message' do
|
35
|
+
end
|
36
|
+
|
37
|
+
params do
|
38
|
+
requires :item, type: Hash do
|
39
|
+
optional :beer, :wine, type: Boolean
|
40
|
+
all_or_none_of :beer, :wine
|
41
|
+
end
|
42
|
+
end
|
43
|
+
post '/nested-hash' do
|
44
|
+
end
|
10
45
|
|
11
|
-
|
46
|
+
params do
|
47
|
+
requires :items, type: Array do
|
48
|
+
optional :beer, :wine, type: Boolean
|
49
|
+
all_or_none_of :beer, :wine
|
50
|
+
end
|
51
|
+
end
|
52
|
+
post '/nested-array' do
|
53
|
+
end
|
54
|
+
|
55
|
+
params do
|
56
|
+
requires :items, type: Array do
|
57
|
+
requires :nested_items, type: Array do
|
58
|
+
optional :beer, :wine, type: Boolean
|
59
|
+
all_or_none_of :beer, :wine
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
post '/deeply-nested-array' do
|
64
|
+
end
|
65
|
+
end
|
12
66
|
end
|
13
67
|
end
|
14
|
-
|
15
|
-
|
68
|
+
|
69
|
+
def app
|
70
|
+
ValidationsSpec::AllOrNoneOfValidatorSpec::API
|
71
|
+
end
|
16
72
|
|
17
73
|
context 'when all restricted params are present' do
|
18
|
-
let(:
|
74
|
+
let(:path) { '/' }
|
75
|
+
let(:params) { { beer: true, wine: true } }
|
19
76
|
|
20
|
-
it 'does not
|
21
|
-
|
77
|
+
it 'does not return a validation error' do
|
78
|
+
validate
|
79
|
+
expect(last_response.status).to eq 201
|
22
80
|
end
|
23
81
|
|
24
82
|
context 'mixed with other params' do
|
25
|
-
let(:
|
83
|
+
let(:path) { '/mixed-params' }
|
84
|
+
let(:params) { { beer: true, wine: true, other: true } }
|
26
85
|
|
27
|
-
it 'does not
|
28
|
-
|
86
|
+
it 'does not return a validation error' do
|
87
|
+
validate
|
88
|
+
expect(last_response.status).to eq 201
|
29
89
|
end
|
30
90
|
end
|
31
91
|
end
|
32
92
|
|
33
|
-
context 'when
|
93
|
+
context 'when a subset of restricted params are present' do
|
94
|
+
let(:path) { '/' }
|
95
|
+
let(:params) { { beer: true } }
|
96
|
+
|
97
|
+
it 'returns a validation error' do
|
98
|
+
validate
|
99
|
+
expect(last_response.status).to eq 400
|
100
|
+
expect(JSON.parse(last_response.body)).to eq(
|
101
|
+
'beer,wine' => ['provide all or none of parameters']
|
102
|
+
)
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
context 'when custom message is specified' do
|
107
|
+
let(:path) { '/custom-message' }
|
108
|
+
let(:params) { { beer: true } }
|
109
|
+
|
110
|
+
it 'returns a validation error' do
|
111
|
+
validate
|
112
|
+
expect(last_response.status).to eq 400
|
113
|
+
expect(JSON.parse(last_response.body)).to eq(
|
114
|
+
'beer,wine' => ['choose all or none']
|
115
|
+
)
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
context 'when no restricted params are present' do
|
120
|
+
let(:path) { '/' }
|
34
121
|
let(:params) { { somethingelse: true } }
|
35
122
|
|
36
|
-
it 'does not
|
37
|
-
|
123
|
+
it 'does not return a validation error' do
|
124
|
+
validate
|
125
|
+
expect(last_response.status).to eq 201
|
38
126
|
end
|
39
127
|
end
|
40
128
|
|
41
|
-
context 'when
|
42
|
-
let(:
|
129
|
+
context 'when restricted params are nested inside required hash' do
|
130
|
+
let(:path) { '/nested-hash' }
|
131
|
+
let(:params) { { item: { beer: true } } }
|
43
132
|
|
44
|
-
it '
|
45
|
-
|
46
|
-
|
47
|
-
|
133
|
+
it 'returns a validation error with full names of the params' do
|
134
|
+
validate
|
135
|
+
expect(last_response.status).to eq 400
|
136
|
+
expect(JSON.parse(last_response.body)).to eq(
|
137
|
+
'item[beer],item[wine]' => ['provide all or none of parameters']
|
138
|
+
)
|
48
139
|
end
|
49
|
-
|
50
|
-
let(:mixed_params) { params.merge!(other: true, andanother: true) }
|
140
|
+
end
|
51
141
|
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
142
|
+
context 'when mutually exclusive params are nested inside array' do
|
143
|
+
let(:path) { '/nested-array' }
|
144
|
+
let(:params) { { items: [{ beer: true, wine: true }, { wine: true }] } }
|
145
|
+
|
146
|
+
it 'returns a validation error with full names of the params' do
|
147
|
+
validate
|
148
|
+
expect(last_response.status).to eq 400
|
149
|
+
expect(JSON.parse(last_response.body)).to eq(
|
150
|
+
'items[1][beer],items[1][wine]' => ['provide all or none of parameters']
|
151
|
+
)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
context 'when mutually exclusive params are deeply nested' do
|
156
|
+
let(:path) { '/deeply-nested-array' }
|
157
|
+
let(:params) { { items: [{ nested_items: [{ beer: true }] }] } }
|
158
|
+
|
159
|
+
it 'returns a validation error with full names of the params' do
|
160
|
+
validate
|
161
|
+
expect(last_response.status).to eq 400
|
162
|
+
expect(JSON.parse(last_response.body)).to eq(
|
163
|
+
'items[0][nested_items][0][beer],items[0][nested_items][0][wine]' => [
|
164
|
+
'provide all or none of parameters'
|
165
|
+
]
|
166
|
+
)
|
57
167
|
end
|
58
168
|
end
|
59
169
|
end
|