| //===-- Unittests for fstatvfs --------------------------------------------===// |
| // |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| // |
| //===----------------------------------------------------------------------===// |
| |
| #include "hdr/fcntl_macros.h" |
| #include "src/__support/macros/config.h" |
| #include "src/fcntl/open.h" |
| #include "src/sys/stat/mkdirat.h" |
| #include "src/sys/statvfs/fstatvfs.h" |
| #include "src/unistd/close.h" |
| #include "src/unistd/rmdir.h" |
| #include "test/UnitTest/ErrnoSetterMatcher.h" |
| #include "test/UnitTest/Test.h" |
| |
| using namespace LIBC_NAMESPACE::testing::ErrnoSetterMatcher; |
| |
| TEST(LlvmLibcSysFStatvfsTest, FStatvfsBasic) { |
| struct statvfs buf; |
| |
| int fd = LIBC_NAMESPACE::open("/", O_PATH); |
| ASSERT_ERRNO_SUCCESS(); |
| ASSERT_GT(fd, 0); |
| |
| // The root of the file directory must always exist |
| ASSERT_THAT(LIBC_NAMESPACE::fstatvfs(fd, &buf), Succeeds()); |
| ASSERT_THAT(LIBC_NAMESPACE::close(fd), Succeeds(0)); |
| } |
| |
| TEST(LlvmLibcSysFStatvfsTest, FStatvfsInvalidPath) { |
| struct statvfs buf; |
| |
| constexpr const char *FILENAME = "testdata/statvfs.testdir"; |
| auto TEST_DIR = libc_make_test_file_path(FILENAME); |
| |
| ASSERT_THAT(LIBC_NAMESPACE::mkdirat(AT_FDCWD, TEST_DIR, S_IRWXU), |
| Succeeds(0)); |
| |
| int fd = LIBC_NAMESPACE::open(TEST_DIR, O_PATH); |
| ASSERT_ERRNO_SUCCESS(); |
| ASSERT_GT(fd, 0); |
| |
| // create the file, assert it exists, then delete it and assert it doesn't |
| // exist anymore. |
| |
| ASSERT_THAT(LIBC_NAMESPACE::fstatvfs(fd, &buf), Succeeds()); |
| |
| ASSERT_THAT(LIBC_NAMESPACE::rmdir(TEST_DIR), Succeeds(0)); |
| |
| ASSERT_THAT(LIBC_NAMESPACE::fstatvfs(fd, &buf), Fails(ENOENT)); |
| ASSERT_THAT(LIBC_NAMESPACE::close(fd), Succeeds(0)); |
| ASSERT_THAT(LIBC_NAMESPACE::fstatvfs(fd, &buf), Fails(ENOENT)); |
| } |