YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/integration-tests/redis_table_test_base.h
Line
Count
Source
1
// Copyright (c) YugaByte, Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4
// in compliance with the License.  You may obtain a copy of the License at
5
//
6
// http://www.apache.org/licenses/LICENSE-2.0
7
//
8
// Unless required by applicable law or agreed to in writing, software distributed under the License
9
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10
// or implied.  See the License for the specific language governing permissions and limitations
11
// under the License.
12
//
13
14
#ifndef YB_INTEGRATION_TESTS_REDIS_TABLE_TEST_BASE_H_
15
#define YB_INTEGRATION_TESTS_REDIS_TABLE_TEST_BASE_H_
16
17
#include <string>
18
19
#include "yb/integration-tests/yb_table_test_base.h"
20
21
namespace yb {
22
namespace integration_tests {
23
24
class RedisTableTestBase : public YBTableTestBase {
25
 protected:
26
  client::YBTableName table_name() override;
27
28
  void CreateTable() override;
29
  void PutKeyValue(std::string key, std::string value) override;
30
  void PutKeyValueWithTtlNoFlush(std::string key, std::string value, int64_t ttl);
31
  void GetKeyValue(const std::string& key, const std::string& value, bool expect_not_found = false);
32
33
  void RedisSimpleSetCommands();
34
  void RedisSimpleGetCommands();
35
36
  void RedisTtlSetCommands();
37
  void RedisTtlGetCommands();
38
39
106
  bool enable_ysql() override { return false; }
40
};
41
42
}  // namespace integration_tests
43
}  // namespace yb
44
45
#endif  // YB_INTEGRATION_TESTS_REDIS_TABLE_TEST_BASE_H_