blob: 881352545ce680de0fa7d0bb0862136b7878ece6 [file] [log] [blame]
Dan Albert58310b42015-03-13 23:06:01 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
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
Elliott Hughes4f713192015-12-04 22:00:26 -080017#include "android-base/logging.h"
Dan Albert58310b42015-03-13 23:06:01 -070018
Elliott Hughes2e5ae002015-08-13 20:09:29 -070019#include <libgen.h>
20
Spencer Low765ae6b2015-09-17 19:36:10 -070021#if defined(_WIN32)
22#include <signal.h>
23#endif
24
Dan Albert58310b42015-03-13 23:06:01 -070025#include <regex>
26#include <string>
27
Elliott Hughes4f713192015-12-04 22:00:26 -080028#include "android-base/file.h"
29#include "android-base/stringprintf.h"
30#include "android-base/test_utils.h"
Dan Albert58310b42015-03-13 23:06:01 -070031
32#include <gtest/gtest.h>
33
34#ifdef __ANDROID__
35#define HOST_TEST(suite, name) TEST(suite, DISABLED_ ## name)
36#else
37#define HOST_TEST(suite, name) TEST(suite, name)
38#endif
39
40class CapturedStderr {
41 public:
42 CapturedStderr() : old_stderr_(-1) {
43 init();
44 }
45
46 ~CapturedStderr() {
47 reset();
48 }
49
50 int fd() const {
51 return temp_file_.fd;
52 }
53
54 private:
55 void init() {
Spencer Low765ae6b2015-09-17 19:36:10 -070056#if defined(_WIN32)
57 // On Windows, stderr is often buffered, so make sure it is unbuffered so
58 // that we can immediately read back what was written to stderr.
59 ASSERT_EQ(0, setvbuf(stderr, NULL, _IONBF, 0));
60#endif
Dan Albert58310b42015-03-13 23:06:01 -070061 old_stderr_ = dup(STDERR_FILENO);
62 ASSERT_NE(-1, old_stderr_);
63 ASSERT_NE(-1, dup2(fd(), STDERR_FILENO));
64 }
65
66 void reset() {
67 ASSERT_NE(-1, dup2(old_stderr_, STDERR_FILENO));
68 ASSERT_EQ(0, close(old_stderr_));
Spencer Low765ae6b2015-09-17 19:36:10 -070069 // Note: cannot restore prior setvbuf() setting.
Dan Albert58310b42015-03-13 23:06:01 -070070 }
71
72 TemporaryFile temp_file_;
73 int old_stderr_;
74};
75
Spencer Low765ae6b2015-09-17 19:36:10 -070076#if defined(_WIN32)
77static void ExitSignalAbortHandler(int) {
78 _exit(3);
79}
80#endif
81
82static void SuppressAbortUI() {
83#if defined(_WIN32)
84 // We really just want to call _set_abort_behavior(0, _CALL_REPORTFAULT) to
85 // suppress the Windows Error Reporting dialog box, but that API is not
86 // available in the OS-supplied C Runtime, msvcrt.dll, that we currently
87 // use (it is available in the Visual Studio C runtime).
88 //
89 // Instead, we setup a SIGABRT handler, which is called in abort() right
90 // before calling Windows Error Reporting. In the handler, we exit the
91 // process just like abort() does.
92 ASSERT_NE(SIG_ERR, signal(SIGABRT, ExitSignalAbortHandler));
93#endif
94}
95
Dan Albertb547c852015-03-27 11:20:14 -070096TEST(logging, CHECK) {
Spencer Low765ae6b2015-09-17 19:36:10 -070097 ASSERT_DEATH({SuppressAbortUI(); CHECK(false);}, "Check failed: false ");
Dan Albert58310b42015-03-13 23:06:01 -070098 CHECK(true);
99
Spencer Low765ae6b2015-09-17 19:36:10 -0700100 ASSERT_DEATH({SuppressAbortUI(); CHECK_EQ(0, 1);}, "Check failed: 0 == 1 ");
Dan Albert58310b42015-03-13 23:06:01 -0700101 CHECK_EQ(0, 0);
102
Spencer Low765ae6b2015-09-17 19:36:10 -0700103 ASSERT_DEATH({SuppressAbortUI(); CHECK_STREQ("foo", "bar");},
104 R"(Check failed: "foo" == "bar")");
Dan Albert58310b42015-03-13 23:06:01 -0700105 CHECK_STREQ("foo", "foo");
Spencer Low765ae6b2015-09-17 19:36:10 -0700106
107 // Test whether CHECK() and CHECK_STREQ() have a dangling if with no else.
108 bool flag = false;
109 if (true)
110 CHECK(true);
111 else
112 flag = true;
113 EXPECT_FALSE(flag) << "CHECK macro probably has a dangling if with no else";
114
115 flag = false;
116 if (true)
117 CHECK_STREQ("foo", "foo");
118 else
119 flag = true;
120 EXPECT_FALSE(flag) << "CHECK_STREQ probably has a dangling if with no else";
Dan Albert58310b42015-03-13 23:06:01 -0700121}
122
Andreas Gamped8f26e22016-09-13 10:44:46 -0700123TEST(logging, DCHECK) {
124 if (android::base::kEnableDChecks) {
125 ASSERT_DEATH({SuppressAbortUI(); DCHECK(false);}, "DCheck failed: false ");
126 }
127 DCHECK(true);
128
129 if (android::base::kEnableDChecks) {
130 ASSERT_DEATH({SuppressAbortUI(); DCHECK_EQ(0, 1);}, "DCheck failed: 0 == 1 ");
131 }
132 DCHECK_EQ(0, 0);
133
134 if (android::base::kEnableDChecks) {
135 ASSERT_DEATH({SuppressAbortUI(); DCHECK_STREQ("foo", "bar");},
136 R"(DCheck failed: "foo" == "bar")");
137 }
138 DCHECK_STREQ("foo", "foo");
139
140 // No testing whether we have a dangling else, possibly. That's inherent to the if (constexpr)
141 // setup we intentionally chose to force type-checks of debug code even in release builds (so
142 // we don't get more bit-rot).
143}
144
Elliott Hughes13d78e42016-09-07 16:22:40 -0700145static std::string make_log_pattern(android::base::LogSeverity severity,
146 const char* message) {
Andreas Gampe550829d2016-09-07 10:10:50 -0700147 static const char log_characters[] = "VDIWEFF";
148 static_assert(arraysize(log_characters) - 1 == android::base::FATAL + 1,
149 "Mismatch in size of log_characters and values in LogSeverity");
Dan Albert58310b42015-03-13 23:06:01 -0700150 char log_char = log_characters[severity];
Spencer Lowbdab59a2015-08-11 16:00:13 -0700151 std::string holder(__FILE__);
Dan Albert58310b42015-03-13 23:06:01 -0700152 return android::base::StringPrintf(
Elliott Hughes13d78e42016-09-07 16:22:40 -0700153 "%c \\d+-\\d+ \\d+:\\d+:\\d+ \\s*\\d+ \\s*\\d+ %s:\\d+] %s",
Spencer Lowbdab59a2015-08-11 16:00:13 -0700154 log_char, basename(&holder[0]), message);
Dan Albert58310b42015-03-13 23:06:01 -0700155}
156
Elliott Hughes13d78e42016-09-07 16:22:40 -0700157#define CHECK_LOG_DISABLED(severity) \
158 android::base::ScopedLogSeverity sls1(android::base::FATAL); \
159 CapturedStderr cap1; \
160 LOG(severity) << "foo bar"; \
161 ASSERT_EQ(0, lseek(cap1.fd(), 0, SEEK_CUR)); \
162
163#define CHECK_LOG_ENABLED(severity) \
164 android::base::ScopedLogSeverity sls2(android::base::severity); \
165 CapturedStderr cap2; \
166 LOG(severity) << "foobar"; \
167 CheckMessage(cap2, android::base::severity, "foobar"); \
168
169static void CheckMessage(const CapturedStderr& cap,
170 android::base::LogSeverity severity, const char* expected) {
171 std::string output;
172 ASSERT_EQ(0, lseek(cap.fd(), 0, SEEK_SET));
173 android::base::ReadFdToString(cap.fd(), &output);
Dan Albert58310b42015-03-13 23:06:01 -0700174
Dan Albert5c190402015-04-29 11:32:23 -0700175 // We can't usefully check the output of any of these on Windows because we
176 // don't have std::regex, but we can at least make sure we printed at least as
177 // many characters are in the log message.
Elliott Hughes13d78e42016-09-07 16:22:40 -0700178 ASSERT_GT(output.length(), strlen(expected));
179 ASSERT_NE(nullptr, strstr(output.c_str(), expected)) << output;
Dan Albert58310b42015-03-13 23:06:01 -0700180
Dan Albert5c190402015-04-29 11:32:23 -0700181#if !defined(_WIN32)
Elliott Hughes13d78e42016-09-07 16:22:40 -0700182 std::regex message_regex(make_log_pattern(severity, expected));
183 ASSERT_TRUE(std::regex_search(output, message_regex)) << output;
Dan Albert5c190402015-04-29 11:32:23 -0700184#endif
Dan Albert58310b42015-03-13 23:06:01 -0700185}
186
Elliott Hughes13d78e42016-09-07 16:22:40 -0700187TEST(logging, LOG_FATAL) {
188 ASSERT_DEATH({SuppressAbortUI(); LOG(FATAL) << "foobar";}, "foobar");
189}
Dan Albert58310b42015-03-13 23:06:01 -0700190
Andreas Gampe550829d2016-09-07 10:10:50 -0700191TEST(logging, LOG_FATAL_WITHOUT_ABORT_disabled) {
192 CHECK_LOG_DISABLED(FATAL_WITHOUT_ABORT);
193}
194
195TEST(logging, LOG_FATAL_WITHOUT_ABORT_enabled) {
196 CHECK_LOG_ENABLED(FATAL_WITHOUT_ABORT);
197}
198
Elliott Hughes13d78e42016-09-07 16:22:40 -0700199TEST(logging, LOG_ERROR_disabled) {
200 CHECK_LOG_DISABLED(ERROR);
201}
Dan Albert58310b42015-03-13 23:06:01 -0700202
Elliott Hughes13d78e42016-09-07 16:22:40 -0700203TEST(logging, LOG_ERROR_enabled) {
204 CHECK_LOG_ENABLED(ERROR);
205}
206
207TEST(logging, LOG_WARNING_disabled) {
208 CHECK_LOG_DISABLED(WARNING);
209}
210
211TEST(logging, LOG_WARNING_enabled) {
212 CHECK_LOG_ENABLED(WARNING);
213}
214
215TEST(logging, LOG_INFO_disabled) {
216 CHECK_LOG_DISABLED(INFO);
217}
218
219TEST(logging, LOG_INFO_enabled) {
220 CHECK_LOG_ENABLED(INFO);
221}
222
223TEST(logging, LOG_DEBUG_disabled) {
224 CHECK_LOG_DISABLED(DEBUG);
225}
226
227TEST(logging, LOG_DEBUG_enabled) {
228 CHECK_LOG_ENABLED(DEBUG);
229}
230
231TEST(logging, LOG_VERBOSE_disabled) {
232 CHECK_LOG_DISABLED(VERBOSE);
233}
234
235TEST(logging, LOG_VERBOSE_enabled) {
236 CHECK_LOG_ENABLED(VERBOSE);
237}
238
239TEST(logging, LOG_does_not_clobber_errno) {
240 CapturedStderr cap;
241 errno = 12345;
242 LOG(INFO) << (errno = 67890);
243 EXPECT_EQ(12345, errno) << "errno was not restored";
244
245 CheckMessage(cap, android::base::INFO, "67890");
246}
247
248TEST(logging, PLOG_does_not_clobber_errno) {
249 CapturedStderr cap;
250 errno = 12345;
251 PLOG(INFO) << (errno = 67890);
252 EXPECT_EQ(12345, errno) << "errno was not restored";
253
254 CheckMessage(cap, android::base::INFO, "67890");
255}
256
257TEST(logging, LOG_does_not_have_dangling_if) {
258 CapturedStderr cap; // So the logging below has no side-effects.
259
260 // Do the test two ways: once where we hypothesize that LOG()'s if
261 // will evaluate to true (when severity is high enough) and once when we
262 // expect it to evaluate to false (when severity is not high enough).
263 bool flag = false;
264 if (true)
265 LOG(INFO) << "foobar";
266 else
267 flag = true;
268
269 EXPECT_FALSE(flag) << "LOG macro probably has a dangling if with no else";
270
271 flag = false;
272 if (true)
273 LOG(VERBOSE) << "foobar";
274 else
275 flag = true;
276
277 EXPECT_FALSE(flag) << "LOG macro probably has a dangling if with no else";
278}
279
280#define CHECK_PLOG(severity) \
281
282#define CHECK_PLOG_DISABLED(severity) \
283 android::base::ScopedLogSeverity sls1(android::base::FATAL); \
284 CapturedStderr cap1; \
285 PLOG(severity) << "foo bar"; \
286 ASSERT_EQ(0, lseek(cap1.fd(), 0, SEEK_CUR)); \
287
288#define CHECK_PLOG_ENABLED(severity) \
289 android::base::ScopedLogSeverity sls2(android::base::severity); \
290 CapturedStderr cap2; \
291 errno = ENOENT; \
292 PLOG(severity) << "foobar"; \
293 CheckMessage(cap2, android::base::severity, "foobar: No such file or directory"); \
294
Andreas Gampe550829d2016-09-07 10:10:50 -0700295TEST(logging, PLOG_FATAL) {
296 ASSERT_DEATH({SuppressAbortUI(); PLOG(FATAL) << "foobar";}, "foobar");
297}
298
299TEST(logging, PLOG_FATAL_WITHOUT_ABORT_disabled) {
300 CHECK_PLOG_DISABLED(FATAL_WITHOUT_ABORT);
301}
302
303TEST(logging, PLOG_FATAL_WITHOUT_ABORT_enabled) {
304 CHECK_PLOG_ENABLED(FATAL_WITHOUT_ABORT);
305}
306
Elliott Hughes13d78e42016-09-07 16:22:40 -0700307TEST(logging, PLOG_ERROR_disabled) {
308 CHECK_PLOG_DISABLED(ERROR);
309}
310
311TEST(logging, PLOG_ERROR_enabled) {
312 CHECK_PLOG_ENABLED(ERROR);
313}
314
315TEST(logging, PLOG_WARNING_disabled) {
316 CHECK_PLOG_DISABLED(WARNING);
317}
318
319TEST(logging, PLOG_WARNING_enabled) {
320 CHECK_PLOG_ENABLED(WARNING);
321}
322
323TEST(logging, PLOG_INFO_disabled) {
324 CHECK_PLOG_DISABLED(INFO);
325}
326
327TEST(logging, PLOG_INFO_enabled) {
328 CHECK_PLOG_ENABLED(INFO);
329}
330
331TEST(logging, PLOG_DEBUG_disabled) {
332 CHECK_PLOG_DISABLED(DEBUG);
333}
334
335TEST(logging, PLOG_DEBUG_enabled) {
336 CHECK_PLOG_ENABLED(DEBUG);
337}
338
339TEST(logging, PLOG_VERBOSE_disabled) {
340 CHECK_PLOG_DISABLED(VERBOSE);
341}
342
343TEST(logging, PLOG_VERBOSE_enabled) {
344 CHECK_PLOG_ENABLED(VERBOSE);
Dan Albert58310b42015-03-13 23:06:01 -0700345}
346
Dan Albertb547c852015-03-27 11:20:14 -0700347TEST(logging, UNIMPLEMENTED) {
Elliott Hughes13d78e42016-09-07 16:22:40 -0700348 std::string expected = android::base::StringPrintf("%s unimplemented ", __PRETTY_FUNCTION__);
Dan Albert58310b42015-03-13 23:06:01 -0700349
Elliott Hughes13d78e42016-09-07 16:22:40 -0700350 CapturedStderr cap;
351 errno = ENOENT;
352 UNIMPLEMENTED(ERROR);
353 CheckMessage(cap, android::base::ERROR, expected.c_str());
Dan Albert58310b42015-03-13 23:06:01 -0700354}
Andreas Gampe2691e332016-09-08 11:03:58 -0700355
356static void NoopAborter(const char* msg ATTRIBUTE_UNUSED) {
357 LOG(ERROR) << "called noop";
358}
359
360TEST(logging, LOG_FATAL_NOOP_ABORTER) {
361 {
362 android::base::SetAborter(NoopAborter);
363
364 android::base::ScopedLogSeverity sls(android::base::ERROR);
365 CapturedStderr cap;
366 LOG(FATAL) << "foobar";
367 CheckMessage(cap, android::base::FATAL, "foobar");
368 CheckMessage(cap, android::base::ERROR, "called noop");
369
370 android::base::SetAborter(android::base::DefaultAborter);
371 }
372
373 ASSERT_DEATH({SuppressAbortUI(); LOG(FATAL) << "foobar";}, "foobar");
374}