]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/27_io/filesystem/operations/symlink_status.cc
libstdc++: Remove redundant -std=gnu++17 options from filesystem tests
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / filesystem / operations / symlink_status.cc
1 // Copyright (C) 2017-2021 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // { dg-do run { target c++17 } }
19 // { dg-require-filesystem-ts "" }
20 // { dg-xfail-if "symlinks not supported" { *-*-mingw* } }
21
22 #include <filesystem>
23 #include <testsuite_hooks.h>
24 #include <testsuite_fs.h>
25
26 namespace fs = std::filesystem;
27
28 void
29 test01()
30 {
31 const std::error_code bad_ec = make_error_code(std::errc::invalid_argument);
32 std::error_code ec = bad_ec;
33 fs::path dot = ".";
34
35 fs::file_status st1 = fs::symlink_status(dot, ec);
36 VERIFY( !ec );
37 VERIFY( st1.type() == fs::file_type::directory );
38
39 fs::file_status st2 = fs::symlink_status(dot);
40 VERIFY( st2.type() == fs::file_type::directory );
41
42 fs::path link = __gnu_test::nonexistent_path();
43 create_directory_symlink(dot, link);
44 __gnu_test::scoped_file l(link, __gnu_test::scoped_file::adopt_file);
45
46 st1 = fs::symlink_status(link);
47 VERIFY( st1.type() == fs::file_type::symlink );
48 ec = bad_ec;
49 st2 = fs::symlink_status(link, ec);
50 VERIFY( !ec );
51 VERIFY( st2.type() == fs::file_type::symlink );
52 }
53
54 void
55 test02()
56 {
57 fs::path p = __gnu_test::nonexistent_path();
58
59 std::error_code ec;
60 fs::file_status st1 = fs::symlink_status(p, ec);
61 VERIFY( ec );
62 VERIFY( st1.type() == fs::file_type::not_found );
63
64 fs::file_status st2 = fs::symlink_status(p);
65 VERIFY( st2.type() == fs::file_type::not_found );
66 }
67
68 void
69 test03()
70 {
71 fs::path dir = __gnu_test::nonexistent_path();
72 fs::create_directory(dir);
73 __gnu_test::scoped_file d(dir, __gnu_test::scoped_file::adopt_file);
74 __gnu_test::scoped_file f(dir / "file");
75 fs::permissions(dir, fs::perms::none);
76 auto link = __gnu_test::nonexistent_path();
77 fs::create_symlink(f.path, link);
78 __gnu_test::scoped_file l(link, __gnu_test::scoped_file::adopt_file);
79
80 std::error_code ec;
81 fs::file_status st = fs::symlink_status(f.path, ec);
82 VERIFY( ec.value() == (int)std::errc::permission_denied );
83 VERIFY( st.type() == fs::file_type::none );
84
85 st = fs::symlink_status(link, ec);
86 VERIFY( !ec );
87 VERIFY( st.type() == fs::file_type::symlink );
88
89 #if __cpp_exceptions
90 bool caught = false;
91 std::error_code ec2;
92 fs::path p, p2;
93 try {
94 fs::symlink_status(f.path);
95 } catch (const fs::filesystem_error& e) {
96 caught = true;
97 p = e.path1();
98 p2 = e.path2();
99 ec2 = e.code();
100 }
101 VERIFY( caught );
102 VERIFY( ec2.value() == (int)std::errc::permission_denied );
103 VERIFY( p == f.path );
104 VERIFY( p2.empty() );
105 #endif
106
107 fs::file_status st2 = symlink_status(link);
108 VERIFY( st2.type() == fs::file_type::symlink );
109
110 fs::permissions(dir, fs::perms::owner_all, ec);
111 }
112
113 void
114 test04()
115 {
116 // PR libstdc++/88881
117 fs::path p = "./";
118 auto st = symlink_status(p);
119 VERIFY( is_directory(st) );
120 }
121
122 int
123 main()
124 {
125 test01();
126 test02();
127 test03();
128 test04();
129 }