// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you 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 #include #include "storage/utils.h" #include "utils/CommonUtil.h" namespace { static const char* CONFIG_STR = "storage_config:\n" " primary_path: /tmp/milvus\n" " secondary_path:\n" " minio_enable: true\n" " minio_address: 127.0.0.1\n" " minio_port: 9000\n" " minio_access_key: minioadmin\n" " minio_secret_key: minioadmin\n" " minio_bucket: milvus-bucket\n" "\n"; void WriteToFile(const std::string& file_path, const char* content) { std::fstream fs(file_path.c_str(), std::ios_base::out); // write data to file fs << content; fs.close(); } } // namespace void StorageTest::SetUp() { std::string config_path(CONFIG_PATH); milvus::server::CommonUtil::CreateDirectory(config_path); WriteToFile(config_path + CONFIG_FILE, CONFIG_STR); } void StorageTest::TearDown() { std::string config_path(CONFIG_PATH); milvus::server::CommonUtil::DeleteDirectory(config_path); }