123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- /**************************************************************************
- Copyright (c) 2017 sewenew
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- *************************************************************************/
- #ifndef SEWENEW_REDISPLUSPLUS_TEST_SUBPUB_TEST_HPP
- #define SEWENEW_REDISPLUSPLUS_TEST_SUBPUB_TEST_HPP
- #include <unordered_map>
- #include <unordered_set>
- #include "utils.h"
- namespace sw {
- namespace redis {
- namespace test {
- template <typename RedisInstance>
- void PubSubTest<RedisInstance>::run() {
- _test_sub_channel();
- _test_sub_pattern();
- _test_unsubscribe();
- }
- template <typename RedisInstance>
- void PubSubTest<RedisInstance>::_test_sub_channel() {
- auto sub = _redis.subscriber();
- auto msgs = {"msg1", "msg2"};
- auto channel1 = test_key("c1");
- sub.on_message([&msgs, &channel1](std::string channel, std::string msg) {
- static std::size_t idx = 0;
- REDIS_ASSERT(channel == channel1 && msg == *(msgs.begin() + idx),
- "failed to test subscribe");
- ++idx;
- });
- sub.subscribe(channel1);
- // Consume the SUBSCRIBE message.
- sub.consume();
- for (const auto &msg : msgs) {
- _redis.publish(channel1, msg);
- sub.consume();
- }
- sub.unsubscribe(channel1);
- // Consume the UNSUBSCRIBE message.
- sub.consume();
- auto channel2 = test_key("c2");
- auto channel3 = test_key("c3");
- auto channel4 = test_key("c4");
- std::unordered_set<std::string> channels;
- sub.on_meta([&channels](Subscriber::MsgType type,
- OptionalString channel,
- long long num) {
- REDIS_ASSERT(bool(channel), "failed to test subscribe");
- if (type == Subscriber::MsgType::SUBSCRIBE) {
- auto iter = channels.find(*channel);
- REDIS_ASSERT(iter == channels.end(), "failed to test subscribe");
- channels.insert(*channel);
- REDIS_ASSERT(static_cast<std::size_t>(num) == channels.size(),
- "failed to test subscribe");
- } else if (type == Subscriber::MsgType::UNSUBSCRIBE) {
- auto iter = channels.find(*channel);
- REDIS_ASSERT(iter != channels.end(), "failed to test subscribe");
- channels.erase(*channel);
- REDIS_ASSERT(static_cast<std::size_t>(num) == channels.size(),
- "failed to test subscribe");
- } else {
- REDIS_ASSERT(false, "Unknown message type");
- }
- });
- std::unordered_map<std::string, std::string> messages = {
- {channel2, "msg2"},
- {channel3, "msg3"},
- {channel4, "msg4"},
- };
- sub.on_message([&messages](std::string channel, std::string msg) {
- REDIS_ASSERT(messages.find(channel) != messages.end(),
- "failed to test subscribe");
- REDIS_ASSERT(messages[channel] == msg, "failed to test subscribe");
- });
- sub.subscribe({channel2, channel3, channel4});
- for (std::size_t idx = 0; idx != channels.size(); ++idx) {
- sub.consume();
- }
- for (const auto &ele : messages) {
- _redis.publish(ele.first, ele.second);
- sub.consume();
- }
- auto tmp = {channel2, channel3, channel4};
- sub.unsubscribe(tmp);
- for (std::size_t idx = 0; idx != tmp.size(); ++idx) {
- sub.consume();
- }
- }
- template <typename RedisInstance>
- void PubSubTest<RedisInstance>::_test_sub_pattern() {
- auto sub = _redis.subscriber();
- auto msgs = {"msg1", "msg2"};
- auto pattern1 = test_key("pattern*");
- std::string channel1 = test_key("pattern1");
- sub.on_pmessage([&msgs, &pattern1, &channel1](std::string pattern,
- std::string channel,
- std::string msg) {
- static std::size_t idx = 0;
- REDIS_ASSERT(pattern == pattern1
- && channel == channel1
- && msg == *(msgs.begin() + idx),
- "failed to test psubscribe");
- ++idx;
- });
- sub.psubscribe(pattern1);
- // Consume the PSUBSCRIBE message.
- sub.consume();
- for (const auto &msg : msgs) {
- _redis.publish(channel1, msg);
- sub.consume();
- }
- sub.punsubscribe(pattern1);
- // Consume the PUNSUBSCRIBE message.
- sub.consume();
- auto channel2 = test_key("pattern22");
- auto channel3 = test_key("pattern33");
- auto channel4 = test_key("pattern44");
- std::unordered_set<std::string> channels;
- sub.on_meta([&channels](Subscriber::MsgType type,
- OptionalString channel,
- long long num) {
- REDIS_ASSERT(bool(channel), "failed to test psubscribe");
- if (type == Subscriber::MsgType::PSUBSCRIBE) {
- auto iter = channels.find(*channel);
- REDIS_ASSERT(iter == channels.end(), "failed to test psubscribe");
- channels.insert(*channel);
- REDIS_ASSERT(static_cast<std::size_t>(num) == channels.size(),
- "failed to test psubscribe");
- } else if (type == Subscriber::MsgType::PUNSUBSCRIBE) {
- auto iter = channels.find(*channel);
- REDIS_ASSERT(iter != channels.end(), "failed to test psubscribe");
- channels.erase(*channel);
- REDIS_ASSERT(static_cast<std::size_t>(num) == channels.size(),
- "failed to test psubscribe");
- } else {
- REDIS_ASSERT(false, "Unknown message type");
- }
- });
- auto pattern2 = test_key("pattern2*");
- auto pattern3 = test_key("pattern3*");
- auto pattern4 = test_key("pattern4*");
- std::unordered_set<std::string> patterns = {pattern2, pattern3, pattern4};
- std::unordered_map<std::string, std::string> messages = {
- {channel2, "msg2"},
- {channel3, "msg3"},
- {channel4, "msg4"},
- };
- sub.on_pmessage([&patterns, &messages](std::string pattern,
- std::string channel,
- std::string msg) {
- REDIS_ASSERT(patterns.find(pattern) != patterns.end(),
- "failed to test psubscribe");
- REDIS_ASSERT(messages[channel] == msg, "failed to test psubscribe");
- });
- sub.psubscribe({pattern2, pattern3, pattern4});
- for (std::size_t idx = 0; idx != channels.size(); ++idx) {
- sub.consume();
- }
- for (const auto &ele : messages) {
- _redis.publish(ele.first, ele.second);
- sub.consume();
- }
- auto tmp = {pattern2, pattern3, pattern4};
- sub.punsubscribe(tmp);
- for (std::size_t idx = 0; idx != tmp.size(); ++idx) {
- sub.consume();
- }
- }
- template <typename RedisInstance>
- void PubSubTest<RedisInstance>::_test_unsubscribe() {
- auto sub = _redis.subscriber();
- sub.on_meta([](Subscriber::MsgType type,
- OptionalString channel,
- long long num) {
- REDIS_ASSERT(type == Subscriber::MsgType::UNSUBSCRIBE,
- "failed to test unsub");
- REDIS_ASSERT(!channel, "failed to test unsub");
- REDIS_ASSERT(num == 0, "failed to test unsub");
- });
- sub.unsubscribe();
- sub.consume();
- }
- }
- }
- }
- #endif // end SEWENEW_REDISPLUSPLUS_TEST_SUBPUB_TEST_HPP
|