]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/filesystem/operations/remove.cc
libstdc++: testsuite: conditionalize symlink tests
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / filesystem / operations / remove.cc
CommitLineData
7adcbafe 1// Copyright (C) 2018-2022 Free Software Foundation, Inc.
994844d3
JW
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
994844d3
JW
18// { dg-do run { target c++17 } }
19// { dg-require-filesystem-ts "" }
20
21#include <filesystem>
22#include <testsuite_hooks.h>
23#include <testsuite_fs.h>
24
25namespace fs = std::filesystem;
26
27void
28test01()
29{
30 std::error_code ec;
31 const std::error_code bad_ec = make_error_code(std::errc::invalid_argument);
32 bool n;
33
34 n = fs::remove("", ec);
35 VERIFY( !ec ); // This seems odd, but is what the standard requires.
36 VERIFY( !n );
37
38 auto p = __gnu_test::nonexistent_path();
39 ec = bad_ec;
40 n = remove(p, ec);
41 VERIFY( !ec );
42 VERIFY( !n );
43
9f7f25bb 44#ifndef NO_SYMLINKS
994844d3
JW
45 auto link = __gnu_test::nonexistent_path();
46 create_symlink(p, link); // dangling symlink
47 ec = bad_ec;
48 n = remove(link, ec);
49 VERIFY( !ec );
50 VERIFY( n );
51 VERIFY( !exists(symlink_status(link)) );
52
53 __gnu_test::scoped_file f(p);
54 create_symlink(p, link);
55 ec = bad_ec;
56 n = remove(link, ec);
57 VERIFY( !ec );
58 VERIFY( n );
59 VERIFY( !exists(symlink_status(link)) ); // The symlink is removed, but
60 VERIFY( exists(p) ); // its target is not.
61
62 ec = bad_ec;
63 n = remove(p, ec);
64 VERIFY( !ec );
65 VERIFY( n );
66 VERIFY( !exists(symlink_status(p)) );
edfe833a 67#endif
994844d3
JW
68
69 const auto dir = __gnu_test::nonexistent_path();
70 create_directories(dir/"a/b");
71 ec.clear();
72 n = remove(dir/"a", ec);
73 VERIFY( ec );
74 VERIFY( !n );
75 VERIFY( exists(dir/"a/b") );
76
29b2fd37 77 if (__gnu_test::permissions_are_testable())
994844d3 78 {
29b2fd37
JW
79 permissions(dir, fs::perms::none, ec);
80 if (!ec)
81 {
82 ec.clear();
83 n = remove(dir/"a/b", ec);
84 VERIFY( ec );
85 VERIFY( !n );
86 permissions(dir, fs::perms::owner_all, ec);
87 }
994844d3
JW
88 }
89
90 ec = bad_ec;
91 n = remove(dir/"a/b", ec);
92 VERIFY( !ec );
93 VERIFY( n );
94 VERIFY( !exists(dir/"a/b") );
95
96 remove(dir/"a", ec);
97 remove(dir, ec);
98}
99
100int
101main()
102{
103 test01();
104}