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,9 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Grape::Middleware::Versioner::Param do
|
4
6
|
let(:app) { ->(env) { [200, env, env['api.version']] } }
|
5
7
|
let(:options) { {} }
|
6
|
-
subject { Grape::Middleware::Versioner::Param.new(app, options) }
|
8
|
+
subject { Grape::Middleware::Versioner::Param.new(app, **options) }
|
7
9
|
|
8
10
|
it 'sets the API version based on the default param (apiver)' do
|
9
11
|
env = Rack::MockRequest.env_for('/awesome', params: { 'apiver' => 'v1' })
|
@@ -35,7 +37,7 @@ describe Grape::Middleware::Versioner::Param do
|
|
35
37
|
end
|
36
38
|
|
37
39
|
context 'with specified versions' do
|
38
|
-
let(:options) { { versions: %w
|
40
|
+
let(:options) { { versions: %w[v1 v2] } }
|
39
41
|
it 'throws an error if a non-allowed version is specified' do
|
40
42
|
env = Rack::MockRequest.env_for('/awesome', params: { 'apiver' => 'v3' })
|
41
43
|
expect(catch(:error) { subject.call(env) }[:status]).to eq(404)
|
@@ -1,9 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Grape::Middleware::Versioner::Path do
|
4
6
|
let(:app) { ->(env) { [200, env, env['api.version']] } }
|
5
7
|
let(:options) { {} }
|
6
|
-
subject { Grape::Middleware::Versioner::Path.new(app, options) }
|
8
|
+
subject { Grape::Middleware::Versioner::Path.new(app, **options) }
|
7
9
|
|
8
10
|
it 'sets the API version based on the first path' do
|
9
11
|
expect(subject.call('PATH_INFO' => '/v1/awesome').last).to eq('v1')
|
@@ -28,7 +30,7 @@ describe Grape::Middleware::Versioner::Path do
|
|
28
30
|
end
|
29
31
|
end
|
30
32
|
|
31
|
-
[%w
|
33
|
+
[%w[v1 v2], %i[v1 v2], [:v1, 'v2'], ['v1', :v2]].each do |versions|
|
32
34
|
context "with specified versions as #{versions}" do
|
33
35
|
let(:options) { { versions: versions } }
|
34
36
|
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe 'A named API' do
|
6
|
+
subject(:api_name) { NamedAPI.endpoints.last.options[:for].to_s }
|
7
|
+
|
8
|
+
let(:api) do
|
9
|
+
Class.new(Grape::API) do
|
10
|
+
get 'test' do
|
11
|
+
'response'
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
before { stub_const('NamedAPI', api) }
|
17
|
+
|
18
|
+
it 'can access the name of the API' do
|
19
|
+
expect(api_name).to eq 'NamedAPI'
|
20
|
+
end
|
21
|
+
end
|
data/spec/grape/parser_spec.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe Grape::Parser do
|
@@ -15,11 +17,11 @@ describe Grape::Parser do
|
|
15
17
|
|
16
18
|
describe '.parsers' do
|
17
19
|
it 'returns an instance of Hash' do
|
18
|
-
expect(subject.parsers({})).to be_an_instance_of(Hash)
|
20
|
+
expect(subject.parsers(**{})).to be_an_instance_of(Hash)
|
19
21
|
end
|
20
22
|
|
21
23
|
it 'includes built-in parsers' do
|
22
|
-
expect(subject.parsers({})).to include(subject.builtin_parsers)
|
24
|
+
expect(subject.parsers(**{})).to include(subject.builtin_parsers)
|
23
25
|
end
|
24
26
|
|
25
27
|
context 'with :parsers option' do
|
@@ -33,7 +35,7 @@ describe Grape::Parser do
|
|
33
35
|
let(:added_parser) { Class.new }
|
34
36
|
before { subject.register :added, added_parser }
|
35
37
|
it 'includes added parser' do
|
36
|
-
expect(subject.parsers({})).to include(added: added_parser)
|
38
|
+
expect(subject.parsers(**{})).to include(added: added_parser)
|
37
39
|
end
|
38
40
|
end
|
39
41
|
end
|
@@ -42,8 +44,8 @@ describe Grape::Parser do
|
|
42
44
|
let(:options) { {} }
|
43
45
|
|
44
46
|
it 'calls .parsers' do
|
45
|
-
expect(subject).to receive(:parsers).with(
|
46
|
-
subject.parser_for(:json, options)
|
47
|
+
expect(subject).to receive(:parsers).with(any_args).and_return(subject.builtin_parsers)
|
48
|
+
subject.parser_for(:json, **options)
|
47
49
|
end
|
48
50
|
|
49
51
|
it 'returns parser correctly' do
|
data/spec/grape/path_spec.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
module Grape
|
@@ -31,8 +33,8 @@ module Grape
|
|
31
33
|
end
|
32
34
|
|
33
35
|
it 'splits the mount path' do
|
34
|
-
path = Path.new(anything, anything, mount_path: %w
|
35
|
-
expect(path.mount_path).to eql(%w
|
36
|
+
path = Path.new(anything, anything, mount_path: %w[foo bar])
|
37
|
+
expect(path.mount_path).to eql(%w[foo bar])
|
36
38
|
end
|
37
39
|
end
|
38
40
|
|
@@ -49,7 +51,7 @@ module Grape
|
|
49
51
|
|
50
52
|
it 'splits the mount path' do
|
51
53
|
path = Path.new(anything, anything, root_prefix: 'hello/world')
|
52
|
-
expect(path.root_prefix).to eql(%w
|
54
|
+
expect(path.root_prefix).to eql(%w[hello world])
|
53
55
|
end
|
54
56
|
end
|
55
57
|
|
@@ -85,12 +87,12 @@ module Grape
|
|
85
87
|
describe '#namespace?' do
|
86
88
|
it 'is false when the namespace is nil' do
|
87
89
|
path = Path.new(anything, nil, anything)
|
88
|
-
expect(path.namespace?).to
|
90
|
+
expect(path.namespace?).to be_falsey
|
89
91
|
end
|
90
92
|
|
91
93
|
it 'is false when the namespace starts with whitespace' do
|
92
94
|
path = Path.new(anything, ' /foo', anything)
|
93
|
-
expect(path.namespace?).to
|
95
|
+
expect(path.namespace?).to be_falsey
|
94
96
|
end
|
95
97
|
|
96
98
|
it 'is false when the namespace is the root path' do
|
@@ -107,12 +109,12 @@ module Grape
|
|
107
109
|
describe '#path?' do
|
108
110
|
it 'is false when the path is nil' do
|
109
111
|
path = Path.new(nil, anything, anything)
|
110
|
-
expect(path.path?).to
|
112
|
+
expect(path.path?).to be_falsey
|
111
113
|
end
|
112
114
|
|
113
115
|
it 'is false when the path starts with whitespace' do
|
114
116
|
path = Path.new(' /foo', anything, anything)
|
115
|
-
expect(path.path?).to
|
117
|
+
expect(path.path?).to be_falsey
|
116
118
|
end
|
117
119
|
|
118
120
|
it 'is false when the path is the root path' do
|
data/spec/grape/request_spec.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
module Grape
|
@@ -62,6 +64,30 @@ module Grape
|
|
62
64
|
end
|
63
65
|
end
|
64
66
|
|
67
|
+
describe 'when the param_builder is set to Hashie' do
|
68
|
+
before do
|
69
|
+
Grape.configure do |config|
|
70
|
+
config.param_builder = Grape::Extensions::Hashie::Mash::ParamBuilder
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
after do
|
75
|
+
Grape.config.reset
|
76
|
+
end
|
77
|
+
|
78
|
+
subject(:request_params) { Grape::Request.new(env, **opts).params }
|
79
|
+
|
80
|
+
context 'when the API does not include a specific param builder' do
|
81
|
+
let(:opts) { {} }
|
82
|
+
it { is_expected.to be_a(Hashie::Mash) }
|
83
|
+
end
|
84
|
+
|
85
|
+
context 'when the API includes a specific param builder' do
|
86
|
+
let(:opts) { { build_params_with: Grape::Extensions::Hash::ParamBuilder } }
|
87
|
+
it { is_expected.to be_a(Hash) }
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
65
91
|
describe '#headers' do
|
66
92
|
let(:options) do
|
67
93
|
default_options.merge(request_headers)
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
module Grape
|
3
5
|
module Util
|
@@ -192,7 +194,7 @@ module Grape
|
|
192
194
|
expect(cloned_obj.namespace_stackable[:namespace_stackable_thing]).to eq [:namespace_stackable_foo_bar]
|
193
195
|
|
194
196
|
subject.namespace_stackable[:namespace_stackable_thing] = :other_thing
|
195
|
-
expect(subject.namespace_stackable[:namespace_stackable_thing]).to eq [
|
197
|
+
expect(subject.namespace_stackable[:namespace_stackable_thing]).to eq %i[namespace_stackable_foo_bar other_thing]
|
196
198
|
expect(cloned_obj.namespace_stackable[:namespace_stackable_thing]).to eq [:namespace_stackable_foo_bar]
|
197
199
|
end
|
198
200
|
|
@@ -200,7 +202,7 @@ module Grape
|
|
200
202
|
expect(cloned_obj.namespace_reverse_stackable[:namespace_reverse_stackable_thing]).to eq [:namespace_reverse_stackable_foo_bar]
|
201
203
|
|
202
204
|
subject.namespace_reverse_stackable[:namespace_reverse_stackable_thing] = :other_thing
|
203
|
-
expect(subject.namespace_reverse_stackable[:namespace_reverse_stackable_thing]).to eq [
|
205
|
+
expect(subject.namespace_reverse_stackable[:namespace_reverse_stackable_thing]).to eq %i[other_thing namespace_reverse_stackable_foo_bar]
|
204
206
|
expect(cloned_obj.namespace_reverse_stackable[:namespace_reverse_stackable_thing]).to eq [:namespace_reverse_stackable_foo_bar]
|
205
207
|
end
|
206
208
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
module Grape
|
3
5
|
module Util
|
@@ -9,7 +11,7 @@ module Grape
|
|
9
11
|
it 'returns all keys' do
|
10
12
|
subject[:some_thing] = :foo_bar
|
11
13
|
subject[:some_thing_else] = :foo_bar
|
12
|
-
expect(subject.keys).to eq [
|
14
|
+
expect(subject.keys).to eq %i[some_thing some_thing_else].sort
|
13
15
|
end
|
14
16
|
|
15
17
|
it 'returns merged keys with parent' do
|
@@ -19,7 +21,7 @@ module Grape
|
|
19
21
|
subject[:some_thing] = :foo_bar
|
20
22
|
subject[:some_thing_more] = :foo_bar
|
21
23
|
|
22
|
-
expect(subject.keys).to eq [
|
24
|
+
expect(subject.keys).to eq %i[some_thing some_thing_else some_thing_more].sort
|
23
25
|
end
|
24
26
|
end
|
25
27
|
|
@@ -52,7 +54,7 @@ module Grape
|
|
52
54
|
it 'combines parent and actual values (actual first)' do
|
53
55
|
parent[:some_thing] = :foo
|
54
56
|
subject[:some_thing] = :foo_bar
|
55
|
-
expect(subject[:some_thing]).to eq [
|
57
|
+
expect(subject[:some_thing]).to eq %i[foo_bar foo]
|
56
58
|
end
|
57
59
|
|
58
60
|
it 'parent values are not changed' do
|
@@ -71,28 +73,28 @@ module Grape
|
|
71
73
|
it 'pushes further values' do
|
72
74
|
subject[:some_thing] = :foo
|
73
75
|
subject[:some_thing] = :bar
|
74
|
-
expect(subject[:some_thing]).to eq [
|
76
|
+
expect(subject[:some_thing]).to eq %i[foo bar]
|
75
77
|
end
|
76
78
|
|
77
79
|
it 'can handle array values' do
|
78
80
|
subject[:some_thing] = :foo
|
79
|
-
subject[:some_thing] = [
|
80
|
-
expect(subject[:some_thing]).to eq [:foo, [
|
81
|
+
subject[:some_thing] = %i[bar more]
|
82
|
+
expect(subject[:some_thing]).to eq [:foo, %i[bar more]]
|
81
83
|
|
82
|
-
parent[:some_thing_else] = [
|
83
|
-
subject[:some_thing_else] = [
|
84
|
+
parent[:some_thing_else] = %i[foo bar]
|
85
|
+
subject[:some_thing_else] = %i[some bar foo]
|
84
86
|
|
85
|
-
expect(subject[:some_thing_else]).to eq [[
|
87
|
+
expect(subject[:some_thing_else]).to eq [%i[some bar foo], %i[foo bar]]
|
86
88
|
end
|
87
89
|
end
|
88
90
|
|
89
91
|
describe '#to_hash' do
|
90
92
|
it 'returns a Hash representation' do
|
91
93
|
parent[:some_thing] = :foo
|
92
|
-
subject[:some_thing] = [
|
94
|
+
subject[:some_thing] = %i[bar more]
|
93
95
|
subject[:some_thing_more] = :foo_bar
|
94
96
|
expect(subject.to_hash).to eq(
|
95
|
-
some_thing: [[
|
97
|
+
some_thing: [%i[bar more], :foo],
|
96
98
|
some_thing_more: [:foo_bar]
|
97
99
|
)
|
98
100
|
end
|
@@ -106,12 +108,12 @@ module Grape
|
|
106
108
|
grandchild = described_class.new child
|
107
109
|
|
108
110
|
parent[:some_thing] = :foo
|
109
|
-
child[:some_thing] = [
|
111
|
+
child[:some_thing] = %i[bar more]
|
110
112
|
grandchild[:some_thing] = :grand_foo_bar
|
111
113
|
grandchild[:some_thing_more] = :foo_bar
|
112
114
|
|
113
115
|
expect(grandchild.clone.to_hash).to eq(
|
114
|
-
some_thing: [:grand_foo_bar, [
|
116
|
+
some_thing: [:grand_foo_bar, %i[bar more], :foo],
|
115
117
|
some_thing_more: [:foo_bar]
|
116
118
|
)
|
117
119
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
module Grape
|
3
5
|
module Util
|
@@ -6,10 +8,10 @@ module Grape
|
|
6
8
|
subject { StackableValues.new(parent) }
|
7
9
|
|
8
10
|
describe '#keys' do
|
9
|
-
it 'returns all
|
11
|
+
it 'returns all keys' do
|
10
12
|
subject[:some_thing] = :foo_bar
|
11
13
|
subject[:some_thing_else] = :foo_bar
|
12
|
-
expect(subject.keys).to eq [
|
14
|
+
expect(subject.keys).to eq %i[some_thing some_thing_else].sort
|
13
15
|
end
|
14
16
|
|
15
17
|
it 'returns merged keys with parent' do
|
@@ -19,7 +21,7 @@ module Grape
|
|
19
21
|
subject[:some_thing] = :foo_bar
|
20
22
|
subject[:some_thing_more] = :foo_bar
|
21
23
|
|
22
|
-
expect(subject.keys).to eq [
|
24
|
+
expect(subject.keys).to eq %i[some_thing some_thing_else some_thing_more].sort
|
23
25
|
end
|
24
26
|
end
|
25
27
|
|
@@ -52,7 +54,7 @@ module Grape
|
|
52
54
|
it 'combines parent and actual values' do
|
53
55
|
parent[:some_thing] = :foo
|
54
56
|
subject[:some_thing] = :foo_bar
|
55
|
-
expect(subject[:some_thing]).to eq [
|
57
|
+
expect(subject[:some_thing]).to eq %i[foo foo_bar]
|
56
58
|
end
|
57
59
|
|
58
60
|
it 'parent values are not changed' do
|
@@ -71,27 +73,27 @@ module Grape
|
|
71
73
|
it 'pushes further values' do
|
72
74
|
subject[:some_thing] = :foo
|
73
75
|
subject[:some_thing] = :bar
|
74
|
-
expect(subject[:some_thing]).to eq [
|
76
|
+
expect(subject[:some_thing]).to eq %i[foo bar]
|
75
77
|
end
|
76
78
|
|
77
79
|
it 'can handle array values' do
|
78
80
|
subject[:some_thing] = :foo
|
79
|
-
subject[:some_thing] = [
|
80
|
-
expect(subject[:some_thing]).to eq [:foo, [
|
81
|
+
subject[:some_thing] = %i[bar more]
|
82
|
+
expect(subject[:some_thing]).to eq [:foo, %i[bar more]]
|
81
83
|
|
82
|
-
parent[:some_thing_else] = [
|
83
|
-
subject[:some_thing_else] = [
|
84
|
+
parent[:some_thing_else] = %i[foo bar]
|
85
|
+
subject[:some_thing_else] = %i[some bar foo]
|
84
86
|
|
85
|
-
expect(subject[:some_thing_else]).to eq [[
|
87
|
+
expect(subject[:some_thing_else]).to eq [%i[foo bar], %i[some bar foo]]
|
86
88
|
end
|
87
89
|
end
|
88
90
|
|
89
91
|
describe '#to_hash' do
|
90
92
|
it 'returns a Hash representation' do
|
91
93
|
parent[:some_thing] = :foo
|
92
|
-
subject[:some_thing] = [
|
94
|
+
subject[:some_thing] = %i[bar more]
|
93
95
|
subject[:some_thing_more] = :foo_bar
|
94
|
-
expect(subject.to_hash).to eq(some_thing: [:foo, [
|
96
|
+
expect(subject.to_hash).to eq(some_thing: [:foo, %i[bar more]], some_thing_more: [:foo_bar])
|
95
97
|
end
|
96
98
|
end
|
97
99
|
|
@@ -103,11 +105,11 @@ module Grape
|
|
103
105
|
grandchild = StackableValues.new child
|
104
106
|
|
105
107
|
parent[:some_thing] = :foo
|
106
|
-
child[:some_thing] = [
|
108
|
+
child[:some_thing] = %i[bar more]
|
107
109
|
grandchild[:some_thing] = :grand_foo_bar
|
108
110
|
grandchild[:some_thing_more] = :foo_bar
|
109
111
|
|
110
|
-
expect(grandchild.clone.to_hash).to eq(some_thing: [:foo, [
|
112
|
+
expect(grandchild.clone.to_hash).to eq(some_thing: [:foo, %i[bar more], :grand_foo_bar], some_thing_more: [:foo_bar])
|
111
113
|
end
|
112
114
|
|
113
115
|
context 'complex (i.e. not primitive) data types (ex. middleware, please see bug #930)' do
|
@@ -1,10 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
module Grape
|
3
5
|
module Util
|
4
6
|
describe 'StrictHashConfiguration' do
|
5
7
|
subject do
|
6
8
|
Class.new do
|
7
|
-
include Grape::Util::StrictHashConfiguration.module(:config1, :config2, config3: [:config4], config5: [config6: [
|
9
|
+
include Grape::Util::StrictHashConfiguration.module(:config1, :config2, config3: [:config4], config5: [config6: %i[config7 config8]])
|
8
10
|
end
|
9
11
|
end
|
10
12
|
|
@@ -1,12 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe 'Validator with instance variables' do
|
4
6
|
let(:validator_type) do
|
5
7
|
Class.new(Grape::Validations::Base) do
|
6
8
|
def validate_param!(_attr_name, _params)
|
7
|
-
if @instance_variable
|
8
|
-
raise Grape::Exceptions::Validation
|
9
|
-
|
9
|
+
if instance_variable_defined?(:@instance_variable) && @instance_variable
|
10
|
+
raise Grape::Exceptions::Validation.new(params: ['params'],
|
11
|
+
message: 'This should never happen')
|
10
12
|
end
|
11
13
|
@instance_variable = true
|
12
14
|
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe Grape::Validations::MultipleAttributesIterator do
|
6
|
+
describe '#each' do
|
7
|
+
subject(:iterator) { described_class.new(validator, scope, params) }
|
8
|
+
let(:scope) { Grape::Validations::ParamsScope.new(api: Class.new(Grape::API)) }
|
9
|
+
let(:validator) { double(attrs: %i[first second third]) }
|
10
|
+
|
11
|
+
context 'when params is a hash' do
|
12
|
+
let(:params) do
|
13
|
+
{ first: 'string', second: 'string' }
|
14
|
+
end
|
15
|
+
|
16
|
+
it 'yields the whole params hash and the skipped flag without the list of attrs' do
|
17
|
+
expect { |b| iterator.each(&b) }.to yield_with_args(params, false)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
context 'when params is an array' do
|
22
|
+
let(:params) do
|
23
|
+
[{ first: 'string1', second: 'string1' }, { first: 'string2', second: 'string2' }]
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'yields each element of the array without the list of attrs' do
|
27
|
+
expect { |b| iterator.each(&b) }.to yield_successive_args([params[0], false], [params[1], false])
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
context 'when params is empty optional placeholder' do
|
32
|
+
let(:params) do
|
33
|
+
[Grape::DSL::Parameters::EmptyOptionalValue, { first: 'string2', second: 'string2' }]
|
34
|
+
end
|
35
|
+
|
36
|
+
it 'yields each element of the array without the list of attrs' do
|
37
|
+
expect { |b| iterator.each(&b) }.to yield_successive_args([Grape::DSL::Parameters::EmptyOptionalValue, true], [params[1], false])
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|