-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema_helper.rb
102 lines (81 loc) · 3.59 KB
/
schema_helper.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Hackery from:
# https://github.com/interagent/committee/blob/master/lib/committee/test/methods.rb
# to allow us to validate against the 2 different API schemas.
module SchemaHelper
class CommitteeRequestObject
delegate_missing_to :@request
def initialize(request)
@request = request
end
def path
# Chomp the `.json_api` because I can't see an easy way of making the test request JSON-API via the `Accept` header
# and committee won't match the `<something>.json_api` paths against the spec.
URI.parse(@request.original_fullpath).path.chomp('.json_api')
end
alias_method :path_info, :path
def request_method
@request.env['action_dispatch.original_request_method'] || @request.request_method
end
end
def assert_valid_json_api_response(expected_status = 200)
assert_valid_json_response(current_schema_validator, current_committee_options, expected_status)
end
def assert_valid_legacy_json_response(expected_status = 200)
assert_valid_json_response(legacy_schema_validator, legacy_committee_options, expected_status)
end
def assert_valid_json_response(validator, options, expected_status = nil)
unless validator.link_exist?
response = "`#{committee_request_object.request_method} #{committee_request_object.path_info}` undefined in schema (prefix: #{options[:prefix].inspect})."
raise Committee::InvalidResponse.new(response)
end
status, headers, body = committee_response_data
if expected_status.nil?
Committee.warn_deprecated('Pass expected response status code to check it against the corresponding schema explicitly.')
elsif expected_status != status
response = "Expected `#{expected_status}` status code, but it was `#{status}`."
raise Committee::InvalidResponse.new(response)
end
valid = Committee::Middleware::ResponseValidation.validate?(status, options.fetch(:validate_success_only, false))
validator.response_validate(status, headers, [body], true) if valid
end
def committee_request_object
@request_object ||= CommitteeRequestObject.new(@request)
end
def committee_response_data
[@response.status, @response.headers, @response.body]
end
def current_committee_options
@current_committee_options ||= {
schema: Committee::Drivers::load_from_file('public/api/definitions/tess.yml',
parser_options: { strict_reference_validation: true }),
query_hash_key: 'rack.request.query_hash',
parse_response_by_content_type: false
}
end
def legacy_committee_options
@legacy_committee_options ||= {
schema: Committee::Drivers::load_from_file('public/api/definitions/tess_legacy.yml',
parser_options: { strict_reference_validation: true }),
query_hash_key: 'rack.request.query_hash',
parse_response_by_content_type: false
}
end
def current_schema
@current_schema ||= Committee::Middleware::Base.get_schema(current_committee_options)
end
def legacy_schema
@legacy_schema ||= Committee::Middleware::Base.get_schema(legacy_committee_options)
end
def current_router
@current_router ||= current_schema.build_router(current_committee_options)
end
def legacy_router
@legacy_router ||= legacy_schema.build_router(legacy_committee_options)
end
def current_schema_validator
@current_schema_validator ||= current_router.build_schema_validator(committee_request_object)
end
def legacy_schema_validator
@legacy_schema_validator ||= legacy_router.build_schema_validator(committee_request_object)
end
end