summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Falcon <seth@opscode.com>2010-10-25 15:24:59 -0700
committerSeth Falcon <seth@opscode.com>2010-10-25 15:24:59 -0700
commit64c4a0b8c38b2693c1ccd550354556d86da8cae7 (patch)
tree2e815768020cba0031d8da60a0cf4e059c383322
parent00329ecde5ed9f30ceb7b6d5556e2dd21c2b46b5 (diff)
parent9b39bf34aa11e16547ae5b7c5b7b66e8570e13ff (diff)
downloadchef-nofields-deploy.tar.gz
Merge branch 'CHEF-1808' into nofields-worknofields-deploy
-rw-r--r--chef/lib/chef/index_queue/amqp_client.rb17
-rw-r--r--chef/spec/unit/index_queue_spec.rb57
2 files changed, 29 insertions, 45 deletions
diff --git a/chef/lib/chef/index_queue/amqp_client.rb b/chef/lib/chef/index_queue/amqp_client.rb
index d3d291d401..79f311dea1 100644
--- a/chef/lib/chef/index_queue/amqp_client.rb
+++ b/chef/lib/chef/index_queue/amqp_client.rb
@@ -31,11 +31,9 @@ class Chef
@amqp_client && amqp_client.connected? && amqp_client.stop
@amqp_client = nil
@exchange = nil
- @queue = nil
end
def stop
- @queue && @queue.subscription && @queue.unsubscribe
@amqp_client && @amqp_client.stop
end
@@ -61,25 +59,16 @@ class Chef
@exchange ||= amqp_client.exchange("chef-indexer", :durable => true, :type => :fanout)
end
- def queue
- unless @queue
- @queue = amqp_client.queue("chef-index-consumer-" + consumer_id, :durable => durable_queue?)
- @queue.bind(exchange)
- end
- @queue
- end
-
def disconnected!
@amqp_client = nil
reset!
end
def queue_for_object(obj_id)
- vnode_tag = obj_id_to_int(obj_id) % VNODES
- queue = amqp_client.queue("vnode-#{vnode_tag}")
retries = 0
+ vnode_tag = obj_id_to_int(obj_id) % VNODES
begin
- yield queue
+ yield amqp_client.queue("vnode-#{vnode_tag}")
rescue Bunny::ServerDownError, Bunny::ConnectionError, Errno::ECONNRESET
disconnected!
if (retries += 1) < 2
@@ -122,4 +111,4 @@ class Chef
end
end
-end \ No newline at end of file
+end
diff --git a/chef/spec/unit/index_queue_spec.rb b/chef/spec/unit/index_queue_spec.rb
index a5250da6b2..d595b4c9b4 100644
--- a/chef/spec/unit/index_queue_spec.rb
+++ b/chef/spec/unit/index_queue_spec.rb
@@ -226,60 +226,55 @@ describe Chef::IndexQueue::AmqpClient do
end
describe "publishing" do
+
before do
- @queue = FauxQueue.new
+ @queue_1 = FauxQueue.new
+ @queue_2 = FauxQueue.new
+
@amqp_client.stub!(:qos)
- @amqp_client.stub!(:queue).and_return(@queue)
+ #@amqp_client.stub!(:queue).and_return(@queue)
@data = {"some_data" => "in_a_hash"}
end
it "resets the client upon a Bunny::ServerDownError when publishing" do
+ Bunny.stub!(:new).and_return(@amqp_client)
+ @amqp_client.should_receive(:queue).with("vnode-68").twice.and_return(@queue_1, @queue_2)
+
+ @queue_1.should_receive(:publish).with(@data).and_raise(Bunny::ServerDownError)
+ @queue_2.should_receive(:publish).with(@data).and_raise(Bunny::ServerDownError)
+
@publisher.should_receive(:disconnected!).at_least(3).times
- lambda {@publisher.queue_for_object("00000000-1111-2222-3333-444444444444") {|q| raise Bunny::ServerDownError}}.should raise_error(Bunny::ServerDownError)
+ lambda {@publisher.queue_for_object("00000000-1111-2222-3333-444444444444") {|q| q.publish(@data)}}.should raise_error(Bunny::ServerDownError)
end
it "resets the client upon a Bunny::ConnectionError when publishing" do
+ Bunny.stub!(:new).and_return(@amqp_client)
+ @amqp_client.should_receive(:queue).with("vnode-68").twice.and_return(@queue_1, @queue_2)
+
+ @queue_1.should_receive(:publish).with(@data).and_raise(Bunny::ConnectionError)
+ @queue_2.should_receive(:publish).with(@data).and_raise(Bunny::ConnectionError)
+
@publisher.should_receive(:disconnected!).at_least(3).times
- lambda {@publisher.queue_for_object("00000000-1111-2222-3333-444444444444") {|q| raise Bunny::ConnectionError}}.should raise_error(Bunny::ConnectionError)
+ lambda {@publisher.queue_for_object("00000000-1111-2222-3333-444444444444") {|q| q.publish(@data)}}.should raise_error(Bunny::ConnectionError)
end
it "resets the client upon a Errno::ECONNRESET when publishing" do
+ Bunny.stub!(:new).and_return(@amqp_client)
+ @amqp_client.should_receive(:queue).with("vnode-68").twice.and_return(@queue_1, @queue_2)
+
+ @queue_1.should_receive(:publish).with(@data).and_raise(Errno::ECONNRESET)
+ @queue_2.should_receive(:publish).with(@data).and_raise(Errno::ECONNRESET)
+
@publisher.should_receive(:disconnected!).at_least(3).times
- lambda {@publisher.queue_for_object("00000000-1111-2222-3333-444444444444") {|q| raise Errno::ECONNRESET}}.should raise_error(Errno::ECONNRESET)
+ lambda {@publisher.queue_for_object("00000000-1111-2222-3333-444444444444") {|q| q.publish(@data)}}.should raise_error(Errno::ECONNRESET)
end
end
- it "creates a queue bound to its exchange with a temporary UUID" do
- @amqp_client.stub!(:qos)
-
- a_queue_name = /chef\-index-consumer\-[0-9a-f]{8}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{12}/
-
- @queue = mock("Bunny::Queue")
- @amqp_client.should_receive(:queue).with(a_queue_name, :durable => false).and_return(@queue)
- @queue.should_receive(:bind).with(@exchange)
- @publisher.queue.should == @queue
- end
-
- it "creates a durable queue bound to the exchange when a UUID is configured" do
- expected_queue_id = "aaaaaaaa-bbbb-cccc-dddd-eeee-ffffffffffffffff"
- expected_queue_name = "chef-index-consumer-#{expected_queue_id}"
- Chef::Config[:amqp_consumer_id] = expected_queue_id
- @amqp_client.stub!(:qos)
-
- @queue = mock("Bunny::Queue")
- @amqp_client.should_receive(:queue).with(expected_queue_name, :durable => true).and_return(@queue)
- @queue.should_receive(:bind).with(@exchange)
- @publisher.queue.should == @queue
- end
-
it "stops bunny and clears subscriptions" do
bunny_client = mock("Bunny::Client")
- queue = mock("Bunny::Queue", :subscription => true)
@publisher.instance_variable_set(:@amqp_client, bunny_client)
- @publisher.instance_variable_set(:@queue, queue)
bunny_client.should_receive(:stop)
- queue.should_receive(:unsubscribe)
@publisher.stop
end