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
|
require 'spec_helper'
describe "Typhoeus 0.4 hook", :with_monkey_patches => :typhoeus_0_4 do
after(:each) do
::Typhoeus::Hydra.clear_stubs
end
def disable_real_connections
::Typhoeus::Hydra.allow_net_connect = false
::Typhoeus::Hydra::NetConnectNotAllowedError
end
def enable_real_connections
::Typhoeus::Hydra.allow_net_connect = true
end
def directly_stub_request(method, url, response_body)
response = ::Typhoeus::Response.new(:code => 200, :body => response_body)
::Typhoeus::Hydra.stub(method, url).and_return(response)
end
it_behaves_like 'a hook into an HTTP library', :typhoeus, 'typhoeus 0.4'
describe "VCR.configuration.after_library_hooks_loaded hook" do
it 'disables the webmock typhoeus adapter so it does not conflict with our typhoeus hook' do
expect(::WebMock::HttpLibAdapters::TyphoeusAdapter).to receive(:disable!)
$typhoeus_after_loaded_hook.conditionally_invoke
end
it "warns about Typhoeus 0.4 deprecation" do
expect(::Kernel).to receive(:warn).with("WARNING: VCR's Typhoeus 0.4 integration is deprecated and will be removed in VCR 3.0.")
$typhoeus_0_4_after_loaded_hook.conditionally_invoke
end
end
end if RUBY_INTERPRETER == :mri && ::Typhoeus::VERSION.to_f < 0.5
|