Module: RSpecApi::DSL::Requests
- Included in:
- Actions
- Defined in:
- lib/rspec-api/dsl/requests.rb
Instance Method Summary collapse
- #my_collection_request(query_params = {}, &block) ⇒ Object
- #my_real_request(query = {}, &block) ⇒ Object
- #request_with(query_params = {}, &block) ⇒ Object
-
#respond_with(*args) ⇒ Object
NOT THE TRUE ONE.
- #single_request(options = {}, &block) ⇒ Object
Instance Method Details
#my_collection_request(query_params = {}, &block) ⇒ Object
6 7 8 9 10 |
# File 'lib/rspec-api/dsl/requests.rb', line 6 def my_collection_request(query_params = {}, &block) @expectations.each do || single_request(.deep_merge(body_expect: {collection: true}, query_params: query_params), &block) end end |
#my_real_request(query = {}, &block) ⇒ Object
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 |
# File 'lib/rspec-api/dsl/requests.rb', line 48 def my_real_request(query = {}, &block) query[:before].call query.fetch(:query_params, {}).each do |k, v| query[:query_params][k] = v.is_a?(Proc) ? v.call : v if query[:route].match "/:#{k}" query[:route] = query[:route].gsub "/:#{k}", "/#{query[:query_params][k]}" query[:route_params][k] = query[:query_params].delete k end end describe "with #{query[:route].is_a?(Proc) ? query[:route].call : query[:route]}#{" and #{query[:query_params]}" if query[:query_params].any?}" do extend RSpecApi::DSL::Responses extend RSpecApi::DSL::HttpClient send_request query[:action], (query[:route].is_a?(Proc) ? query[:route].call : query[:route]), query[:query_params], query[:authorization] @response = last_response @status_expect = query.fetch :status_expect, {} @headers_expect = query.fetch :headers_expect, {} @body_expect = query.fetch :body_expect, {} @route_params = query.fetch :route_params, {} if @body_expect.fetch(:filter, {})[:value].is_a?(Hash) && @body_expect.fetch(:filter, {})[:value][:proc] @body_expect[:filter][:value] = @body_expect[:filter][:value][:value].call end instance_exec &block end query[:after].call end |
#request_with(query_params = {}, &block) ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/rspec-api/dsl/requests.rb', line 18 def request_with(query_params = {}, &block) if @collection my_collection_request(query_params, &block) else single_request(query_params: query_params, &block) end end |
#respond_with(*args) ⇒ Object
NOT THE TRUE ONE
12 13 14 15 16 |
# File 'lib/rspec-api/dsl/requests.rb', line 12 def respond_with(*args) # NOT THE TRUE ONE request_with do respond_with(*args) end end |
#single_request(options = {}, &block) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/rspec-api/dsl/requests.rb', line 26 def single_request( = {}, &block) query_params = .fetch(:query_params, {}) status_expect = .fetch(:status_expect, {status: 200}) headers_expect = .fetch(:headers_expect, {type: :json}) body_expect = .fetch(:body_expect, {collection: false}) # Or maybe nothing body_expect = body_expect.merge(attributes: @attributes) if @attributes before_fun = .fetch(:before, -> {}) after_fun = .fetch(:after, -> {}) query = {authorization: @authorization, route_params: {}, action: @action, route: @route, query_params: query_params, status_expect: status_expect, headers_expect: headers_expect, body_expect: body_expect, before: before_fun, after: after_fun} query_params.each do |k, v| if v.is_a?(Hash) && v[:proc] && v[:value] # so we avoid getting the hash of the callback called :proc query[:query_params][k] = v[:value] if v[:proc] == :existing query = query.merge before: create_fixture, after: destroy_fixture end end end my_real_request(query, &block) end |