diff options
author | Björn Svensson <bjorn.a.svensson@est.tech> | 2022-02-02 22:42:23 +0100 |
---|---|---|
committer | Björn Svensson <bjorn.a.svensson@est.tech> | 2022-02-02 23:43:21 +0100 |
commit | b6fb548fc65497ce933cfd15b6fd91c700d4b34e (patch) | |
tree | c5fdf8ae447a2b58783e0d9512596ddc6b36a5e2 /test.c | |
parent | f8de9a4bd433791890572f7b9147e685653ddef9 (diff) |
Ignore pubsub replies without a channel/pattern
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1733,6 +1733,10 @@ void subscribe_channel_a_cb(redisAsyncContext *ac, void *r, void *privdata) { redisAsyncCommand(ac,unexpected_cb, (void*)"unsubscribe should not call unexpected_cb()", "unsubscribe B X A"); + /* Unsubscribe to patterns, none which we subscribe to */ + redisAsyncCommand(ac,unexpected_cb, + (void*)"punsubscribe should not call unexpected_cb()", + "punsubscribe"); /* Send a regular command after unsubscribing, then disconnect */ state->disconnect = 1; redisAsyncCommand(ac,integer_cb,state,"LPUSH mylist foo"); @@ -1769,6 +1773,8 @@ void subscribe_channel_b_cb(redisAsyncContext *ac, void *r, void *privdata) { * - subscribe to channel A and B * - a published message on A triggers an unsubscribe of channel B, X and A * where channel X is not subscribed to. + * - the published message also triggers an unsubscribe to patterns. Since no + * pattern is subscribed to the responded pattern element type is NIL. * - a command sent after unsubscribe triggers a disconnect */ static void test_pubsub_multiple_channels(struct config config) { test("Subscribe to multiple channels: "); |