blob: 2c7c3cba9e60e3c6de71fc1aae0cd869744ee6d3 [file] [log] [blame]
Michael J. Spencer013d15a2010-11-29 22:29:04 +00001//===- llvm/unittest/Support/Path.cpp - Path tests ------------------------===//
Michael J. Spencerf2ca4cb2010-11-24 19:20:05 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000010#include "llvm/Support/PathV2.h"
Michael J. Spencer861ef4b2010-11-24 19:20:28 +000011
Michael J. Spencerf2ca4cb2010-11-24 19:20:05 +000012#include "gtest/gtest.h"
13
Michael J. Spencerdffde992010-11-29 22:28:51 +000014using namespace llvm;
15
Michael J. Spencerf2ca4cb2010-11-24 19:20:05 +000016namespace {
17
Michael J. Spencer013d15a2010-11-29 22:29:04 +000018TEST(Support, Path) {
Michael J. Spencerdffde992010-11-29 22:28:51 +000019 SmallVector<StringRef, 40> paths;
20 paths.push_back("");
21 paths.push_back(".");
22 paths.push_back("..");
23 paths.push_back("foo");
24 paths.push_back("/");
25 paths.push_back("/foo");
26 paths.push_back("foo/");
27 paths.push_back("/foo/");
28 paths.push_back("foo/bar");
29 paths.push_back("/foo/bar");
30 paths.push_back("//net");
31 paths.push_back("//net/foo");
32 paths.push_back("///foo///");
33 paths.push_back("///foo///bar");
34 paths.push_back("/.");
35 paths.push_back("./");
36 paths.push_back("/..");
37 paths.push_back("../");
38 paths.push_back("foo/.");
39 paths.push_back("foo/..");
40 paths.push_back("foo/./");
41 paths.push_back("foo/./bar");
42 paths.push_back("foo/..");
43 paths.push_back("foo/../");
44 paths.push_back("foo/../bar");
45 paths.push_back("c:");
46 paths.push_back("c:/");
47 paths.push_back("c:foo");
48 paths.push_back("c:/foo");
49 paths.push_back("c:foo/");
50 paths.push_back("c:/foo/");
51 paths.push_back("c:/foo/bar");
52 paths.push_back("prn:");
53 paths.push_back("c:\\");
54 paths.push_back("c:foo");
55 paths.push_back("c:\\foo");
56 paths.push_back("c:foo\\");
57 paths.push_back("c:\\foo\\");
58 paths.push_back("c:\\foo/");
59 paths.push_back("c:/foo\\bar");
60
61 for (SmallVector<StringRef, 40>::const_iterator i = paths.begin(),
62 e = paths.end();
63 i != e;
64 ++i) {
65 outs() << *i << " =>\n Iteration: [";
66 for (sys::path::const_iterator ci = sys::path::begin(*i),
67 ce = sys::path::end(*i);
68 ci != ce;
69 ++ci) {
70 outs() << *ci << ',';
71 }
72 outs() << "]\n";
73
74 StringRef res;
75 SmallString<16> temp_store;
Michael J. Spencer1f986402010-11-29 23:35:49 +000076 if (error_code ec = sys::path::root_path(*i, res))
77 ASSERT_FALSE(ec.message().c_str());
Michael J. Spencerdffde992010-11-29 22:28:51 +000078 outs() << " root_path: " << res << '\n';
Michael J. Spencer1f986402010-11-29 23:35:49 +000079 if (error_code ec = sys::path::root_name(*i, res))
80 ASSERT_FALSE(ec.message().c_str());
Michael J. Spencerdffde992010-11-29 22:28:51 +000081 outs() << " root_name: " << res << '\n';
Michael J. Spencer1f986402010-11-29 23:35:49 +000082 if (error_code ec = sys::path::root_directory(*i, res))
83 ASSERT_FALSE(ec.message().c_str());
Michael J. Spencerdffde992010-11-29 22:28:51 +000084 outs() << " root_directory: " << res << '\n';
85
86 temp_store = *i;
Michael J. Spencer1f986402010-11-29 23:35:49 +000087 if (error_code ec = sys::path::make_absolute(temp_store))
88 ASSERT_FALSE(ec.message().c_str());
Michael J. Spencerdffde992010-11-29 22:28:51 +000089 outs() << " make_absolute: " << temp_store << '\n';
90
91 outs().flush();
92 }
Michael J. Spencerf2ca4cb2010-11-24 19:20:05 +000093}
94
95} // anonymous namespace