@@ -7,12 +7,12 @@ class << RSpec::OpenAPI::RecordBuilder = Object.new
7
7
# @param [RSpec::ExampleGroups::*] context
8
8
# @param [RSpec::Core::Example] example
9
9
# @return [RSpec::OpenAPI::Record,nil]
10
- def build ( context , example :)
11
- request , response = extract_request_response ( context )
10
+ def build ( context , example :, extractor : )
11
+ request , response = extractor . request_response ( context )
12
12
return if request . nil?
13
13
14
14
path , summary , tags , operation_id , required_request_params , raw_path_params , description , security , deprecated =
15
- extract_request_attributes ( request , example )
15
+ extractor . request_attributes ( request , example )
16
16
17
17
return if RSpec ::OpenAPI . ignored_paths . any? { |ignored_path | path . match? ( ignored_path ) }
18
18
@@ -69,71 +69,6 @@ def extract_headers(request, response)
69
69
[ request_headers , response_headers ]
70
70
end
71
71
72
- def extract_request_attributes ( request , example )
73
- metadata = example . metadata [ :openapi ] || { }
74
- summary = metadata [ :summary ] || RSpec ::OpenAPI . summary_builder . call ( example )
75
- tags = metadata [ :tags ] || RSpec ::OpenAPI . tags_builder . call ( example )
76
- operation_id = metadata [ :operation_id ]
77
- required_request_params = metadata [ :required_request_params ] || [ ]
78
- security = metadata [ :security ]
79
- description = metadata [ :description ] || RSpec ::OpenAPI . description_builder . call ( example )
80
- deprecated = metadata [ :deprecated ]
81
- raw_path_params = request . path_parameters
82
- path = request . path
83
- if rails?
84
- # Reverse the destructive modification by Rails https://github.com/rails/rails/blob/v6.0.3.4/actionpack/lib/action_dispatch/journey/router.rb#L33-L41
85
- fixed_request = request . dup
86
- fixed_request . path_info = File . join ( request . script_name , request . path_info ) if request . script_name . present?
87
-
88
- route , path = find_rails_route ( fixed_request )
89
- raise "No route matched for #{ fixed_request . request_method } #{ fixed_request . path_info } " if route . nil?
90
-
91
- path = path . delete_suffix ( '(.:format)' )
92
- summary ||= route . requirements [ :action ]
93
- tags ||= [ route . requirements [ :controller ] &.classify ] . compact
94
- # :controller and :action always exist. :format is added when routes is configured as such.
95
- # TODO: Use .except(:controller, :action, :format) when we drop support for Ruby 2.x
96
- raw_path_params = raw_path_params . slice ( *( raw_path_params . keys - RSpec ::OpenAPI . ignored_path_params ) )
97
- end
98
- summary ||= "#{ request . method } #{ path } "
99
- [ path , summary , tags , operation_id , required_request_params , raw_path_params , description , security , deprecated ]
100
- end
101
-
102
- def extract_request_response ( context )
103
- if rack_test? ( context )
104
- request = ActionDispatch ::Request . new ( context . last_request . env )
105
- request . body . rewind if request . body . respond_to? ( :rewind )
106
- response = ActionDispatch ::TestResponse . new ( *context . last_response . to_a )
107
- else
108
- request = context . request
109
- response = context . response
110
- end
111
- [ request , response ]
112
- end
113
-
114
- def rails?
115
- defined? ( Rails ) && Rails . respond_to? ( :application ) && Rails . application
116
- end
117
-
118
- def rack_test? ( context )
119
- defined? ( Rack ::Test ::Methods ) && context . class < Rack ::Test ::Methods
120
- end
121
-
122
- # @param [ActionDispatch::Request] request
123
- def find_rails_route ( request , app : Rails . application , path_prefix : '' )
124
- app . routes . router . recognize ( request ) do |route |
125
- path = route . path . spec . to_s
126
- if route . app . matches? ( request )
127
- if route . app . engine?
128
- route , path = find_rails_route ( request , app : route . app . app , path_prefix : path )
129
- next if route . nil?
130
- end
131
- return [ route , path_prefix + path ]
132
- end
133
- end
134
- nil
135
- end
136
-
137
72
# workaround to get real request parameters
138
73
# because ActionController::ParamsWrapper overwrites request_parameters
139
74
def raw_request_params ( request )
0 commit comments