mirror of https://github.com/milvus-io/milvus.git
130 lines
3.4 KiB
C++
130 lines
3.4 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
|
|
// Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
// Proprietary and confidential.
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include <iostream>
|
|
#include <easylogging++.h>
|
|
#include <thread>
|
|
#include <boost/filesystem.hpp>
|
|
|
|
#include "utils.h"
|
|
#include "db/Factories.h"
|
|
#include "db/Options.h"
|
|
|
|
INITIALIZE_EASYLOGGINGPP
|
|
|
|
using namespace zilliz::milvus;
|
|
|
|
static std::string uri;
|
|
|
|
class DBTestEnvironment : public ::testing::Environment {
|
|
public:
|
|
|
|
// explicit DBTestEnvironment(std::string uri) : uri_(uri) {}
|
|
|
|
static std::string getURI() {
|
|
return uri;
|
|
}
|
|
|
|
void SetUp() override {
|
|
getURI();
|
|
}
|
|
|
|
};
|
|
|
|
void ASSERT_STATS(engine::Status& stat) {
|
|
ASSERT_TRUE(stat.ok());
|
|
if(!stat.ok()) {
|
|
std::cout << stat.ToString() << std::endl;
|
|
}
|
|
}
|
|
|
|
|
|
void DBTest::InitLog() {
|
|
el::Configurations defaultConf;
|
|
defaultConf.setToDefault();
|
|
defaultConf.set(el::Level::Debug,
|
|
el::ConfigurationType::Format, "[%thread-%datetime-%level]: %msg (%fbase:%line)");
|
|
el::Loggers::reconfigureLogger("default", defaultConf);
|
|
}
|
|
|
|
engine::Options DBTest::GetOptions() {
|
|
auto options = engine::OptionsFactory::Build();
|
|
options.meta.path = "/tmp/milvus_test";
|
|
options.meta.backend_uri = "sqlite://:@:/";
|
|
return options;
|
|
}
|
|
|
|
void DBTest::SetUp() {
|
|
InitLog();
|
|
auto options = GetOptions();
|
|
db_ = engine::DBFactory::Build(options);
|
|
}
|
|
|
|
void DBTest::TearDown() {
|
|
delete db_;
|
|
boost::filesystem::remove_all("/tmp/milvus_test");
|
|
}
|
|
|
|
engine::Options DBTest2::GetOptions() {
|
|
auto options = engine::OptionsFactory::Build();
|
|
options.meta.path = "/tmp/milvus_test";
|
|
options.meta.archive_conf = engine::ArchiveConf("delete", "disk:1");
|
|
options.meta.backend_uri = "sqlite://:@:/";
|
|
return options;
|
|
}
|
|
|
|
void MetaTest::SetUp() {
|
|
InitLog();
|
|
impl_ = engine::DBMetaImplFactory::Build();
|
|
}
|
|
|
|
void MetaTest::TearDown() {
|
|
impl_->DropAll();
|
|
}
|
|
|
|
zilliz::milvus::engine::DBMetaOptions MySQLTest::getDBMetaOptions() {
|
|
// std::string path = "/tmp/milvus_test";
|
|
// engine::DBMetaOptions options = engine::DBMetaOptionsFactory::Build(path);
|
|
zilliz::milvus::engine::DBMetaOptions options;
|
|
options.path = "/tmp/milvus_test";
|
|
options.backend_uri = DBTestEnvironment::getURI();
|
|
|
|
if(options.backend_uri.empty()) {
|
|
throw std::exception();
|
|
}
|
|
|
|
return options;
|
|
}
|
|
|
|
zilliz::milvus::engine::Options MySQLDBTest::GetOptions() {
|
|
auto options = engine::OptionsFactory::Build();
|
|
options.meta.path = "/tmp/milvus_test";
|
|
options.meta.backend_uri = DBTestEnvironment::getURI();
|
|
return options;
|
|
}
|
|
|
|
void NewMemManagerTest::InitLog() {
|
|
el::Configurations defaultConf;
|
|
defaultConf.setToDefault();
|
|
defaultConf.set(el::Level::Debug,
|
|
el::ConfigurationType::Format, "[%thread-%datetime-%level]: %msg (%fbase:%line)");
|
|
el::Loggers::reconfigureLogger("default", defaultConf);
|
|
}
|
|
|
|
void NewMemManagerTest::SetUp() {
|
|
InitLog();
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
if (argc > 1) {
|
|
uri = argv[1];
|
|
}
|
|
// std::cout << uri << std::endl;
|
|
::testing::AddGlobalTestEnvironment(new DBTestEnvironment);
|
|
return RUN_ALL_TESTS();
|
|
}
|