Sha256: 10deb7c37da5531883ef7e6ebcb45d36eb18754c42863d6cf819f4d08ec383b6
Contents?: true
Size: 1.92 KB
Versions: 1
Compression:
Stored size: 1.92 KB
Contents
require 'spec_helper.rb' describe Pwwka::Transmitter do before(:all) do @test_handler = Pwwka::TestHandler.new @test_handler.test_setup end after(:all) { @test_handler.test_teardown } let(:payload) { Hash[:this, "that"] } let(:routing_key) { "this.that" } describe "#send_message!" do it "should send the correct payload" do success = Pwwka::Transmitter.new.send_message!(payload, routing_key) expect(success).to be_truthy received_payload = @test_handler.get_topic_message_payload_for_tests expect(received_payload["this"]).to eq("that") end it "should blow up if exception raised" do expect(Pwwka::ChannelConnector).to receive(:new).and_raise("blow up") expect { Pwwka::Transmitter.new.send_message!(payload, routing_key) }.to raise_error end end describe "::send_message!" do it "should send the correct payload" do Pwwka::Transmitter.send_message!(payload, routing_key) received_payload = @test_handler.get_topic_message_payload_for_tests expect(received_payload["this"]).to eq("that") end it "should blow up if exception raised" do expect(Pwwka::ChannelConnector).to receive(:new).and_raise("blow up") expect{ Pwwka::Transmitter.send_message!(payload, routing_key) }.to raise_error end end describe "::send_message_safely" do it "should send the correct payload" do Pwwka::Transmitter.send_message_safely(payload, routing_key) received_payload = @test_handler.get_topic_message_payload_for_tests expect(received_payload["this"]).to eq("that") end it "should not blow up if exception raised" do expect(Pwwka::ChannelConnector).to receive(:new).and_raise("blow up") Pwwka::Transmitter.send_message_safely(payload, routing_key) # check nothing has been queued expect(@test_handler.test_queue.pop.compact.count).to eq(0) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pwwka-0.1.0 | spec/transmitter_spec.rb |