committee 5.0.0.beta1 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/committee/schema_validator/hyper_schema/response_validator.rb +7 -1
- data/lib/committee/schema_validator/open_api_3/operation_wrapper.rb +4 -0
- data/lib/committee/schema_validator/open_api_3/request_validator.rb +9 -0
- data/lib/committee/schema_validator.rb +1 -1
- data/lib/committee/version.rb +1 -1
- data/test/schema_validator/open_api_3/request_validator_test.rb +15 -1
- data/test/test_helper.rb +4 -2
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 284c8c1198255435e959dcee2b92cb25c3d80dd5fe6d4622b8077a69525712ed
|
4
|
+
data.tar.gz: b306ec0ad5e628d9cc7b6382781c4b710c99bedb127a7000edadf9d0e0b8fa84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 687d9a47d2a17786313bde939339d464a8d775795458b09ad7d7784bfa337f848a9ffabe240e9f39173c4466589c026f64a8eede768e7abfff4b01b2672339f5
|
7
|
+
data.tar.gz: 4ee7781341de9ebafae28d01d98c0f72d54067c425f3ee10b221c4eb88da85e79b36853bbda4818b20348177f8d975103cc5be694ff7e8252a6634a856853b7c
|
@@ -48,9 +48,15 @@ module Committee
|
|
48
48
|
private
|
49
49
|
|
50
50
|
def response_media_type(response)
|
51
|
-
response.
|
51
|
+
if response.respond_to?(:media_type)
|
52
|
+
response.media_type.to_s
|
53
|
+
else
|
54
|
+
# for rack compatibility. In rack v 1.5.0, Rack::Response doesn't have media_type
|
55
|
+
response.content_type.to_s.split(";").first.to_s
|
56
|
+
end
|
52
57
|
end
|
53
58
|
|
59
|
+
|
54
60
|
def check_content_type!(response)
|
55
61
|
if @link.media_type
|
56
62
|
unless Rack::Mime.match?(response_media_type(response), @link.media_type)
|
@@ -52,6 +52,10 @@ module Committee
|
|
52
52
|
ret
|
53
53
|
end
|
54
54
|
|
55
|
+
def optional_body?
|
56
|
+
!request_operation.operation_object&.request_body&.required
|
57
|
+
end
|
58
|
+
|
55
59
|
def valid_request_content_type?(content_type)
|
56
60
|
if (request_body = request_operation.operation_object&.request_body)
|
57
61
|
!request_body.select_media_type(content_type).nil?
|
@@ -24,6 +24,7 @@ module Committee
|
|
24
24
|
# support post, put, patch only
|
25
25
|
return true unless request.post? || request.put? || request.patch?
|
26
26
|
return true if @operation_object.valid_request_content_type?(content_type)
|
27
|
+
return true if @operation_object.optional_body? && empty_request?(request)
|
27
28
|
|
28
29
|
message = if valid_content_types.size > 1
|
29
30
|
types = valid_content_types.map {|x| %{"#{x}"} }.join(', ')
|
@@ -37,6 +38,14 @@ module Committee
|
|
37
38
|
def valid_content_types
|
38
39
|
@operation_object&.request_content_types
|
39
40
|
end
|
41
|
+
|
42
|
+
def empty_request?(request)
|
43
|
+
return true if !request.body
|
44
|
+
|
45
|
+
data = request.body.read
|
46
|
+
request.body.rewind
|
47
|
+
data.empty?
|
48
|
+
end
|
40
49
|
end
|
41
50
|
end
|
42
51
|
end
|
data/lib/committee/version.rb
CHANGED
@@ -71,6 +71,13 @@ describe Committee::SchemaValidator::OpenAPI3::RequestValidator do
|
|
71
71
|
assert_equal 200, last_response.status
|
72
72
|
end
|
73
73
|
|
74
|
+
it "skips content_type check with an empty body" do
|
75
|
+
@app = new_rack_app(check_content_type: true, schema: open_api_3_schema)
|
76
|
+
header "Content-Type", "application/x-www-form-urlencoded"
|
77
|
+
patch "/validate_empty_optional_body"
|
78
|
+
assert_equal 200, last_response.status
|
79
|
+
end
|
80
|
+
|
74
81
|
it "does not mix up parameters and requestBody" do
|
75
82
|
@app = new_rack_app(check_content_type: true, schema: open_api_3_schema)
|
76
83
|
params = {
|
@@ -81,10 +88,17 @@ describe Committee::SchemaValidator::OpenAPI3::RequestValidator do
|
|
81
88
|
assert_equal 200, last_response.status
|
82
89
|
end
|
83
90
|
|
91
|
+
it "error because content_type check with body" do
|
92
|
+
@app = new_rack_app(check_content_type: true, schema: open_api_3_schema)
|
93
|
+
header "Content-Type", "application/x-www-form-urlencoded"
|
94
|
+
patch "/validate_empty_optional_body", "{}"
|
95
|
+
assert_equal 400, last_response.status
|
96
|
+
end
|
97
|
+
|
84
98
|
def new_rack_app(options = {})
|
85
99
|
# TODO: delete when 5.0.0 released because default value changed
|
86
100
|
options[:parse_response_by_content_type] = true if options[:parse_response_by_content_type] == nil
|
87
|
-
|
101
|
+
|
88
102
|
Rack::Builder.new {
|
89
103
|
use Committee::Middleware::RequestValidation, options
|
90
104
|
run lambda { |_|
|
data/test/test_helper.rb
CHANGED
@@ -11,8 +11,10 @@ SimpleCov.start do
|
|
11
11
|
add_filter "/test/"
|
12
12
|
|
13
13
|
# This library has a pretty modest number of lines, so let's try to stick
|
14
|
-
# to a
|
15
|
-
|
14
|
+
# to a 99% coverage target for a while and see what happens.
|
15
|
+
# We can't use 100% because old rack version doesn't support media_type and it's not testable :(
|
16
|
+
# https://github.com/interagent/committee/pull/360/files#diff-ce1125b6594690a88a70dbe2869f7fcfa2962c2bca80751f3720888920e2dfabR54
|
17
|
+
minimum_coverage 99
|
16
18
|
end
|
17
19
|
|
18
20
|
require "minitest"
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: committee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.0
|
4
|
+
version: 5.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandur
|
8
8
|
- geemus (Wesley Beary)
|
9
9
|
- ota42y
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2023-01-
|
13
|
+
date: 2023-01-28 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: json_schema
|
@@ -214,7 +214,7 @@ dependencies:
|
|
214
214
|
- - ">="
|
215
215
|
- !ruby/object:Gem::Version
|
216
216
|
version: '0'
|
217
|
-
description:
|
217
|
+
description:
|
218
218
|
email:
|
219
219
|
- brandur@mutelight.org
|
220
220
|
- geemus+github@gmail.com
|
@@ -306,7 +306,7 @@ homepage: https://github.com/interagent/committee
|
|
306
306
|
licenses:
|
307
307
|
- MIT
|
308
308
|
metadata: {}
|
309
|
-
post_install_message:
|
309
|
+
post_install_message:
|
310
310
|
rdoc_options: []
|
311
311
|
require_paths:
|
312
312
|
- lib
|
@@ -317,12 +317,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
317
317
|
version: 2.6.0
|
318
318
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
319
319
|
requirements:
|
320
|
-
- - "
|
320
|
+
- - ">="
|
321
321
|
- !ruby/object:Gem::Version
|
322
|
-
version:
|
322
|
+
version: '0'
|
323
323
|
requirements: []
|
324
|
-
rubygems_version: 3.
|
325
|
-
signing_key:
|
324
|
+
rubygems_version: 3.3.3
|
325
|
+
signing_key:
|
326
326
|
specification_version: 4
|
327
327
|
summary: A collection of Rack middleware to support JSON Schema.
|
328
328
|
test_files: []
|