blob: abc50e9c6a41dbbe25ec4a714121cdda4fbd5c2d [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// <experimental/filesystem>
// uintmax_t hard_link_count(const path& p);
// uintmax_t hard_link_count(const path& p, std::error_code& ec) noexcept;
#include <experimental/filesystem>
#include <type_traits>
#include <cassert>
#include "test_macros.h"
#include "rapid-cxx-test.hpp"
#include "filesystem_test_helper.hpp"
using namespace std::experimental::filesystem;
TEST_SUITE(hard_link_count_test_suite)
TEST_CASE(signature_test)
{
const path p; ((void)p);
std::error_code ec; ((void)ec);
ASSERT_SAME_TYPE(decltype(hard_link_count(p)), uintmax_t);
ASSERT_SAME_TYPE(decltype(hard_link_count(p, ec)), uintmax_t);
ASSERT_NOT_NOEXCEPT(hard_link_count(p));
ASSERT_NOEXCEPT(hard_link_count(p, ec));
}
TEST_CASE(hard_link_count_for_file)
{
TEST_CHECK(hard_link_count(StaticEnv::File) == 1);
std::error_code ec;
TEST_CHECK(hard_link_count(StaticEnv::File, ec) == 1);
}
TEST_CASE(hard_link_count_for_directory)
{
uintmax_t DirExpect = 3;
uintmax_t Dir3Expect = 2;
#if defined(__APPLE__)
DirExpect += 2;
Dir3Expect += 1;
#endif
TEST_CHECK(hard_link_count(StaticEnv::Dir) == DirExpect);
TEST_CHECK(hard_link_count(StaticEnv::Dir3) == Dir3Expect);
std::error_code ec;
TEST_CHECK(hard_link_count(StaticEnv::Dir, ec) == DirExpect);
TEST_CHECK(hard_link_count(StaticEnv::Dir3, ec) == Dir3Expect);
}
TEST_CASE(hard_link_count_increments_test)
{
scoped_test_env env;
const path file = env.create_file("file", 42);
TEST_CHECK(hard_link_count(file) == 1);
env.create_hardlink(file, "file_hl");
TEST_CHECK(hard_link_count(file) == 2);
}
TEST_CASE(hard_link_count_error_cases)
{
const path testCases[] = {
StaticEnv::BadSymlink,
StaticEnv::DNE
};
const uintmax_t expect = static_cast<uintmax_t>(-1);
for (auto& TC : testCases) {
std::error_code ec;
TEST_CHECK(hard_link_count(TC, ec) == expect);
TEST_CHECK(ec);
}
}
TEST_SUITE_END()