/** * 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. */ #ifndef TESTS_CONFIGURATION_H_ #define TESTS_CONFIGURATION_H_ #include #include "hdfspp/config_parser.h" #include "common/configuration.h" #include "common/configuration_loader.h" #include "x-platform/syscall.h" #include #include #include #include #include #include #include #include #include #include namespace hdfs { template void simpleConfigStreamProperty(std::stringstream& out, T key, U value) { out << "" << "" << key << "" << "" << value << "" << ""; } template void simpleConfigStreamProperty(std::stringstream& out, T key, U value, Args... args) { simpleConfigStreamProperty(out, key, value); simpleConfigStreamProperty(out, args...); } template void simpleConfigStream(std::stringstream& out, Args... args) { out << ""; simpleConfigStreamProperty(out, args...); out << ""; } template void damagedConfigStreamProperty(std::stringstream& out, T key, U value) { out << "" << "" << key << "" << "" << value << "" << ""; } template void damagedConfigStreamProperty(std::stringstream& out, T key, U value, Args... args) { damagedConfigStreamProperty(out, key, value); damagedConfigStreamProperty(out, args...); } template void damagedConfigStream(std::stringstream& out, Args... args) { out << ""; damagedConfigStreamProperty(out, args...); out << ""; } template optional simpleConfig(Args... args) { std::stringstream stream; simpleConfigStream(stream, args...); ConfigurationLoader config_loader; config_loader.ClearSearchPath(); optional parse = config_loader.Load(stream.str()); EXPECT_TRUE((bool)parse); return parse; } template void writeSimpleConfig(const std::string& filename, Args... args) { std::stringstream stream; simpleConfigStream(stream, args...); std::ofstream out; out.open(filename); out << stream.rdbuf(); } template void writeDamagedConfig(const std::string& filename, Args... args) { std::stringstream stream; damagedConfigStream(stream, args...); std::ofstream out; out.open(filename); out << stream.rdbuf(); } // TempDir: is deleted on destruction class TempFile { public: TempFile() { std::vector tmp_buf(filename_.begin(), filename_.end()); fd_ = XPlatform::Syscall::CreateAndOpenTempFile(tmp_buf); EXPECT_NE(fd_, -1); filename_.assign(tmp_buf.data()); } TempFile(std::string fn) : filename_(std::move(fn)) {} TempFile(const TempFile& other) = default; TempFile(TempFile&& other) noexcept : filename_{std::move(other.filename_)}, fd_{other.fd_} {} TempFile& operator=(const TempFile& other) { if (&other != this) { filename_ = other.filename_; fd_ = other.fd_; } return *this; } TempFile& operator=(TempFile&& other) noexcept { if (&other != this) { filename_ = std::move(other.filename_); fd_ = other.fd_; } return *this; } [[nodiscard]] const std::string& GetFileName() const { return filename_; } ~TempFile() { if (-1 != fd_) { EXPECT_NE(XPlatform::Syscall::CloseFile(fd_), -1); } unlink(filename_.c_str()); } private: std::string filename_{"/tmp/test_XXXXXXXXXX"}; int fd_{-1}; }; // Callback to remove a directory in the nftw visitor int nftw_remove(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf) { (void)sb; (void)typeflag; (void)ftwbuf; int rv = remove(fpath); EXPECT_EQ(0, rv); return rv; } // TempDir: is created in ctor and recursively deletes in dtor class TempDir { public: TempDir() { std::vector path_pattern(path_.begin(), path_.end()); is_path_init_ = XPlatform::Syscall::CreateTempDir(path_pattern); EXPECT_TRUE(is_path_init_); path_.assign(path_pattern.data()); } TempDir(const TempDir& other) = default; TempDir(TempDir&& other) noexcept : path_{std::move(other.path_)} {} TempDir& operator=(const TempDir& other) { if (&other != this) { path_ = other.path_; } return *this; } TempDir& operator=(TempDir&& other) noexcept { if (&other != this) { path_ = std::move(other.path_); } return *this; } [[nodiscard]] const std::string& GetPath() const { return path_; } ~TempDir() { if (is_path_init_) { nftw(path_.c_str(), nftw_remove, 64, FTW_DEPTH | FTW_PHYS); } } private: std::string path_{"/tmp/test_dir_XXXXXXXXXX"}; bool is_path_init_{false}; }; } #endif