File: basic_reject_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 (152 lines) | stat: -rw-r--r-- 4,092 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
require "spec_helper"

describe Bunny::Channel, "#reject" 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 if connection.open?
  end

  context "with requeue = true" do
    it "requeues a message" do
      ch = connection.create_channel
      q  = ch.queue("bunny.basic.reject.manual-acks", exclusive: true)
      x  = ch.default_exchange

      x.publish("bunneth", routing_key: q.name)
      sleep(0.5)
      expect(q.message_count).to eq 1
      delivery_info, _, _ = q.pop(manual_ack: true)

      ch.reject(delivery_info.delivery_tag, true)
      sleep(0.5)
      expect(q.message_count).to eq 1

      ch.close
    end
  end

  context "with requeue = false" do
    it "rejects a message" do
      ch = connection.create_channel
      q  = ch.queue("bunny.basic.reject.with-requeue-false", exclusive: true)
      x  = ch.default_exchange

      x.publish("bunneth", routing_key: q.name)
      sleep(0.5)
      expect(q.message_count).to eq 1
      delivery_info, _, _ = q.pop(manual_ack: true)

      ch.reject(delivery_info.delivery_tag, false)
      sleep(0.5)
      ch.close

      ch = connection.create_channel
      q  = ch.queue("bunny.basic.reject.with-requeue-false", exclusive: true)
      expect(q.message_count).to eq 0
      ch.close
    end
  end


  context "with an invalid (random) delivery tag" do
    it "causes a channel-level error" do
      ch = connection.create_channel
      q  = ch.queue("bunny.basic.reject.unknown-delivery-tag", exclusive: true)
      x  = ch.default_exchange

      x.publish("bunneth", routing_key: q.name)
      sleep(0.25)
      expect(q.message_count).to eq 1
      _, _, content = q.pop(manual_ack: true)

      ch.on_error do |ch, channel_close|
        @channel_close = channel_close
      end
      ch.reject(82, true)

      sleep 0.5

      expect(@channel_close.reply_text).to eq "PRECONDITION_FAILED - unknown delivery tag 82"
    end
  end
end

describe Bunny::Channel, "#basic_reject" 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 if connection.open?
  end

  context "with requeue = true" do
    it "requeues a message" do
      ch = connection.create_channel
      q  = ch.queue("bunny.basic.reject.manual-acks", exclusive: true)
      x  = ch.default_exchange

      x.publish("bunneth", routing_key: q.name)
      sleep(0.5)
      expect(q.message_count).to eq 1
      delivery_info, _, _ = q.pop(manual_ack: true)

      ch.basic_reject(delivery_info.delivery_tag.to_i, true)
      sleep(0.5)
      expect(q.message_count).to eq 1

      ch.close
    end
  end

  context "with requeue = false" do
    it "rejects a message" do
      ch = connection.create_channel
      q  = ch.queue("bunny.basic.reject.with-requeue-false", exclusive: true)
      x  = ch.default_exchange

      x.publish("bunneth", routing_key: q.name)
      sleep(0.5)
      expect(q.message_count).to eq 1
      delivery_info, _, _ = q.pop(manual_ack: true)

      ch.basic_reject(delivery_info.delivery_tag.to_i, false)
      sleep(0.5)
      ch.close

      ch = connection.create_channel
      q  = ch.queue("bunny.basic.reject.with-requeue-false", exclusive: true)
      expect(q.message_count).to eq 0
      ch.close
    end
  end

  context "with requeue = default" do
    it "rejects a message" do
      ch = connection.create_channel
      q  = ch.queue("bunny.basic.reject.with-requeue-false", exclusive: true)
      x  = ch.default_exchange

      x.publish("bunneth", routing_key: q.name)
      sleep(0.5)
      expect(q.message_count).to eq 1
      delivery_info, _, _ = q.pop(manual_ack: true)

      ch.basic_reject(delivery_info.delivery_tag.to_i)
      sleep(0.5)
      ch.close

      ch = connection.create_channel
      q  = ch.queue("bunny.basic.reject.with-requeue-false", exclusive: true)
      expect(q.message_count).to eq 0
      ch.close
    end
  end
end