Use GLOG_* environment variables even when gflags is installed.
[platform/upstream/glog.git] / src / demangle_unittest.cc
1 // Copyright (c) 2006, Google Inc.
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are
6 // met:
7 //
8 //     * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 //     * Redistributions in binary form must reproduce the above
11 // copyright notice, this list of conditions and the following disclaimer
12 // in the documentation and/or other materials provided with the
13 // distribution.
14 //     * Neither the name of Google Inc. nor the names of its
15 // contributors may be used to endorse or promote products derived from
16 // this software without specific prior written permission.
17 //
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // Author: Satoru Takabayashi
31 //
32 // Unit tests for functions in demangle.c.
33
34 #include "utilities.h"
35
36 #include <iostream>
37 #include <fstream>
38 #include <string>
39 #include "glog/logging.h"
40 #include "demangle.h"
41 #include "googletest.h"
42 #include "config.h"
43
44 GLOG_DEFINE_bool(demangle_filter, false,
45                  "Run demangle_unittest in filter mode");
46
47 using namespace std;
48 using namespace GOOGLE_NAMESPACE;
49
50 // A wrapper function for Demangle() to make the unit test simple.
51 static const char *DemangleIt(const char * const mangled) {
52   static char demangled[4096];
53   if (Demangle(mangled, demangled, sizeof(demangled))) {
54     return demangled;
55   } else {
56     return mangled;
57   }
58 }
59
60 // Test corner cases of bounary conditions.
61 TEST(Demangle, CornerCases) {
62   char tmp[10];
63   EXPECT_TRUE(Demangle("_Z6foobarv", tmp, sizeof(tmp)));
64   // sizeof("foobar()") == 9
65   EXPECT_STREQ("foobar()", tmp);
66   EXPECT_TRUE(Demangle("_Z6foobarv", tmp, 9));
67   EXPECT_STREQ("foobar()", tmp);
68   EXPECT_FALSE(Demangle("_Z6foobarv", tmp, 8));  // Not enough.
69   EXPECT_FALSE(Demangle("_Z6foobarv", tmp, 1));
70   EXPECT_FALSE(Demangle("_Z6foobarv", tmp, 0));
71   EXPECT_FALSE(Demangle("_Z6foobarv", NULL, 0));  // Should not cause SEGV.
72 }
73
74 TEST(Demangle, FromFile) {
75   string test_file = FLAGS_test_srcdir + "/src/demangle_unittest.txt";
76   ifstream f(test_file.c_str());  // The file should exist.
77   EXPECT_FALSE(f.fail());
78
79   string line;
80   while (getline(f, line)) {
81     // Lines start with '#' are considered as comments.
82     if (line.empty() || line[0] == '#') {
83       continue;
84     }
85     // Each line should contain a mangled name and a demangled name
86     // separated by '\t'.  Example: "_Z3foo\tfoo"
87     string::size_type tab_pos = line.find('\t');
88     EXPECT_NE(string::npos, tab_pos);
89     string mangled = line.substr(0, tab_pos);
90     string demangled = line.substr(tab_pos + 1);
91     EXPECT_EQ(demangled, DemangleIt(mangled.c_str()));
92   }
93 }
94
95 int main(int argc, char **argv) {
96 #ifdef HAVE_LIB_GFLAGS
97   ParseCommandLineFlags(&argc, &argv, true);
98 #endif
99   InitGoogleTest(&argc, argv);
100
101   FLAGS_logtostderr = true;
102   InitGoogleLogging(argv[0]);
103   if (FLAGS_demangle_filter) {
104     // Read from cin and write to cout.
105     string line;
106     while (getline(cin, line, '\n')) {
107       cout << DemangleIt(line.c_str()) << endl;
108     }
109     return 0;
110   } else if (argc > 1) {
111     cout << DemangleIt(argv[1]) << endl;
112     return 0;
113   } else {
114     return RUN_ALL_TESTS();
115   }
116 }