gtest_db_func.cpp 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
//
// 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.

#include <gtest/gtest.h>
16
#include <chrono>
17 18
#include <fstream>
#include <sstream>
19
#include <string>
20
#include <thread>
21 22 23
#include "kvdb/kvdb_impl.h"
#include "kvdb/paddle_rocksdb.h"
#include "kvdb/rocksdb_impl.h"
24
class KVDBTest : public ::testing::Test {
25 26
 protected:
  void SetUp() override {}
27

28
  static void SetUpTestCase() {}
29 30 31 32 33
};
int my_argc;
char** my_argv;

std::vector<std::string> StringSplit(std::string str, char split) {
34 35 36 37 38 39 40
  std::vector<std::string> strs;
  std::istringstream f(str);
  std::string s;
  while (getline(f, s, split)) {
    strs.push_back(s);
  }
  return strs;
41 42 43
}

TEST_F(KVDBTest, AbstractKVDB_Func_Test) {
44 45 46 47 48 49 50 51 52 53
  AbsKVDBPtr kvdb = std::make_shared<RocksKVDB>();
  kvdb->CreateDB();
  std::string set_list = "setlist.txt";
  std::string get_list = "getlist.txt";
  std::ifstream set_file(set_list);
  std::ifstream get_file(get_list);
  for (std::string line; getline(set_file, line);) {
    std::vector<std::string> strs = StringSplit(line, ' ');
    kvdb->Set(strs[0], strs[1]);
  }
54

55 56 57 58 59
  for (std::string line; getline(get_file, line);) {
    std::vector<std::string> strs = StringSplit(line, ' ');
    std::string val = kvdb->Get(strs[0]);
    ASSERT_EQ(val, strs[1]);
  }
60 61 62
}

int main(int argc, char** argv) {
63 64 65 66
  my_argc = argc;
  my_argv = argv;
  ::testing::InitGoogleTest(&argc, argv);
  return RUN_ALL_TESTS();
67
}