Use the GTest portability headers
[folly.git] / folly / experimental / symbolizer / test / DwarfTests.cpp
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/experimental/symbolizer/Dwarf.h>
18
19 #include <folly/portability/GTest.h>
20
21 using folly::symbolizer::Dwarf;
22
23 void checkPath(
24     std::string expectedPath,
25     std::string expectedBaseDir,
26     std::string expectedSubDir,
27     std::string expectedFile,
28     std::string rawBaseDir,
29     std::string rawSubDir,
30     std::string rawFile) {
31   Dwarf::Path path(rawBaseDir, rawSubDir, rawFile);
32
33   CHECK_EQ(expectedBaseDir, path.baseDir())
34     << "Path(" << rawBaseDir << ", " << rawSubDir << ", " << rawFile << ")";
35   CHECK_EQ(expectedSubDir, path.subDir())
36     << "Path(" << rawBaseDir << ", " << rawSubDir << ", " << rawFile << ")";
37   CHECK_EQ(expectedFile, path.file())
38     << "Path(" << rawBaseDir << ", " << rawSubDir << ", " << rawFile << ")";
39
40   CHECK_EQ(expectedPath, path.toString());
41
42   // Check the the `toBuffer` function.
43   char buf[1024];
44   size_t len;
45   len = path.toBuffer(buf, 1024);
46   CHECK_EQ(expectedPath, std::string(buf, len));
47 }
48
49 TEST(Dwarf, Path) {
50   checkPath(
51     "hello.cpp",
52     "",
53     "",
54     "hello.cpp",
55     "",
56     "",
57     "hello.cpp");
58   checkPath(
59     "foo/hello.cpp",
60     "foo",
61     "",
62     "hello.cpp",
63     "foo",
64     "",
65     "hello.cpp");
66   checkPath(
67     "foo/hello.cpp",
68     "foo",
69     "",
70     "hello.cpp",
71     "",
72     "foo",
73     "hello.cpp");
74   checkPath(
75     "hello.cpp",
76     "",
77     "",
78     "hello.cpp",
79     "./////",
80     "./////",
81     "hello.cpp");
82   checkPath(
83     "/hello.cpp",
84     "/",
85     "",
86     "hello.cpp",
87     "/////",
88     "./////",
89     "hello.cpp");
90   checkPath(
91     "/hello.cpp",
92     "/",
93     "",
94     "hello.cpp",
95     "/./././././././",
96     "",
97     "hello.cpp");
98 }