File: publish_subscribe_test.rb

package info (click to toggle)
ruby-redis 5.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,168 kB
  • sloc: ruby: 11,501; makefile: 117; sh: 24
file content (358 lines) | stat: -rw-r--r-- 8,501 bytes parent folder | download | duplicates (2)
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
# frozen_string_literal: true

require "helper"

class TestPublishSubscribe < Minitest::Test
  include Helper::Client

  def setup
    @threads = {}
    super
  end

  def teardown
    super
    @threads.each do |thread, redis|
      if redis.subscribed?
        redis.unsubscribe
        redis.punsubscribe
      end
      redis.close
      begin
        thread.join(2) or warn("leaked thread")
      rescue RedisClient::ConnectionError
      end
    end
  end

  class TestError < StandardError
  end

  def test_subscribe_and_unsubscribe
    @subscribed = false
    @unsubscribed = false

    thread = new_thread do |r|
      r.subscribe(channel_name) do |on|
        on.subscribe do |_channel, total|
          @subscribed = true
          @t1 = total
        end

        on.message do |_channel, message|
          if message == "s1"
            r.unsubscribe
            @message = message
          end
        end

        on.unsubscribe do |_channel, total|
          @unsubscribed = true
          @t2 = total
        end
      end
    end

    # Wait until the subscription is active before publishing
    Thread.pass until @subscribed

    redis.publish(channel_name, "s1")
    thread.join

    assert @subscribed
    assert_equal 1, @t1
    assert @unsubscribed
    assert_equal 0, @t2
    assert_equal "s1", @message
  end

  def test_psubscribe_and_punsubscribe
    @subscribed = false
    @unsubscribed = false

    thread = new_thread do |r|
      r.psubscribe("channel:*") do |on|
        on.psubscribe do |_pattern, total|
          @subscribed = true
          @t1 = total
        end

        on.pmessage do |_pattern, _channel, message|
          if message == "s1"
            r.punsubscribe
            @message = message
          end
        end

        on.punsubscribe do |_pattern, total|
          @unsubscribed = true
          @t2 = total
        end
      end
    end

    # Wait until the subscription is active before publishing
    Thread.pass until @subscribed
    redis.publish(channel_name, "s1")
    thread.join

    assert @subscribed
    assert_equal 1, @t1
    assert @unsubscribed
    assert_equal 0, @t2
    assert_equal "s1", @message
  end

  def test_pubsub_with_channels_and_numsub_subcommnads
    @subscribed = false
    thread = new_thread do |r|
      r.subscribe(channel_name) do |on|
        on.subscribe { |_channel, _total| @subscribed = true }
        on.message   { |_channel, _message| r.unsubscribe }
      end
    end
    Thread.pass until @subscribed
    channels_result = redis.pubsub(:channels)
    channels_result.delete('__sentinel__:hello')
    numsub_result = redis.pubsub(:numsub, channel_name, 'boo')

    redis.publish(channel_name, "s1")
    thread.join

    assert_includes channels_result, channel_name
    assert_equal [channel_name, 1, 'boo', 0], numsub_result
  end

  def test_subscribe_connection_usable_after_raise
    @subscribed = false

    thread = new_thread do |r|
      r.subscribe(channel_name) do |on|
        on.subscribe do |_channel, _total|
          @subscribed = true
        end

        on.message do |_channel, _message|
          r.unsubscribe
          raise TestError
        end
      end
    rescue TestError
    end

    # Wait until the subscription is active before publishing
    Thread.pass until @subscribed

    redis.publish(channel_name, "s1")

    thread.join

    assert_equal "PONG", r.ping
  end

  def test_psubscribe_connection_usable_after_raise
    @subscribed = false

    thread = new_thread do |r|
      r.psubscribe("channel:*") do |on|
        on.psubscribe do |_pattern, _total|
          @subscribed = true
        end

        on.pmessage do |_pattern, _channel, _message|
          raise TestError
        end
      end
    rescue TestError
    end

    # Wait until the subscription is active before publishing
    Thread.pass until @subscribed

    redis.publish(channel_name, "s1")

    thread.join

    assert_equal "PONG", r.ping
  end

  def test_subscribe_within_subscribe
    @channels = Queue.new

    thread = new_thread do |r|
      r.subscribe(channel_name) do |on|
        on.subscribe do |channel, _total|
          @channels << channel

          r.subscribe("bar") if channel == channel_name
          r.unsubscribe if channel == "bar"
        end
      end
    end

    thread.join

    assert_equal [channel_name, "bar"], [@channels.pop, @channels.pop]
    assert_empty @channels
  end

  def test_other_commands_within_a_subscribe
    r.subscribe(channel_name) do |on|
      on.subscribe do |_channel, _total|
        r.set("bar", "s2")
        r.unsubscribe(channel_name)
      end
    end
  end

  def test_subscribe_without_a_block
    error = assert_raises Redis::SubscriptionError do
      r.subscribe(channel_name)
    end
    assert_includes "This client is not subscribed", error.message
  end

  def test_unsubscribe_without_a_subscribe
    error = assert_raises Redis::SubscriptionError do
      r.unsubscribe
    end
    assert_includes "This client is not subscribed", error.message

    error = assert_raises Redis::SubscriptionError do
      r.punsubscribe
    end
    assert_includes "This client is not subscribed", error.message
  end

  def test_subscribe_past_a_timeout
    # For some reason, a thread here doesn't reproduce the issue.
    sleep = %(sleep 0.05)
    publish = %{ruby -rsocket -e 't=TCPSocket.new("127.0.0.1",#{OPTIONS[:port]});t.write("publish foo bar\\r\\n");t.read(4);t.close'}
    cmd = [sleep, publish].join('; ')

    IO.popen(cmd, 'r+') do |_pipe|
      received = false

      r.subscribe 'foo' do |on|
        on.message do |_channel, _message|
          received = true
          r.unsubscribe
        end
      end

      assert received
    end
  end

  def test_subscribe_with_timeout
    received = false

    r.subscribe_with_timeout(LOW_TIMEOUT, channel_name) do |on|
      on.message do |_channel, _message|
        received = true
      end
    end

    refute received
  end

  def test_psubscribe_with_timeout
    received = false

    r.psubscribe_with_timeout(LOW_TIMEOUT, "channel:*") do |on|
      on.message do |_channel, _message|
        received = true
      end
    end

    refute received
  end

  def test_unsubscribe_from_another_thread
    @unsubscribed = @subscribed = false
    @subscribed_redis = nil
    @messages = Queue.new
    thread = new_thread do |r|
      @subscribed_redis = r
      r.subscribe(channel_name) do |on|
        on.subscribe do |_channel, _total|
          @subscribed = true
        end

        on.message do |channel, message|
          @messages << [channel, message]
        end

        on.unsubscribe do |_channel, _total|
          @unsubscribed = true
        end
      end
    end

    Thread.pass until @subscribed

    redis.publish(channel_name, "test")
    assert_equal [channel_name, "test"], @messages.pop
    assert_empty @messages

    @subscribed_redis.unsubscribe # this shouldn't block
    refute_nil thread.join(2)
    assert_equal true, @unsubscribed
  end

  def test_subscribe_from_another_thread
    @events = Queue.new
    @subscribed_redis = nil
    thread = new_thread do |r|
      r.subscribe(channel_name) do |on|
        @subscribed_redis = r
        on.subscribe do |channel, _total|
          @events << ["subscribed", channel]
        end

        on.message do |channel, message|
          @events << ["message", channel, message]
        end

        on.unsubscribe do |channel, _total|
          @events << ["unsubscribed", channel]
        end
      end
    end

    Thread.pass until @subscribed_redis&.subscribed?

    redis.publish(channel_name, "test")
    @subscribed_redis.subscribe("#{channel_name}:2")
    redis.publish("#{channel_name}:2", "test-2")

    @subscribed_redis.unsubscribe(channel_name)
    @subscribed_redis.unsubscribe # this shouldn't block

    refute_nil thread.join(2)
    expected = [
      ["subscribed", channel_name],
      ["message", channel_name, "test"],
      ["subscribed", "#{channel_name}:2"],
      ["message", "#{channel_name}:2", "test-2"],
      ["unsubscribed", channel_name],
      ["unsubscribed", "#{channel_name}:2"]
    ]
    assert_equal(expected, expected.map { @events.pop })
    assert_empty @events
  end

  private

  def new_thread(&block)
    redis = Redis.new(OPTIONS)
    thread = Thread.new(redis, &block)
    thread.report_on_exception = true
    @threads[thread] = redis
    thread
  end

  def channel_name
    @channel_name ||= "channel:#{rand}"
  end
end