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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
require 'spec_helper'
describe Typhoeus::Request::Before do
let(:request) { Typhoeus::Request.new("") }
let(:receive_counter) { double :mark => :twain }
describe "#queue" do
context "when before" do
context "when one" do
it "executes" do
Typhoeus.before { |r| receive_counter.mark }
expect(receive_counter).to receive(:mark)
request.run
end
context "when true" do
it "calls super" do
Typhoeus.before { true }
expect(Typhoeus::Expectation).to receive(:response_for)
request.run
end
end
context "when false" do
it "doesn't call super" do
Typhoeus.before { false }
expect(Typhoeus::Expectation).to receive(:response_for).never
request.run
end
it "returns response" do
Typhoeus.before { |r| r.response = 1; false }
expect(request.run).to be(1)
end
end
context "when a response" do
it "doesn't call super" do
Typhoeus.before { Typhoeus::Response.new }
expect(Typhoeus::Expectation).to receive(:response_for).never
request.run
end
it "returns response" do
Typhoeus.before { |r| r.response = Typhoeus::Response.new }
expect(request.run).to be_a(Typhoeus::Response)
end
end
end
context "when multi" do
context "when all true" do
before { 3.times { Typhoeus.before { |r| receive_counter.mark } } }
it "calls super" do
expect(Typhoeus::Expectation).to receive(:response_for)
request.run
end
it "executes all" do
expect(receive_counter).to receive(:mark).exactly(3)
request.run
end
end
context "when middle false" do
before do
Typhoeus.before { |r| receive_counter.mark }
Typhoeus.before { |r| receive_counter.mark; nil }
Typhoeus.before { |r| receive_counter.mark }
end
it "doesn't call super" do
expect(Typhoeus::Expectation).to receive(:response_for).never
request.run
end
it "executes only two" do
expect(receive_counter).to receive(:mark).exactly(2).times
request.run
end
end
end
end
context "when no before" do
it "calls super" do
expect(Typhoeus::Expectation).to receive(:response_for)
request.run
end
end
end
end
|