grape 1.0.0 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +346 -39
- data/LICENSE +1 -1
- data/README.md +658 -90
- data/UPGRADING.md +472 -17
- data/grape.gemspec +17 -6
- data/lib/grape/api/helpers.rb +2 -0
- data/lib/grape/api/instance.rb +279 -0
- data/lib/grape/api.rb +132 -176
- data/lib/grape/config.rb +34 -0
- data/lib/grape/content_types.rb +34 -0
- data/lib/grape/cookies.rb +4 -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 +44 -12
- data/lib/grape/dsl/headers.rb +2 -0
- data/lib/grape/dsl/helpers.rb +11 -6
- data/lib/grape/dsl/inside_route.rb +116 -36
- data/lib/grape/dsl/logger.rb +2 -0
- data/lib/grape/dsl/middleware.rb +12 -3
- data/lib/grape/dsl/parameters.rb +34 -16
- data/lib/grape/dsl/request_response.rb +13 -8
- data/lib/grape/dsl/routing.rb +19 -12
- data/lib/grape/dsl/settings.rb +22 -4
- data/lib/grape/dsl/validations.rb +24 -4
- data/lib/grape/eager_load.rb +20 -0
- data/lib/grape/endpoint.rb +66 -57
- data/lib/grape/error_formatter/base.rb +2 -0
- data/lib/grape/error_formatter/json.rb +6 -4
- data/lib/grape/error_formatter/txt.rb +10 -3
- data/lib/grape/error_formatter/xml.rb +6 -4
- data/lib/grape/error_formatter.rb +4 -2
- data/lib/grape/exceptions/base.rb +22 -14
- data/lib/grape/exceptions/empty_message_body.rb +11 -0
- data/lib/grape/exceptions/incompatible_option_values.rb +2 -1
- data/lib/grape/exceptions/invalid_accept_header.rb +2 -1
- data/lib/grape/exceptions/invalid_formatter.rb +2 -1
- data/lib/grape/exceptions/invalid_message_body.rb +2 -1
- data/lib/grape/exceptions/invalid_response.rb +11 -0
- data/lib/grape/exceptions/invalid_version_header.rb +2 -1
- data/lib/grape/exceptions/invalid_versioner_option.rb +2 -1
- data/lib/grape/exceptions/invalid_with_option_for_represent.rb +2 -1
- data/lib/grape/exceptions/method_not_allowed.rb +2 -1
- data/lib/grape/exceptions/missing_group_type.rb +2 -1
- data/lib/grape/exceptions/missing_mime_type.rb +2 -1
- data/lib/grape/exceptions/missing_option.rb +2 -1
- data/lib/grape/exceptions/missing_vendor_option.rb +2 -1
- data/lib/grape/exceptions/unknown_options.rb +2 -1
- data/lib/grape/exceptions/unknown_parameter.rb +2 -1
- data/lib/grape/exceptions/unknown_validator.rb +2 -1
- data/lib/grape/exceptions/unsupported_group_type.rb +2 -1
- data/lib/grape/exceptions/validation.rb +5 -4
- 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/json.rb +3 -0
- data/lib/grape/formatter/serializable_hash.rb +4 -1
- data/lib/grape/formatter/txt.rb +2 -0
- data/lib/grape/formatter/xml.rb +3 -0
- data/lib/grape/formatter.rb +5 -3
- 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 +12 -7
- data/lib/grape/middleware/error.rb +75 -61
- data/lib/grape/middleware/filter.rb +2 -0
- data/lib/grape/middleware/formatter.rb +17 -13
- data/lib/grape/middleware/globals.rb +2 -0
- data/lib/grape/middleware/helpers.rb +12 -0
- data/lib/grape/middleware/stack.rb +15 -5
- data/lib/grape/middleware/versioner/accept_version_header.rb +5 -5
- data/lib/grape/middleware/versioner/header.rb +13 -9
- data/lib/grape/middleware/versioner/param.rb +4 -1
- data/lib/grape/middleware/versioner/parse_media_type_patch.rb +5 -1
- data/lib/grape/middleware/versioner/path.rb +5 -1
- data/lib/grape/middleware/versioner.rb +2 -0
- data/lib/grape/namespace.rb +15 -3
- data/lib/grape/parser/json.rb +3 -1
- data/lib/grape/parser/xml.rb +3 -1
- data/lib/grape/parser.rb +4 -2
- data/lib/grape/path.rb +16 -3
- data/lib/grape/presenters/presenter.rb +2 -0
- data/lib/grape/request.rb +19 -9
- data/lib/grape/router/attribute_translator.rb +41 -8
- data/lib/grape/router/pattern.rb +22 -18
- data/lib/grape/router/route.rb +16 -30
- data/lib/grape/router.rb +37 -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 +3 -3
- 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 +99 -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/attributes_iterator.rb +16 -6
- data/lib/grape/validations/multiple_attributes_iterator.rb +13 -0
- data/lib/grape/validations/params_scope.rb +128 -66
- data/lib/grape/validations/single_attribute_iterator.rb +24 -0
- data/lib/grape/validations/types/array_coercer.rb +65 -0
- data/lib/grape/validations/types/build_coercer.rb +52 -46
- data/lib/grape/validations/types/custom_type_coercer.rb +30 -51
- data/lib/grape/validations/types/custom_type_collection_coercer.rb +56 -0
- 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 +47 -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/types.rb +26 -38
- data/lib/grape/validations/validator_factory.rb +8 -11
- data/lib/grape/validations/validators/all_or_none.rb +8 -12
- data/lib/grape/validations/validators/allow_blank.rb +4 -2
- data/lib/grape/validations/validators/as.rb +12 -0
- data/lib/grape/validations/validators/at_least_one_of.rb +7 -12
- data/lib/grape/validations/validators/base.rb +23 -15
- data/lib/grape/validations/validators/coerce.rb +47 -28
- data/lib/grape/validations/validators/default.rb +7 -6
- data/lib/grape/validations/validators/exactly_one_of.rb +10 -22
- data/lib/grape/validations/validators/except_values.rb +4 -2
- data/lib/grape/validations/validators/multiple_params_base.rb +19 -10
- data/lib/grape/validations/validators/mutual_exclusion.rb +8 -17
- data/lib/grape/validations/validators/presence.rb +4 -1
- data/lib/grape/validations/validators/regexp.rb +5 -2
- data/lib/grape/validations/validators/same_as.rb +27 -0
- data/lib/grape/validations/validators/values.rb +29 -9
- data/lib/grape/validations.rb +2 -0
- data/lib/grape/version.rb +3 -1
- data/lib/grape.rb +107 -73
- data/spec/grape/api/custom_validations_spec.rb +6 -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 +116 -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 +49 -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 +775 -65
- data/spec/grape/config_spec.rb +19 -0
- data/spec/grape/dsl/callbacks_spec.rb +3 -1
- 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 +23 -2
- data/spec/grape/dsl/inside_route_spec.rb +185 -34
- data/spec/grape/dsl/logger_spec.rb +2 -0
- data/spec/grape/dsl/middleware_spec.rb +11 -1
- data/spec/grape/dsl/parameters_spec.rb +12 -9
- data/spec/grape/dsl/request_response_spec.rb +2 -0
- data/spec/grape/dsl/routing_spec.rb +13 -1
- data/spec/grape/dsl/settings_spec.rb +4 -2
- data/spec/grape/dsl/validations_spec.rb +2 -0
- data/spec/grape/endpoint/declared_spec.rb +848 -0
- data/spec/grape/endpoint_spec.rb +75 -515
- data/spec/grape/entity_spec.rb +19 -11
- 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 -1
- data/spec/grape/exceptions/invalid_response_spec.rb +13 -0
- data/spec/grape/exceptions/invalid_versioner_option_spec.rb +2 -1
- data/spec/grape/exceptions/missing_mime_type_spec.rb +2 -0
- data/spec/grape/exceptions/missing_option_spec.rb +2 -1
- data/spec/grape/exceptions/unknown_options_spec.rb +3 -2
- data/spec/grape/exceptions/unknown_validator_spec.rb +2 -1
- data/spec/grape/exceptions/validation_errors_spec.rb +17 -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 +6 -4
- 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 +4 -3
- data/spec/grape/middleware/exception_spec.rb +205 -55
- data/spec/grape/middleware/formatter_spec.rb +130 -15
- data/spec/grape/middleware/globals_spec.rb +2 -0
- data/spec/grape/middleware/stack_spec.rb +15 -1
- data/spec/grape/middleware/versioner/accept_version_header_spec.rb +3 -1
- data/spec/grape/middleware/versioner/header_spec.rb +10 -2
- data/spec/grape/middleware/versioner/param_spec.rb +4 -2
- data/spec/grape/middleware/versioner/path_spec.rb +4 -2
- 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 +9 -7
- 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 +4 -2
- data/spec/grape/util/inheritable_values_spec.rb +2 -0
- data/spec/grape/util/reverse_stackable_values_spec.rb +15 -13
- data/spec/grape/util/stackable_values_spec.rb +16 -14
- data/spec/grape/util/strict_hash_configuration_spec.rb +3 -1
- 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 +364 -7
- 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 +558 -133
- data/spec/grape/validations/validators/default_spec.rb +212 -0
- data/spec/grape/validations/validators/exactly_one_of_spec.rb +204 -38
- data/spec/grape/validations/validators/except_values_spec.rb +6 -3
- 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 +73 -19
- data/spec/grape/validations_spec.rb +403 -53
- 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 +78 -18
- data/spec/spec_helper.rb +13 -2
- data/spec/support/basic_auth_encode_helpers.rb +3 -1
- data/spec/support/chunks.rb +14 -0
- data/spec/support/content_type_helpers.rb +3 -1
- 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 +176 -130
- data/Appraisals +0 -32
- data/Dangerfile +0 -1
- data/Gemfile +0 -34
- data/Gemfile.lock +0 -229
- data/Guardfile +0 -10
- data/RELEASING.md +0 -111
- data/Rakefile +0 -70
- data/benchmark/simple.rb +0 -27
- data/benchmark/simple_with_type_coercer.rb +0 -22
- data/gemfiles/multi_json.gemfile +0 -36
- data/gemfiles/multi_xml.gemfile +0 -36
- data/gemfiles/rack_1.5.2.gemfile +0 -36
- data/gemfiles/rack_edge.gemfile +0 -36
- data/gemfiles/rails_3.gemfile +0 -37
- data/gemfiles/rails_4.gemfile +0 -36
- data/gemfiles/rails_5.gemfile +0 -36
- data/gemfiles/rails_edge.gemfile +0 -36
- 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
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Grape::Validations::DefaultValidator do
|
@@ -75,6 +77,21 @@ describe Grape::Validations::DefaultValidator do
|
|
75
77
|
get '/nested_optional_array' do
|
76
78
|
{ root: params[:root] }
|
77
79
|
end
|
80
|
+
|
81
|
+
params do
|
82
|
+
requires :root, type: Hash do
|
83
|
+
optional :some_things, type: Array do
|
84
|
+
requires :foo
|
85
|
+
optional :options, type: Array do
|
86
|
+
optional :name, type: String
|
87
|
+
optional :value, type: String
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
92
|
+
get '/another_nested_optional_array' do
|
93
|
+
{ root: params[:root] }
|
94
|
+
end
|
78
95
|
end
|
79
96
|
end
|
80
97
|
end
|
@@ -99,6 +116,31 @@ describe Grape::Validations::DefaultValidator do
|
|
99
116
|
expect(last_response.body).to eq({ root: params }.to_json)
|
100
117
|
end
|
101
118
|
|
119
|
+
it 'does not allows faulty optional arrays' do
|
120
|
+
params = { some_things:
|
121
|
+
[
|
122
|
+
{ foo: 'one', options: [{ name: 'wat', value: 'nope' }] },
|
123
|
+
{ foo: 'two', options: [{ name: 'wat' }] },
|
124
|
+
{ foo: 'three' }
|
125
|
+
] }
|
126
|
+
error = { error: 'root[some_things][1][options][0][value] is missing' }
|
127
|
+
get '/nested_optional_array', root: params
|
128
|
+
expect(last_response.status).to eq(400)
|
129
|
+
expect(last_response.body).to eq(error.to_json)
|
130
|
+
end
|
131
|
+
|
132
|
+
it 'allows optional arrays with optional params' do
|
133
|
+
params = { some_things:
|
134
|
+
[
|
135
|
+
{ foo: 'one', options: [{ value: 'nope' }] },
|
136
|
+
{ foo: 'two', options: [{ name: 'wat' }] },
|
137
|
+
{ foo: 'three' }
|
138
|
+
] }
|
139
|
+
get '/another_nested_optional_array', root: params
|
140
|
+
expect(last_response.status).to eq(200)
|
141
|
+
expect(last_response.body).to eq({ root: params }.to_json)
|
142
|
+
end
|
143
|
+
|
102
144
|
it 'set default value for optional param' do
|
103
145
|
get('/')
|
104
146
|
expect(last_response.status).to eq(200)
|
@@ -256,4 +298,174 @@ describe Grape::Validations::DefaultValidator do
|
|
256
298
|
end
|
257
299
|
end
|
258
300
|
end
|
301
|
+
|
302
|
+
context 'optional with nil as value' do
|
303
|
+
subject do
|
304
|
+
Class.new(Grape::API) do
|
305
|
+
default_format :json
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
309
|
+
def app
|
310
|
+
subject
|
311
|
+
end
|
312
|
+
|
313
|
+
context 'primitive types' do
|
314
|
+
[
|
315
|
+
[Integer, 0],
|
316
|
+
[Integer, 42],
|
317
|
+
[Float, 0.0],
|
318
|
+
[Float, 4.2],
|
319
|
+
[BigDecimal, 0.0],
|
320
|
+
[BigDecimal, 4.2],
|
321
|
+
[Numeric, 0],
|
322
|
+
[Numeric, 42],
|
323
|
+
[Date, Date.today],
|
324
|
+
[DateTime, DateTime.now],
|
325
|
+
[Time, Time.now],
|
326
|
+
[Time, Time.at(0)],
|
327
|
+
[Grape::API::Boolean, false],
|
328
|
+
[String, ''],
|
329
|
+
[String, 'non-empty-string'],
|
330
|
+
[Symbol, :symbol],
|
331
|
+
[TrueClass, true],
|
332
|
+
[FalseClass, false]
|
333
|
+
].each do |type, default|
|
334
|
+
it 'respects the default value' do
|
335
|
+
subject.params do
|
336
|
+
optional :param, type: type, default: default
|
337
|
+
end
|
338
|
+
subject.get '/default_value' do
|
339
|
+
params[:param]
|
340
|
+
end
|
341
|
+
|
342
|
+
get '/default_value', param: nil
|
343
|
+
expect(last_response.status).to eq(200)
|
344
|
+
expect(last_response.body).to eq(default.to_json)
|
345
|
+
end
|
346
|
+
end
|
347
|
+
end
|
348
|
+
|
349
|
+
context 'structures types' do
|
350
|
+
[
|
351
|
+
[Hash, {}],
|
352
|
+
[Hash, { test: 'non-empty' }],
|
353
|
+
[Array, []],
|
354
|
+
[Array, ['non-empty']],
|
355
|
+
[Array[Integer], []],
|
356
|
+
[Set, []],
|
357
|
+
[Set, [1]]
|
358
|
+
].each do |type, default|
|
359
|
+
it 'respects the default value' do
|
360
|
+
subject.params do
|
361
|
+
optional :param, type: type, default: default
|
362
|
+
end
|
363
|
+
subject.get '/default_value' do
|
364
|
+
params[:param]
|
365
|
+
end
|
366
|
+
|
367
|
+
get '/default_value', param: nil
|
368
|
+
expect(last_response.status).to eq(200)
|
369
|
+
expect(last_response.body).to eq(default.to_json)
|
370
|
+
end
|
371
|
+
end
|
372
|
+
end
|
373
|
+
|
374
|
+
context 'special types' do
|
375
|
+
[
|
376
|
+
[JSON, ''],
|
377
|
+
[JSON, { test: 'non-empty-string' }.to_json],
|
378
|
+
[Array[JSON], []],
|
379
|
+
[Array[JSON], [{ test: 'non-empty-string' }.to_json]],
|
380
|
+
[::File, ''],
|
381
|
+
[::File, { test: 'non-empty-string' }.to_json],
|
382
|
+
[Rack::Multipart::UploadedFile, ''],
|
383
|
+
[Rack::Multipart::UploadedFile, { test: 'non-empty-string' }.to_json]
|
384
|
+
].each do |type, default|
|
385
|
+
it 'respects the default value' do
|
386
|
+
subject.params do
|
387
|
+
optional :param, type: type, default: default
|
388
|
+
end
|
389
|
+
subject.get '/default_value' do
|
390
|
+
params[:param]
|
391
|
+
end
|
392
|
+
|
393
|
+
get '/default_value', param: nil
|
394
|
+
expect(last_response.status).to eq(200)
|
395
|
+
expect(last_response.body).to eq(default.to_json)
|
396
|
+
end
|
397
|
+
end
|
398
|
+
end
|
399
|
+
|
400
|
+
context 'variant-member-type collections' do
|
401
|
+
[
|
402
|
+
[Array[Integer, String], [0, '']],
|
403
|
+
[Array[Integer, String], [42, 'non-empty-string']],
|
404
|
+
[[Integer, String, Array[Integer, String]], [0, '', [0, '']]],
|
405
|
+
[[Integer, String, Array[Integer, String]], [42, 'non-empty-string', [42, 'non-empty-string']]]
|
406
|
+
].each do |type, default|
|
407
|
+
it 'respects the default value' do
|
408
|
+
subject.params do
|
409
|
+
optional :param, type: type, default: default
|
410
|
+
end
|
411
|
+
subject.get '/default_value' do
|
412
|
+
params[:param]
|
413
|
+
end
|
414
|
+
|
415
|
+
get '/default_value', param: nil
|
416
|
+
expect(last_response.status).to eq(200)
|
417
|
+
expect(last_response.body).to eq(default.to_json)
|
418
|
+
end
|
419
|
+
end
|
420
|
+
end
|
421
|
+
end
|
422
|
+
|
423
|
+
context 'array with default values and given conditions' do
|
424
|
+
subject do
|
425
|
+
Class.new(Grape::API) do
|
426
|
+
default_format :json
|
427
|
+
end
|
428
|
+
end
|
429
|
+
|
430
|
+
def app
|
431
|
+
subject
|
432
|
+
end
|
433
|
+
|
434
|
+
it 'applies the default values only if the conditions are met' do
|
435
|
+
subject.params do
|
436
|
+
requires :ary, type: Array do
|
437
|
+
requires :has_value, type: Grape::API::Boolean
|
438
|
+
given has_value: ->(has_value) { has_value } do
|
439
|
+
optional :type, type: String, values: %w[str int], default: 'str'
|
440
|
+
given type: ->(type) { type == 'str' } do
|
441
|
+
optional :str, type: String, default: 'a'
|
442
|
+
end
|
443
|
+
given type: ->(type) { type == 'int' } do
|
444
|
+
optional :int, type: Integer, default: 1
|
445
|
+
end
|
446
|
+
end
|
447
|
+
end
|
448
|
+
end
|
449
|
+
subject.post('/nested_given_and_default') { declared(self.params) }
|
450
|
+
|
451
|
+
params = {
|
452
|
+
ary: [
|
453
|
+
{ has_value: false },
|
454
|
+
{ has_value: true, type: 'int', int: 123 },
|
455
|
+
{ has_value: true, type: 'str', str: 'b' }
|
456
|
+
]
|
457
|
+
}
|
458
|
+
expected = {
|
459
|
+
'ary' => [
|
460
|
+
{ 'has_value' => false, 'type' => nil, 'int' => nil, 'str' => nil },
|
461
|
+
{ 'has_value' => true, 'type' => 'int', 'int' => 123, 'str' => nil },
|
462
|
+
{ 'has_value' => true, 'type' => 'str', 'int' => nil, 'str' => 'b' }
|
463
|
+
]
|
464
|
+
}
|
465
|
+
|
466
|
+
post '/nested_given_and_default', params
|
467
|
+
expect(last_response.status).to eq(201)
|
468
|
+
expect(JSON.parse(last_response.body)).to eq(expected)
|
469
|
+
end
|
470
|
+
end
|
259
471
|
end
|
@@ -1,74 +1,240 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Grape::Validations::ExactlyOneOfValidator do
|
4
6
|
describe '#validate!' do
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
7
|
+
subject(:validate) { post path, params }
|
8
|
+
|
9
|
+
module ValidationsSpec
|
10
|
+
module ExactlyOneOfValidatorSpec
|
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
|
18
|
+
optional :wine
|
19
|
+
optional :grapefruit
|
20
|
+
exactly_one_of :beer, :wine, :grapefruit
|
21
|
+
end
|
22
|
+
post do
|
23
|
+
end
|
24
|
+
|
25
|
+
params do
|
26
|
+
optional :beer
|
27
|
+
optional :wine
|
28
|
+
optional :grapefruit
|
29
|
+
optional :other
|
30
|
+
exactly_one_of :beer, :wine, :grapefruit
|
31
|
+
end
|
32
|
+
post 'mixed-params' do
|
33
|
+
end
|
34
|
+
|
35
|
+
params do
|
36
|
+
optional :beer
|
37
|
+
optional :wine
|
38
|
+
optional :grapefruit
|
39
|
+
exactly_one_of :beer, :wine, :grapefruit, message: 'you should choose one'
|
40
|
+
end
|
41
|
+
post '/custom-message' do
|
42
|
+
end
|
43
|
+
|
44
|
+
params do
|
45
|
+
requires :item, type: Hash do
|
46
|
+
optional :beer
|
47
|
+
optional :wine
|
48
|
+
optional :grapefruit
|
49
|
+
exactly_one_of :beer, :wine, :grapefruit
|
50
|
+
end
|
51
|
+
end
|
52
|
+
post '/nested-hash' do
|
53
|
+
end
|
54
|
+
|
55
|
+
params do
|
56
|
+
optional :item, type: Hash do
|
57
|
+
optional :beer
|
58
|
+
optional :wine
|
59
|
+
optional :grapefruit
|
60
|
+
exactly_one_of :beer, :wine, :grapefruit
|
61
|
+
end
|
62
|
+
end
|
63
|
+
post '/nested-optional-hash' do
|
64
|
+
end
|
65
|
+
|
66
|
+
params do
|
67
|
+
requires :items, type: Array do
|
68
|
+
optional :beer
|
69
|
+
optional :wine
|
70
|
+
optional :grapefruit
|
71
|
+
exactly_one_of :beer, :wine, :grapefruit
|
72
|
+
end
|
73
|
+
end
|
74
|
+
post '/nested-array' do
|
75
|
+
end
|
10
76
|
|
11
|
-
|
77
|
+
params do
|
78
|
+
requires :items, type: Array do
|
79
|
+
requires :nested_items, type: Array do
|
80
|
+
optional :beer, :wine, :grapefruit, type: Boolean
|
81
|
+
exactly_one_of :beer, :wine, :grapefruit
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
85
|
+
post '/deeply-nested-array' do
|
86
|
+
end
|
87
|
+
end
|
12
88
|
end
|
13
89
|
end
|
14
|
-
let(:exactly_one_of_params) { [:beer, :wine, :grapefruit] }
|
15
|
-
let(:validator) { described_class.new(exactly_one_of_params, {}, false, scope.new) }
|
16
90
|
|
17
|
-
|
91
|
+
def app
|
92
|
+
ValidationsSpec::ExactlyOneOfValidatorSpec::API
|
93
|
+
end
|
94
|
+
|
95
|
+
context 'when all params are present' do
|
96
|
+
let(:path) { '/' }
|
18
97
|
let(:params) { { beer: true, wine: true, grapefruit: true } }
|
19
98
|
|
20
|
-
it '
|
21
|
-
|
22
|
-
|
23
|
-
|
99
|
+
it 'returns a validation error' do
|
100
|
+
validate
|
101
|
+
expect(last_response.status).to eq 400
|
102
|
+
expect(JSON.parse(last_response.body)).to eq(
|
103
|
+
'beer,wine,grapefruit' => ['are mutually exclusive']
|
104
|
+
)
|
24
105
|
end
|
25
106
|
|
26
107
|
context 'mixed with other params' do
|
27
|
-
let(:
|
108
|
+
let(:path) { '/mixed-params' }
|
109
|
+
let(:params) { { beer: true, wine: true, grapefruit: true, other: true } }
|
28
110
|
|
29
|
-
it '
|
30
|
-
|
31
|
-
|
32
|
-
|
111
|
+
it 'returns a validation error' do
|
112
|
+
validate
|
113
|
+
expect(last_response.status).to eq 400
|
114
|
+
expect(JSON.parse(last_response.body)).to eq(
|
115
|
+
'beer,wine,grapefruit' => ['are mutually exclusive']
|
116
|
+
)
|
33
117
|
end
|
34
118
|
end
|
35
119
|
end
|
36
120
|
|
37
|
-
context 'when a subset of
|
121
|
+
context 'when a subset of params are present' do
|
122
|
+
let(:path) { '/' }
|
38
123
|
let(:params) { { beer: true, grapefruit: true } }
|
39
124
|
|
40
|
-
it '
|
41
|
-
|
42
|
-
|
43
|
-
|
125
|
+
it 'returns a validation error' do
|
126
|
+
validate
|
127
|
+
expect(last_response.status).to eq 400
|
128
|
+
expect(JSON.parse(last_response.body)).to eq(
|
129
|
+
'beer,grapefruit' => ['are mutually exclusive']
|
130
|
+
)
|
44
131
|
end
|
45
132
|
end
|
46
133
|
|
47
|
-
context 'when
|
48
|
-
let(:
|
134
|
+
context 'when custom message is specified' do
|
135
|
+
let(:path) { '/custom-message' }
|
136
|
+
let(:params) { { beer: true, wine: true } }
|
49
137
|
|
50
|
-
it '
|
51
|
-
|
52
|
-
|
53
|
-
|
138
|
+
it 'returns a validation error' do
|
139
|
+
validate
|
140
|
+
expect(last_response.status).to eq 400
|
141
|
+
expect(JSON.parse(last_response.body)).to eq(
|
142
|
+
'beer,wine' => ['you should choose one']
|
143
|
+
)
|
54
144
|
end
|
55
145
|
end
|
56
146
|
|
57
|
-
context 'when
|
147
|
+
context 'when exacly one param is present' do
|
148
|
+
let(:path) { '/' }
|
149
|
+
let(:params) { { beer: true, somethingelse: true } }
|
150
|
+
|
151
|
+
it 'does not return a validation error' do
|
152
|
+
validate
|
153
|
+
expect(last_response.status).to eq 201
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
context 'when none of the params are present' do
|
158
|
+
let(:path) { '/' }
|
58
159
|
let(:params) { { somethingelse: true } }
|
59
160
|
|
60
|
-
it '
|
61
|
-
|
62
|
-
|
63
|
-
|
161
|
+
it 'returns a validation error' do
|
162
|
+
validate
|
163
|
+
expect(last_response.status).to eq 400
|
164
|
+
expect(JSON.parse(last_response.body)).to eq(
|
165
|
+
'beer,wine,grapefruit' => ['are missing, exactly one parameter must be provided']
|
166
|
+
)
|
64
167
|
end
|
65
168
|
end
|
66
169
|
|
67
|
-
context 'when
|
68
|
-
let(:
|
170
|
+
context 'when params are nested inside required hash' do
|
171
|
+
let(:path) { '/nested-hash' }
|
172
|
+
let(:params) { { item: { beer: true, wine: true } } }
|
173
|
+
|
174
|
+
it 'returns a validation error with full names of the params' do
|
175
|
+
validate
|
176
|
+
expect(last_response.status).to eq 400
|
177
|
+
expect(JSON.parse(last_response.body)).to eq(
|
178
|
+
'item[beer],item[wine]' => ['are mutually exclusive']
|
179
|
+
)
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
context 'when params are nested inside optional hash' do
|
184
|
+
let(:path) { '/nested-optional-hash' }
|
185
|
+
|
186
|
+
context 'when params are passed' do
|
187
|
+
let(:params) { { item: { beer: true, wine: true } } }
|
188
|
+
|
189
|
+
it 'returns a validation error with full names of the params' do
|
190
|
+
validate
|
191
|
+
expect(last_response.status).to eq 400
|
192
|
+
expect(JSON.parse(last_response.body)).to eq(
|
193
|
+
'item[beer],item[wine]' => ['are mutually exclusive']
|
194
|
+
)
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
context 'when params are empty' do
|
199
|
+
let(:params) { { other: true } }
|
200
|
+
|
201
|
+
it 'does not return a validation error' do
|
202
|
+
validate
|
203
|
+
expect(last_response.status).to eq 201
|
204
|
+
end
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
context 'when params are nested inside array' do
|
209
|
+
let(:path) { '/nested-array' }
|
210
|
+
let(:params) { { items: [{ beer: true, wine: true }, { wine: true, grapefruit: true }] } }
|
211
|
+
|
212
|
+
it 'returns a validation error with full names of the params' do
|
213
|
+
validate
|
214
|
+
expect(last_response.status).to eq 400
|
215
|
+
expect(JSON.parse(last_response.body)).to eq(
|
216
|
+
'items[0][beer],items[0][wine]' => [
|
217
|
+
'are mutually exclusive'
|
218
|
+
],
|
219
|
+
'items[1][wine],items[1][grapefruit]' => [
|
220
|
+
'are mutually exclusive'
|
221
|
+
]
|
222
|
+
)
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
226
|
+
context 'when params are deeply nested' do
|
227
|
+
let(:path) { '/deeply-nested-array' }
|
228
|
+
let(:params) { { items: [{ nested_items: [{ beer: true, wine: true }] }] } }
|
69
229
|
|
70
|
-
it '
|
71
|
-
|
230
|
+
it 'returns a validation error with full names of the params' do
|
231
|
+
validate
|
232
|
+
expect(last_response.status).to eq 400
|
233
|
+
expect(JSON.parse(last_response.body)).to eq(
|
234
|
+
'items[0][nested_items][0][beer],items[0][nested_items][0][wine]' => [
|
235
|
+
'are mutually exclusive'
|
236
|
+
]
|
237
|
+
)
|
72
238
|
end
|
73
239
|
end
|
74
240
|
end
|
@@ -1,11 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Grape::Validations::ExceptValuesValidator do
|
4
6
|
module ValidationsSpec
|
5
7
|
class ExceptValuesModel
|
6
|
-
DEFAULT_EXCEPTS = [
|
8
|
+
DEFAULT_EXCEPTS = %w[invalid-type1 invalid-type2 invalid-type3].freeze
|
7
9
|
class << self
|
8
10
|
attr_accessor :excepts
|
11
|
+
|
9
12
|
def excepts
|
10
13
|
@excepts ||= []
|
11
14
|
[DEFAULT_EXCEPTS + @excepts].flatten.uniq
|
@@ -110,7 +113,7 @@ describe Grape::Validations::ExceptValuesValidator do
|
|
110
113
|
optional: { type: Array[Integer], except_values: [10, 11], default: 12 },
|
111
114
|
tests: [
|
112
115
|
{ value: 'invalid-type1', rc: 400, body: { error: 'type is invalid' }.to_json },
|
113
|
-
{ value: 10, rc: 400, body: { error: 'type
|
116
|
+
{ value: 10, rc: 400, body: { error: 'type is invalid' }.to_json },
|
114
117
|
{ value: [10], rc: 400, body: { error: 'type has a value not allowed' }.to_json },
|
115
118
|
{ value: ['3'], rc: 200, body: { type: [3] }.to_json },
|
116
119
|
{ value: [3], rc: 200, body: { type: [3] }.to_json },
|
@@ -167,7 +170,7 @@ describe Grape::Validations::ExceptValuesValidator do
|
|
167
170
|
it 'raises IncompatibleOptionValues when type is incompatible with values array' do
|
168
171
|
subject = Class.new(Grape::API)
|
169
172
|
expect do
|
170
|
-
subject.params { optional :type, except_values: [
|
173
|
+
subject.params { optional :type, except_values: %w[valid-type1 valid-type2 valid-type3], type: Symbol }
|
171
174
|
end.to raise_error Grape::Exceptions::IncompatibleOptionValues
|
172
175
|
end
|
173
176
|
|