1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++03
// <filesystem>
// file_status symlink_status(const path& p);
// file_status symlink_status(const path& p, error_code& ec) noexcept;
#include "filesystem_include.h"
#include "test_macros.h"
#include "rapid-cxx-test.h"
#include "filesystem_test_helper.h"
using namespace fs;
TEST_SUITE(filesystem_symlink_status_test_suite)
TEST_CASE(signature_test)
{
const path p; ((void)p);
std::error_code ec; ((void)ec);
ASSERT_NOT_NOEXCEPT(symlink_status(p));
ASSERT_NOEXCEPT(symlink_status(p, ec));
}
TEST_CASE(test_symlink_status_not_found)
{
static_test_env static_env;
const std::errc expect_errc = std::errc::no_such_file_or_directory;
const path cases[] {
static_env.DNE
};
for (auto& p : cases) {
std::error_code ec = std::make_error_code(std::errc::address_in_use);
// test non-throwing overload.
file_status st = symlink_status(p, ec);
TEST_CHECK(ErrorIs(ec, expect_errc));
TEST_CHECK(st.type() == file_type::not_found);
TEST_CHECK(st.permissions() == perms::unknown);
// test throwing overload. It should not throw even though it reports
// that the file was not found.
TEST_CHECK_NO_THROW(st = status(p));
TEST_CHECK(st.type() == file_type::not_found);
TEST_CHECK(st.permissions() == perms::unknown);
}
}
// Windows doesn't support setting perms::none to trigger failures
// reading directories. Imaginary files under GetWindowsInaccessibleDir()
// produce no_such_file_or_directory, not the error codes this test checks
// for. Finally, status() for a too long file name doesn't return errors
// on windows.
#ifndef TEST_WIN_NO_FILESYSTEM_PERMS_NONE
TEST_CASE(test_symlink_status_cannot_resolve)
{
scoped_test_env env;
const path dir = env.create_dir("dir");
const path file_in_dir = env.create_file("dir/file", 42);
const path sym_in_dir = env.create_symlink("dir/file", "dir/bad_sym");
const path sym_points_in_dir = env.create_symlink("dir/file", "sym");
permissions(dir, perms::none);
const std::errc set_errc = std::errc::address_in_use;
const std::errc expect_errc = std::errc::permission_denied;
const path fail_cases[] = {
file_in_dir, sym_in_dir
};
for (auto& p : fail_cases)
{
{ // test non-throwing case
std::error_code ec = std::make_error_code(set_errc);
file_status st = symlink_status(p, ec);
TEST_CHECK(ErrorIs(ec, expect_errc));
TEST_CHECK(st.type() == file_type::none);
TEST_CHECK(st.permissions() == perms::unknown);
}
#ifndef TEST_HAS_NO_EXCEPTIONS
{ // test throwing case
try {
(void)symlink_status(p);
} catch (filesystem_error const& err) {
TEST_CHECK(err.path1() == p);
TEST_CHECK(err.path2() == "");
TEST_CHECK(ErrorIs(err.code(), expect_errc));
}
}
#endif
}
// Test that a symlink that points into a directory without read perms
// can be stat-ed using symlink_status
{
std::error_code ec = std::make_error_code(set_errc);
file_status st = symlink_status(sym_points_in_dir, ec);
TEST_CHECK(!ec);
TEST_CHECK(st.type() == file_type::symlink);
TEST_CHECK(st.permissions() != perms::unknown);
// test non-throwing version
TEST_REQUIRE_NO_THROW(st = symlink_status(sym_points_in_dir));
TEST_CHECK(st.type() == file_type::symlink);
TEST_CHECK(st.permissions() != perms::unknown);
}
}
#endif
TEST_CASE(symlink_status_file_types_test)
{
static_test_env static_env;
scoped_test_env env;
struct TestCase {
path p;
file_type expect_type;
} cases[] = {
{static_env.BadSymlink, file_type::symlink},
{static_env.File, file_type::regular},
{static_env.SymlinkToFile, file_type::symlink},
{static_env.Dir, file_type::directory},
{static_env.SymlinkToDir, file_type::symlink},
// file_type::block files tested elsewhere
#ifndef _WIN32
{static_env.CharFile, file_type::character},
#endif
#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(_WIN32) // No support for domain sockets
{env.create_socket("socket"), file_type::socket},
#endif
#ifndef _WIN32
{env.create_fifo("fifo"), file_type::fifo}
#endif
};
for (const auto& TC : cases) {
// test non-throwing case
std::error_code ec = std::make_error_code(std::errc::address_in_use);
file_status st = symlink_status(TC.p, ec);
TEST_CHECK(!ec);
TEST_CHECK(st.type() == TC.expect_type);
TEST_CHECK(st.permissions() != perms::unknown);
// test throwing case
TEST_REQUIRE_NO_THROW(st = symlink_status(TC.p));
TEST_CHECK(st.type() == TC.expect_type);
TEST_CHECK(st.permissions() != perms::unknown);
}
}
TEST_CASE(test_block_file)
{
const path possible_paths[] = {
"/dev/drive0", // Apple
"/dev/sda", // Linux
"/dev/loop0" // Linux
// No FreeBSD files known
};
path p;
for (const path& possible_p : possible_paths) {
std::error_code ec;
if (exists(possible_p, ec)) {
p = possible_p;
break;
}
}
if (p == path{}) {
TEST_UNSUPPORTED();
}
scoped_test_env env;
{ // test block file
// test non-throwing case
std::error_code ec = std::make_error_code(std::errc::address_in_use);
file_status st = symlink_status(p, ec);
TEST_CHECK(!ec);
TEST_CHECK(st.type() == file_type::block);
TEST_CHECK(st.permissions() != perms::unknown);
// test throwing case
TEST_REQUIRE_NO_THROW(st = symlink_status(p));
TEST_CHECK(st.type() == file_type::block);
TEST_CHECK(st.permissions() != perms::unknown);
}
const path sym = env.make_env_path("sym");
create_symlink(p, sym);
{ // test symlink to block file
// test non-throwing case
std::error_code ec = std::make_error_code(std::errc::address_in_use);
file_status st = symlink_status(sym, ec);
TEST_CHECK(!ec);
TEST_CHECK(st.type() == file_type::symlink);
TEST_CHECK(st.permissions() != perms::unknown);
// test throwing case
TEST_REQUIRE_NO_THROW(st = symlink_status(sym));
TEST_CHECK(st.type() == file_type::symlink);
TEST_CHECK(st.permissions() != perms::unknown);
}
}
TEST_SUITE_END()
|