VCR
1.0.0
1.0.0
  • Initial page
  • record_modes
    • :none
    • :new_episodes
    • :all
    • :once
  • test_frameworks
    • Usage with Test::Unit
    • Usage with Cucumber
    • Usage with RSpec metadata
  • request_matching
    • Matching on Headers
    • Matching on Body
    • Matching on Method
    • URI without param(s)
    • Identical requests are replayed in sequence
    • Matching on Body
    • Playback repeats
    • Matching on URI
    • Matching on Host
    • Matching on Path
    • Matching on Query string
    • Register and use a custom matcher
  • cassettes
    • exclusive cassette
    • Update content_length header
    • Error for HTTP request made when no cassette is in use
    • Naming
    • Allow Unused HTTP Interactions
    • Freezing Time
    • Decode compressed response
    • Dynamic ERB cassettes
    • Automatic Re-recording
    • Cassette format
  • configuration
    • hook_into
    • cassette_library_dir
    • Filter sensitive data
    • Ignore Request
    • Debug Logging
    • default_cassette_options
    • query_parser
    • uri_parser
    • Allow HTTP connections when no cassette
    • Preserve Exact Body Bytes
  • http_libraries
    • EM HTTP Request
    • Net::HTTP
  • hooks
    • before_playback hook
    • after_http_request hook
    • before_http_request hook
    • before_record hook
    • around_http_request hook
  • middleware
    • Faraday middleware
    • Rack
Powered by GitBook
On this page
  • log all requests and responses using after_http_request hook
  • Examples

Was this helpful?

  1. hooks

after_http_request hook

The after_http_request hook gets called with each request and response just after a request has completed. It can be used for many things:

  • globally logging requests and responses

  • ejecting the current cassette (i.e. if you inserted it in a before_http_request hook)

    You can also pass one or more "filters" to after_http_request, to make the hook only be called for some requests. Any object that responds to #to_proc can be a filter. Here are some simple examples:

  • :real? -- only real requests

  • :stubbed? -- only stubbed requests

  • :ignored? -- only ignored requests

  • :recordable? -- only requests that are being recorded

  • lambda { |req| URI(req.uri).host == 'amazon.com' } -- only requests to amazon.com.

log all requests and responses using after_http_request hook

Given a file named "after_http_request.rb" with:

include_http_adapter_for("<http_lib>")

$server = start_sinatra_app do
  get('/foo') { "Hello World (foo)" }
  get('/bar') { "Hello World (bar)" }
end

require 'vcr'

VCR.configure do |c|
  <configuration>
  c.cassette_library_dir = 'cassettes'
  c.ignore_localhost = true
  c.after_http_request(:ignored?, lambda { |req| req.uri =~ /foo/ }) do |request, response|
    uri = request.uri.sub(/:\d+/, ":7777")
    puts "Response for #{request.method} #{uri}: #{response.body}"
  end
end

make_http_request(:get, "http://localhost:#{$server.port}/foo")
make_http_request(:get, "http://localhost:#{$server.port}/bar")

When I run ruby after_http_request.rb

But the output should not contain "bar".

Examples

configuration

http_lib

c.hook_into :webmock

net/http

c.hook_into :webmock

httpclient

c.hook_into :webmock

curb

c.hook_into :typhoeus

typhoeus

c.hook_into :excon

excon

c.hook_into :faraday

faraday (w/ net_http)

Previousbefore_playback hookNextbefore_http_request hook

Last updated 5 years ago

Was this helpful?

Then the output should contain "Response for get : Hello World (foo)"

http://localhost:7777/foo