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 37 38 39 40 41 42 43 44 45 46 47 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
|
require 'spec_helper'
describe Typhoeus::Request::BlockConnection do
let(:base_url) { "localhost:3001" }
let(:request) { Typhoeus::Request.new(base_url, {:method => :get}) }
describe "run" do
context "when blocked" do
before { request.block_connection = true }
it "raises" do
expect{ request.run }.to raise_error(Typhoeus::Errors::NoStub)
end
end
context "when not blocked" do
before { request.block_connection = false }
it "doesn't raise" do
expect{ request.run }.to_not raise_error
end
end
end
describe "#blocked?" do
context "when local block_connection" do
context "when true" do
before { request.block_connection = true }
it "returns true" do
expect(request.blocked?).to be_truthy
end
end
context "when false" do
before { request.block_connection = false }
it "returns false" do
expect(request.blocked?).to be_falsey
end
end
end
context "when global block_connection" do
context "when true" do
before { Typhoeus::Config.block_connection = true }
after { Typhoeus::Config.block_connection = false }
it "returns true" do
expect(request.blocked?).to be_truthy
end
end
context "when false" do
before { Typhoeus::Config.block_connection = false }
it "returns false" do
expect(request.blocked?).to be_falsey
end
end
end
context "when global and local block_connection" do
before do
Typhoeus::Config.block_connection = true
request.block_connection = false
end
after { Typhoeus::Config.block_connection = false }
it "takes local" do
expect(request.blocked?).to be_falsey
end
end
end
end
|