| // Copyright 2023 The Centipede Authors. |
| // |
| // 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 |
| // |
| // https://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 "./common/remote_file.h" |
| |
| #include <filesystem> // NOLINT |
| #include <fstream> |
| #include <string> |
| #include <string_view> |
| |
| #include "gmock/gmock.h" |
| #include "gtest/gtest.h" |
| #include "absl/log/check.h" |
| #include "./common/logging.h" |
| #include "./common/test_util.h" |
| |
| namespace centipede { |
| namespace { |
| |
| namespace fs = std::filesystem; |
| |
| using ::testing::IsEmpty; |
| using ::testing::UnorderedElementsAre; |
| |
| void CreateFileOrDie(std::string_view path, std::string_view contents = "") { |
| std::ofstream f{std::string(path)}; |
| CHECK(f.good()) << VV(path); |
| f << contents; |
| CHECK(f.good()) << VV(path); |
| } |
| |
| TEST(RemoteFile, GetSize) { |
| const fs::path temp_dir{GetTestTempDir(test_info_->name())}; |
| const std::string file_path = temp_dir / "file_01"; |
| { |
| const std::string file_contents1 = "abcd1234"; |
| CreateFileOrDie(file_path, file_contents1); |
| EXPECT_EQ(RemoteFileGetSize(file_path), file_contents1.size()); |
| } |
| { |
| const std::string file_contents2 = "efg567"; |
| RemoteFileSetContents(file_path, file_contents2); |
| EXPECT_EQ(RemoteFileGetSize(file_path), file_contents2.size()); |
| } |
| } |
| |
| TEST(RemoteMkdir, CreatesMissingParentDirectories) { |
| const fs::path temp_dir = GetTestTempDir(test_info_->name()); |
| const std::string dir_path = temp_dir / "a" / "b" / "c"; |
| |
| RemoteMkdir(dir_path); |
| EXPECT_TRUE(fs::exists(dir_path)); |
| } |
| |
| TEST(RemoteListFiles, DoesNotRecurseIntoSubdirectories) { |
| const fs::path temp_dir = GetTestTempDir(test_info_->name()); |
| |
| const std::string file1_path = temp_dir / "file_01"; |
| CreateFileOrDie(file1_path); |
| const fs::path dir1_path = temp_dir / "dir_01"; |
| fs::create_directories(dir1_path); |
| const std::string file2_path = dir1_path / "file_02"; |
| CreateFileOrDie(file2_path); |
| |
| EXPECT_THAT(RemoteListFiles(temp_dir.string(), /*recursively=*/false), |
| UnorderedElementsAre(file1_path)); |
| } |
| |
| TEST(RemoteListFiles, ListsFilesInRecursiveDirectories) { |
| const fs::path temp_dir = GetTestTempDir(test_info_->name()); |
| |
| const std::string file1_path = temp_dir / "file_01"; |
| CreateFileOrDie(file1_path); |
| const std::string file2_path = temp_dir / "file_02"; |
| CreateFileOrDie(file2_path); |
| |
| const fs::path dir1_path = temp_dir / "dir_01"; |
| fs::create_directories(dir1_path); |
| const std::string file3_path = dir1_path / "file_03"; |
| CreateFileOrDie(file3_path); |
| |
| EXPECT_THAT(RemoteListFiles(temp_dir.string(), /*recursively=*/true), |
| UnorderedElementsAre(file1_path, file2_path, file3_path)); |
| } |
| |
| TEST(RemoteListFiles, ReturnsAnEmptyResultWhenNoFilesAreFound) { |
| const fs::path temp_dir = GetTestTempDir(test_info_->name()); |
| EXPECT_THAT(RemoteListFiles(temp_dir.string(), /*recursively=*/false), |
| IsEmpty()); |
| } |
| |
| TEST(RemoteListFiles, ReturnsASingleFileWhenListingAFile) { |
| const fs::path temp_dir = GetTestTempDir(test_info_->name()); |
| |
| const std::string file1_path = temp_dir / "file_01"; |
| CreateFileOrDie(file1_path); |
| |
| EXPECT_THAT(RemoteListFiles(temp_dir.string(), /*recursively=*/false), |
| UnorderedElementsAre(file1_path)); |
| } |
| |
| TEST(RemoteListFiles, ReturnsAnEmptyVectorWhenPathDoesNotExist) { |
| EXPECT_THAT( |
| RemoteListFiles("/this/file/path/does/not/exist", /*recursively=*/false), |
| IsEmpty()); |
| } |
| |
| TEST(RemotePathDelete, RecursivelyDeletesAllFilesAndSubdirectories) { |
| const fs::path temp_dir = GetTestTempDir(test_info_->name()); |
| const fs::path a_b_c = temp_dir / "a" / "b" / "c"; |
| CHECK(fs::create_directories(a_b_c)) << VV(a_b_c); |
| const std::string file_path = a_b_c / "file"; |
| CreateFileOrDie(file_path); |
| |
| RemotePathDelete(temp_dir.string(), /*recursively=*/true); |
| EXPECT_FALSE(fs::exists(a_b_c)); |
| } |
| |
| } // namespace |
| } // namespace centipede |