aboutsummaryrefslogtreecommitdiffstats
path: root/unittests/Support/Path.cpp
blob: ecf818b5d458d38b366731e70adf54d32e5cc2f2 (plain)
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
//===- llvm/unittest/Support/Path.cpp - Path tests ------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "llvm/Support/FileSystem.h"
#include "llvm/Support/PathV2.h"

#include "gtest/gtest.h"

using namespace llvm;
using namespace llvm::sys;

#define TEST_OUT(func, result) outs() << "    " #func ": " << result << '\n';

#define TEST_PATH_(header, func, funcname, output) \
  header; \
  if (error_code ec = sys::path::func) \
    ASSERT_FALSE(ec.message().c_str()); \
  TEST_OUT(funcname, output)

#define TEST_PATH(func, ipath, res) TEST_PATH_(;, func(ipath, res), func, res);

#define TEST_PATH_SMALLVEC(func, ipath, inout) \
  TEST_PATH_(inout = ipath, func(inout), func, inout)

#define TEST_PATH_SMALLVEC_P(func, ipath, inout, param) \
  TEST_PATH_(inout = ipath, func(inout, param), func, inout)

namespace {

TEST(Support, Path) {
  SmallVector<StringRef, 40> paths;
  paths.push_back("");
  paths.push_back(".");
  paths.push_back("..");
  paths.push_back("foo");
  paths.push_back("/");
  paths.push_back("/foo");
  paths.push_back("foo/");
  paths.push_back("/foo/");
  paths.push_back("foo/bar");
  paths.push_back("/foo/bar");
  paths.push_back("//net");
  paths.push_back("//net/foo");
  paths.push_back("///foo///");
  paths.push_back("///foo///bar");
  paths.push_back("/.");
  paths.push_back("./");
  paths.push_back("/..");
  paths.push_back("../");
  paths.push_back("foo/.");
  paths.push_back("foo/..");
  paths.push_back("foo/./");
  paths.push_back("foo/./bar");
  paths.push_back("foo/..");
  paths.push_back("foo/../");
  paths.push_back("foo/../bar");
  paths.push_back("c:");
  paths.push_back("c:/");
  paths.push_back("c:foo");
  paths.push_back("c:/foo");
  paths.push_back("c:foo/");
  paths.push_back("c:/foo/");
  paths.push_back("c:/foo/bar");
  paths.push_back("prn:");
  paths.push_back("c:\\");
  paths.push_back("c:foo");
  paths.push_back("c:\\foo");
  paths.push_back("c:foo\\");
  paths.push_back("c:\\foo\\");
  paths.push_back("c:\\foo/");
  paths.push_back("c:/foo\\bar");

  for (SmallVector<StringRef, 40>::const_iterator i = paths.begin(),
                                                  e = paths.end();
                                                  i != e;
                                                  ++i) {
    outs() << *i << " =>\n    Iteration: [";
    for (sys::path::const_iterator ci = sys::path::begin(*i),
                                   ce = sys::path::end(*i);
                                   ci != ce;
                                   ++ci) {
      outs() << *ci << ',';
    }
    outs() << "]\n";

#if 0 // Valgrind is whining about this.
    outs() << "    Reverse Iteration: [";
    for (sys::path::reverse_iterator ci = sys::path::rbegin(*i),
                                     ce = sys::path::rend(*i);
                                     ci != ce;
                                     ++ci) {
      outs() << *ci << ',';
    }
    outs() << "]\n";
#endif

    bool      bres;
    StringRef sfres;
    TEST_PATH(has_root_path, *i, bres);
    TEST_PATH(root_path, *i, sfres);
    TEST_PATH(has_root_name, *i, bres);
    TEST_PATH(root_name, *i, sfres);
    TEST_PATH(has_root_directory, *i, bres);
    TEST_PATH(root_directory, *i, sfres);
    TEST_PATH(has_parent_path, *i, bres);
    TEST_PATH(parent_path, *i, sfres);
    TEST_PATH(has_filename, *i, bres);
    TEST_PATH(filename, *i, sfres);
    TEST_PATH(has_stem, *i, bres);
    TEST_PATH(stem, *i, sfres);
    TEST_PATH(has_extension, *i, bres);
    TEST_PATH(extension, *i, sfres);
    TEST_PATH(is_absolute, *i, bres);
    TEST_PATH(is_relative, *i, bres);

    SmallString<16> temp_store;
    TEST_PATH_SMALLVEC(make_absolute, *i, temp_store);
    TEST_PATH_SMALLVEC(remove_filename, *i, temp_store);

    TEST_PATH_SMALLVEC_P(replace_extension, *i, temp_store, "ext");
    StringRef filename(temp_store.begin(), temp_store.size()), stem, ext;
    TEST_PATH(stem, filename, stem);
    TEST_PATH(extension, filename, ext);
    EXPECT_EQ(*(--sys::path::end(filename)), (stem + ext).str());

    TEST_PATH_(;, native(*i, temp_store), native, temp_store);

    outs().flush();
  }

  int FileDescriptor;
  SmallString<64> TempPath;
  if (error_code ec = sys::fs::unique_file("%%-%%-%%-%%.temp",
                                            FileDescriptor, TempPath))
    ASSERT_FALSE(ec.message().c_str());

  bool TempFileExists;
  ASSERT_FALSE(sys::fs::exists(Twine(TempPath), TempFileExists));
  EXPECT_TRUE(TempFileExists);

  ::close(FileDescriptor);
  ::remove(TempPath.begin());

  ASSERT_FALSE(fs::exists(Twine(TempPath), TempFileExists));
  EXPECT_FALSE(TempFileExists);
}

} // anonymous namespace