blob: 5a7e47919d7864adc645752df205356664844c9c [file] [log] [blame]
Rolf Badorekef2bf512019-08-20 11:17:15 +03001/*
2 Copyright (c) 2018-2019 Nokia.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15*/
16
Timo Tietavainena0745d22019-11-28 09:55:22 +020017/*
18 * This source code is part of the near-RT RIC (RAN Intelligent Controller)
19 * platform project (RICP).
20*/
21
Rolf Badorekef2bf512019-08-20 11:17:15 +030022#include <type_traits>
23#include <gtest/gtest.h>
24#include <gmock/gmock.h>
25#include "private/redis/asyncredisreply.hpp"
26#include "private/redis/redisgeneral.hpp"
27#include "private/tst/redisreplybuilder.hpp"
28
29using namespace shareddatalayer;
30using namespace shareddatalayer::redis;
31using namespace shareddatalayer::tst;
32using namespace testing;
33
34namespace
35{
36 class RedisGeneralTest: public testing::Test
37 {
38 public:
39 RedisReplyBuilder redisReplyBuilder;
40 RedisGeneralTest():
41 redisReplyBuilder { }
42 {
43 }
44
45 virtual ~RedisGeneralTest()
46 {
47 }
48 };
49}
50
51TEST_F(RedisGeneralTest, ParseCommandListReplySuccessfully)
52{
53 std::set<std::string> requiredRedisModuleCommands(getRequiredRedisModuleCommands());
54 const AsyncRedisReply replyHavingAllRequiredCommands(redisReplyBuilder.buildCommandListQueryReply());
55 std::set<std::string> parsedRedisModuleCommands(parseCommandListReply(replyHavingAllRequiredCommands));
56 EXPECT_THAT(requiredRedisModuleCommands, ContainerEq(parsedRedisModuleCommands));
57}
58
59TEST_F(RedisGeneralTest, CheckRedisModuleCommandsAllCommandsFound)
60{
61 std::set<std::string> requiredRedisModuleCommands(getRequiredRedisModuleCommands());
62 EXPECT_TRUE(checkRedisModuleCommands(requiredRedisModuleCommands));
63}
64
65TEST_F(RedisGeneralTest, CheckRedisModuleCommandsOneCommandMissing)
66{
67 std::set<std::string> requiredRedisModuleCommands(getRequiredRedisModuleCommands());
68 auto commandToRemove = --requiredRedisModuleCommands.end();
69 requiredRedisModuleCommands.erase(commandToRemove);
70 EXPECT_FALSE(checkRedisModuleCommands(requiredRedisModuleCommands));
71}
72
73TEST_F(RedisGeneralTest, CheckRedisModuleCommandsAllCommandsMissing)
74{
75 std::set<std::string> requiredRedisModuleCommands({});
76 EXPECT_FALSE(checkRedisModuleCommands(requiredRedisModuleCommands));
77}