require "spec_helper" describe Faye::Transport do let :client do client = mock("client") client.stub(:endpoint).and_return("http://example.com/") client end describe :get do before do Faye::Transport::Local.stub(:usable?).and_return(false) Faye::Transport::Http.stub(:usable?).and_return(false) end let(:transport) { Faye::Transport.get(client, ["long-polling", "in-process"]) } let(:local_transport) { Faye::Transport.get(client, ["in-process"]) } let(:http_transport) { Faye::Transport.get(client, ["long-polling"]) } describe "when no transport is usable" do it "raises an exception" do lambda { transport }.should raise_error end end describe "when a less preferred transport is usable" do before do Faye::Transport::Http.stub(:usable?).and_return(true) end it "returns a transport of the usable type" do transport.should be_kind_of(Faye::Transport::Http) end it "rasies an exception of the usable type is not requested" do lambda { local_transport }.should raise_error end it "allows the usable type to be specifically selected" do http_transport.should be_kind_of(Faye::Transport::Http) end end describe "when all transports are usable" do before do Faye::Transport::Local.stub(:usable?).and_return(true) Faye::Transport::Http.stub(:usable?).and_return(true) end it "returns the most preferred type" do transport.should be_kind_of(Faye::Transport::Local) end it "allows types to be specifically selected" do local_transport.should be_kind_of(Faye::Transport::Local) http_transport.should be_kind_of(Faye::Transport::Http) end end end describe :send do include EM::RSpec::FakeClock before { clock.stub } after { clock.reset } before do client.stub(:client_id).and_return("abc123") end describe "for batching transports" do before do transport_klass = Class.new(Faye::Transport) do def batching? true end end @transport = transport_klass.new(client, "") end it "does not make an immediate request" do @transport.should_not_receive(:request) @transport.send({"batch" => "me"}, 60) end it "queues the message to be sent after a timeout" do @transport.should_receive(:request).with([{"batch" => "me"}], 60) @transport.send({"batch" => "me"}, 60) clock.tick(0.01) end it "allows multiple messages to be batched together" do @transport.should_receive(:request).with([{"id" => 1}, {"id" => 2}], 60) @transport.send({"id" => 1}, 60) @transport.send({"id" => 2}, 60) clock.tick(0.01) end it "adds advice to connect messages sent with others" do @transport.should_receive(:request).with([{"channel" => "/meta/connect", "advice" => {"timeout" => 0}}, {}], 60) @transport.send({"channel" => "/meta/connect"}, 60) @transport.send({}, 60) clock.tick(0.01) end it "adds no advice to connect messages sent alone" do @transport.should_receive(:request).with([{"channel" => "/meta/connect"}], 60) @transport.send({"channel" => "/meta/connect"}, 60) clock.tick(0.01) end end describe "for non-batching transports" do before do transport_klass = Class.new(Faye::Transport) do def batching? false end end @transport = transport_klass.new(client, "") end it "makes a request immediately" do @transport.should_receive(:request).with([{"no" => "batch"}], 60) @transport.send({"no" => "batch"}, 60) end end end end