spec/monkey_patches.rb in vcr-1.11.3 vs spec/monkey_patches.rb in vcr-2.0.0.beta1
- old
+ new
@@ -1,28 +1,38 @@
+require 'typhoeus' if RUBY_INTERPRETER == :mri
+
module MonkeyPatches
extend self
NET_HTTP_SINGLETON = class << Net::HTTP; self; end
- MONKEY_PATCHES = [
+ NET_HTTP_MONKEY_PATCHES = [
[Net::BufferedIO, :initialize],
[Net::HTTP, :request],
[Net::HTTP, :connect],
[NET_HTTP_SINGLETON, :socket_type]
]
+ ALL_MONKEY_PATCHES = NET_HTTP_MONKEY_PATCHES.dup
+
+ ALL_MONKEY_PATCHES << [Typhoeus::Hydra::Stubbing::SharedMethods, :find_stub_from_request] if RUBY_INTERPRETER == :mri
+
def enable!(scope)
case scope
when :fakeweb
- realias_all :with_fakeweb
- enable!(:vcr) # fakeweb adapter relies upon VCR's Net::HTTP monkey patch
+ realias_net_http :with_fakeweb
+ enable!(:vcr) # fakeweb hook relies upon VCR's Net::HTTP monkey patch
when :webmock
+ ::WebMock.reset!
::WebMock::HttpLibAdapters::NetHttpAdapter.enable!
- ::WebMock::HttpLibAdapters::TyphoeusAdapter.enable! unless RUBY_INTERPRETER == :jruby
+ ::WebMock::HttpLibAdapters::TyphoeusAdapter.enable! if RUBY_INTERPRETER == :mri
$original_webmock_callbacks.each do |cb|
::WebMock::CallbackRegistry.add_callback(cb[:options], cb[:block])
end
+ when :typhoeus
+ Typhoeus::Hydra.global_hooks = $original_typhoeus_hooks
+ realias Typhoeus::Hydra::Stubbing::SharedMethods, :find_stub_from_request, :with_vcr
when :vcr
realias Net::HTTP, :request, :with_vcr
else raise ArgumentError.new("Unexpected scope: #{scope}")
end
end
@@ -32,16 +42,21 @@
if defined?(::WebMock)
::WebMock::HttpLibAdapters::NetHttpAdapter.disable!
::WebMock::HttpLibAdapters::TyphoeusAdapter.disable! unless RUBY_INTERPRETER == :jruby
::WebMock::CallbackRegistry.reset
+ ::WebMock::StubRegistry.instance.request_stubs = []
end
+
+ if defined?(::Typhoeus)
+ Typhoeus::Hydra.clear_global_hooks
+ end
end
def init
# capture the monkey patched definitions so we can realias to them in the future
- MONKEY_PATCHES.each do |mp|
+ ALL_MONKEY_PATCHES.each do |mp|
capture_method_definition(mp.first, mp.last, false)
end
end
private
@@ -66,11 +81,11 @@
end
end
# capture the original method definitions before the monkey patches have been defined
# so we can realias to the originals in the future
- MONKEY_PATCHES.each do |mp|
+ ALL_MONKEY_PATCHES.each do |mp|
capture_method_definition(mp.first, mp.last, true)
end
def realias(klass, method, alias_extension)
klass.class_eval do
@@ -79,45 +94,59 @@
$VERBOSE = old_verbose
end
end
def realias_all(alias_extension)
- MONKEY_PATCHES.each do |mp|
+ ALL_MONKEY_PATCHES.each do |mp|
realias mp.first, mp.last, alias_extension
end
end
+
+ def realias_net_http(alias_extension)
+ NET_HTTP_MONKEY_PATCHES.each do |mp|
+ realias mp.first, mp.last, alias_extension
+ end
+ end
end
# Require all the HTTP libraries--these must be required before WebMock
# for WebMock to work with them.
require 'httpclient'
if RUBY_INTERPRETER == :mri
require 'patron'
require 'em-http-request'
require 'curb'
- require 'typhoeus'
+
+ require 'vcr/library_hooks/typhoeus'
+ $original_typhoeus_hooks = Typhoeus::Hydra.global_hooks.dup
+
+ # define an alias that we can re-alias to in the future
+ Typhoeus::Hydra::Stubbing::SharedMethods.class_eval do
+ alias find_stub_from_request_with_vcr find_stub_from_request
+ end
end
-require 'vcr/http_stubbing_adapters/fakeweb'
+require 'vcr/library_hooks/fakeweb'
# All Net::HTTP monkey patches have now been loaded, so capture the
# appropriate method definitions so we can disable them later.
MonkeyPatches.init
# Disable FakeWeb/VCR Net::HTTP patches before WebMock
# subclasses Net::HTTP and inherits them...
MonkeyPatches.disable_all!
-require 'vcr/http_stubbing_adapters/webmock'
+require 'vcr/library_hooks/webmock'
$original_webmock_callbacks = ::WebMock::CallbackRegistry.callbacks
# disable all by default; we'll enable specific ones when we need them
MonkeyPatches.disable_all!
RSpec.configure do |config|
- [:fakeweb, :webmock, :vcr].each do |scope|
+ [:fakeweb, :webmock, :vcr, :typhoeus].each do |scope|
config.before(:all, :with_monkey_patches => scope) { MonkeyPatches.enable!(scope) }
config.after(:all, :with_monkey_patches => scope) { MonkeyPatches.disable_all! }
end
end
+require 'vcr/library_hooks/excon'