gtest_db_thread.cpp 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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>
#include <chrono>
17 18
#include <fstream>
#include <string>
19
#include <thread>
20 21 22
#include "kvdb/kvdb_impl.h"
#include "kvdb/paddle_rocksdb.h"
#include "kvdb/rocksdb_impl.h"
23
class KVDBTest : public ::testing::Test {
24 25
 protected:
  void SetUp() override {}
26

27
  static void SetUpTestCase() {}
28
};
29

30 31 32 33
int my_argc;
char** my_argv;

void db_thread_test(AbsKVDBPtr kvdb, int size) {
34 35 36 37
  for (int i = 0; i < size; i++) {
    kvdb->Set(std::to_string(i), std::to_string(i));
    kvdb->Get(std::to_string(i));
  }
38 39 40
}

TEST_F(KVDBTest, AbstractKVDB_Thread_Test) {
41 42 43 44
  if (my_argc != 3) {
    std::cerr << "illegal input! should be db_thread ${num_of_thread} "
                 "${num_of_ops_each_thread}"
              << std::endl;
45
    return;
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
  }
  int num_of_thread = atoi(my_argv[1]);
  int nums_of_ops_each_thread = atoi(my_argv[2]);
  std::vector<AbsKVDBPtr> kvdbptrs;
  for (int i = 0; i < num_of_thread; i++) {
    kvdbptrs.push_back(std::make_shared<RocksKVDB>());
    kvdbptrs[i]->CreateDB();
  }
  std::vector<std::thread> tarr;
  for (int i = 0; i < num_of_thread; i++) {
    tarr.push_back(
        std::thread(db_thread_test, kvdbptrs[i], nums_of_ops_each_thread));
  }
  for (int i = 0; i < num_of_thread; i++) {
    tarr[i].join();
  }
  return;
63 64 65
}

int main(int argc, char** argv) {
66 67 68 69
  my_argc = argc;
  my_argv = argv;
  ::testing::InitGoogleTest(&argc, argv);
  return RUN_ALL_TESTS();
70
}