// Copyright 2022 Huawei Cloud Computing Technology Co., Ltd. // // 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. #ifndef INCLUDED_SRC_TEST_BUILDTOOL_BUILD_ENGINE_BASE_MAPS_TEST_REPO_HPP #define INCLUDED_SRC_TEST_BUILDTOOL_BUILD_ENGINE_BASE_MAPS_TEST_REPO_HPP #include #include #include #include #include #include "fmt/core.h" #include "src/buildtool/file_system/file_system_manager.hpp" #include "test/utils/shell_quoting.hpp" static auto const kBasePath = std::filesystem::path{"test/buildtool/build_engine/base_maps"}; static auto const kBundlePath = kBasePath / "data/test_repo.bundle"; static auto const kSrcTreeId = std::string{"6d57ba31821f69286e280334e4fd5f9dbd141721"}; static auto const kSrcLinkIdSha1 = std::string{"2995a4d0e74917fd3e1383c577d0fc301fff1b04"}; static auto const kSrcLinkIdSha256 = std::string{ "b5a2c96250612366ea272ffac6d9744aaf4b45aacd96aa7cfcb931ee3b558259"}; static auto const kRuleTreeId = std::string{"c6dd902c9d4e7afa8b20eb04e58503e63ecab84d"}; static auto const kExprTreeId = std::string{"4946bd21d0a5b3e0c82d6944f3d47adaf1bb66f7"}; static auto const kJsonTreeId = std::string{"6982563dfc4dcdd1362792dbbc9d8243968d1ec9"}; static auto const kEmptySha1 = std::string{"e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"}; static auto const kEmptySha256 = std::string{ "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"}; [[nodiscard]] static inline auto GetTestDir() -> std::filesystem::path { auto* tmp_dir = std::getenv("TEST_TMPDIR"); if (tmp_dir != nullptr) { return tmp_dir; } return FileSystemManager::GetCurrentDirectory() / kBasePath; } [[nodiscard]] static inline auto CreateTestRepo() -> std::optional { static std::atomic counter{}; auto repo_path = GetTestDir() / "test_repo" / std::filesystem::path{std::to_string(counter++)}.filename(); auto cmd = fmt::format("git clone --bare {} {}", QuoteForShell(kBundlePath.string()), QuoteForShell(repo_path.string())); if (std::system(cmd.c_str()) == 0) { return repo_path; } return std::nullopt; } #endif // INCLUDED_SRC_TEST_BUILDTOOL_BUILD_ENGINE_BASE_MAPS_TEST_REPO_HPP