Sha256: 867eab99d0319d00fb57e66c6d994ea2c77434a464f2bc3c375927609195cc16
Contents?: true
Size: 1.85 KB
Versions: 22
Compression:
Stored size: 1.85 KB
Contents
require "spec_helper" describe Bunny::Channel, "#reject" do let(:connection) do c = Bunny.new(:user => "bunny_gem", :password => "bunny_password", :vhost => "bunny_testbed") c.start c end after :all do connection.close if connection.open? end subject do connection.create_channel end context "with requeue = true" do it "requeues a message" do q = subject.queue("bunny.basic.reject.manual-acks", :exclusive => true) x = subject.default_exchange x.publish("bunneth", :routing_key => q.name) sleep(0.5) q.message_count.should == 1 delivery_info, _, _ = q.pop(:ack => true) subject.reject(delivery_info.delivery_tag, true) sleep(0.5) q.message_count.should == 1 subject.close end end context "with requeue = false" do it "rejects a message" do q = subject.queue("bunny.basic.reject.with-requeue-false", :exclusive => true) x = subject.default_exchange x.publish("bunneth", :routing_key => q.name) sleep(0.5) q.message_count.should == 1 delivery_info, _, _ = q.pop(:ack => true) subject.reject(delivery_info.delivery_tag, false) sleep(0.5) q.message_count.should == 0 subject.close end end context "with an invalid (random) delivery tag" do it "causes a channel-level error" do q = subject.queue("bunny.basic.reject.unknown-delivery-tag", :exclusive => true) x = subject.default_exchange x.publish("bunneth", :routing_key => q.name) sleep(0.25) q.message_count.should == 1 _, _, content = q.pop(:ack => true) subject.on_error do |ch, channel_close| @channel_close = channel_close end subject.reject(82, true) sleep 0.5 @channel_close.reply_text.should == "PRECONDITION_FAILED - unknown delivery tag 82" end end end
Version data entries
22 entries across 22 versions & 1 rubygems