File: queue_delete_spec.rb

package info (click to toggle)
ruby-bunny 2.23.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,644 kB
  • sloc: ruby: 10,256; sh: 70; makefile: 8
file content (41 lines) | stat: -rw-r--r-- 913 bytes parent folder | download | duplicates (5)
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
require "spec_helper"

describe Bunny::Queue, "#delete" do
  let(:connection) do
    c = Bunny.new(username: "bunny_gem", password: "bunny_password", vhost: "bunny_testbed")
    c.start
    c
  end

  after :each do
    connection.close
  end



  context "with a name of an existing queue" do
    it "deletes that queue" do
      ch = connection.create_channel
      q  = ch.queue("")

      q.delete
      # no exception as of RabbitMQ 3.2. MK.
      q.delete

      expect(ch.queues.size).to eq 0
    end
  end


  context "with a name of an existing queue" do
    it "DOES NOT raise an exception" do
      ch = connection.create_channel

      # no exception as of RabbitMQ 3.2. MK.
      ch.queue_delete("sdkhflsdjflskdjflsd#{rand}")
      ch.queue_delete("sdkhflsdjflskdjflsd#{rand}")
      ch.queue_delete("sdkhflsdjflskdjflsd#{rand}")
      ch.queue_delete("sdkhflsdjflskdjflsd#{rand}")
    end
  end
end