aboutsummaryrefslogtreecommitdiff
path: root/test/common/platform/unix/UnixFileTest.cpp
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-09-03 12:42:10 +0800
committerYuqian Yang <crupest@crupest.life>2025-09-03 12:42:10 +0800
commitefa1266f10e90c0c46f47cc06645422142cb2d9f (patch)
tree3d8cfefb81ce4645d150c08fc52ad646b6da80e2 /test/common/platform/unix/UnixFileTest.cpp
parent5e59a8e38c9f8992e6ffd9dbbde11e1f873780e1 (diff)
downloadcru-efa1266f10e90c0c46f47cc06645422142cb2d9f.tar.gz
cru-efa1266f10e90c0c46f47cc06645422142cb2d9f.tar.bz2
cru-efa1266f10e90c0c46f47cc06645422142cb2d9f.zip
common -> base in test dir.
Diffstat (limited to 'test/common/platform/unix/UnixFileTest.cpp')
-rw-r--r--test/common/platform/unix/UnixFileTest.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/test/common/platform/unix/UnixFileTest.cpp b/test/common/platform/unix/UnixFileTest.cpp
deleted file mode 100644
index d5bba0db..00000000
--- a/test/common/platform/unix/UnixFileTest.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-
-#include "cru/base/platform/unix/UnixFileStream.h"
-
-#include <catch2/catch_test_macros.hpp>
-
-#include <fcntl.h>
-#include <filesystem>
-
-TEST_CASE("UnixFile Work", "[unix]") {
- using namespace cru;
- using namespace cru::platform::unix;
-
- auto calledTimes = 0;
- auto mockClose = [&calledTimes](int _) {
- calledTimes += 1;
- return 0;
- };
-
- auto temp_file_path =
- (std::filesystem::temp_directory_path() / "cru_test_temp.XXXXXX")
- .generic_string();
- mkstemp(temp_file_path.data());
-
- auto fdNumber = ::open(temp_file_path.c_str(), O_WRONLY | O_CREAT);
-
- {
- UnixFileDescriptor fd(fdNumber, true, std::move(mockClose));
- REQUIRE(calledTimes == 0);
- UnixFileDescriptor fd2(std::move(fd));
- REQUIRE(calledTimes == 0);
- UnixFileDescriptor fd3;
- fd3 = std::move(fd2);
- REQUIRE(calledTimes == 0);
- }
- REQUIRE(calledTimes == 1);
-
- std::filesystem::remove(temp_file_path);
-}