gtest_db_func.cpp 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
// 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 "kvdb/mock_kvdb_impl.h"
#include "kvdb/kvdb_impl.h"
#include "kvdb/paddle_rocksdb.h"
#include <gtest/gtest.h>
#include <string>
#include <fstream>
#include <sstream>
#include <chrono>
#include <thread>
class KVDBTest : public ::testing::Test {
protected:
    void SetUp() override{
                
    }
    
    static void SetUpTestCase() {
    }
    

};
int my_argc;
char** my_argv;

std::vector<std::string> StringSplit(std::string str, char split) {
    std::vector<std::string> strs;
    std::istringstream f(str);
    std:: string s;
W
wangjiawei04 已提交
42
    while (getline(f, s, split)) {
43 44 45 46 47 48 49 50 51 52 53 54
        strs.push_back(s);
    }
    return strs;
}

TEST_F(KVDBTest, AbstractKVDB_Func_Test) {
    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);
55
    for (std::string line; getline(set_file, line); )
56 57 58 59 60
    {
        std::vector<std::string> strs = StringSplit (line, ' ');
        kvdb->Set(strs[0], strs[1]);
    }

61
    for (std::string line; getline(set_file, line); ) {
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
        std::vector<std::string> strs = StringSplit(line, ' ');
        std::string val = kvdb->Get(strs[0]);
        ASSERT_EQ(val, strs[1]);
    }
}



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