2015-03-14 07:06:01 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-12-05 07:00:26 +01:00
|
|
|
#include "android-base/logging.h"
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2015-08-14 05:09:29 +02:00
|
|
|
#include <libgen.h>
|
|
|
|
|
2015-09-18 04:36:10 +02:00
|
|
|
#if defined(_WIN32)
|
|
|
|
#include <signal.h>
|
|
|
|
#endif
|
|
|
|
|
2015-03-14 07:06:01 +01:00
|
|
|
#include <regex>
|
|
|
|
#include <string>
|
|
|
|
|
2015-12-05 07:00:26 +01:00
|
|
|
#include "android-base/file.h"
|
|
|
|
#include "android-base/stringprintf.h"
|
|
|
|
#include "android-base/test_utils.h"
|
2015-03-14 07:06:01 +01:00
|
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
|
|
|
#ifdef __ANDROID__
|
|
|
|
#define HOST_TEST(suite, name) TEST(suite, DISABLED_ ## name)
|
|
|
|
#else
|
|
|
|
#define HOST_TEST(suite, name) TEST(suite, name)
|
|
|
|
#endif
|
|
|
|
|
2015-09-18 04:36:10 +02:00
|
|
|
#if defined(_WIN32)
|
|
|
|
static void ExitSignalAbortHandler(int) {
|
|
|
|
_exit(3);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void SuppressAbortUI() {
|
|
|
|
#if defined(_WIN32)
|
|
|
|
// We really just want to call _set_abort_behavior(0, _CALL_REPORTFAULT) to
|
|
|
|
// suppress the Windows Error Reporting dialog box, but that API is not
|
|
|
|
// available in the OS-supplied C Runtime, msvcrt.dll, that we currently
|
|
|
|
// use (it is available in the Visual Studio C runtime).
|
|
|
|
//
|
|
|
|
// Instead, we setup a SIGABRT handler, which is called in abort() right
|
|
|
|
// before calling Windows Error Reporting. In the handler, we exit the
|
|
|
|
// process just like abort() does.
|
|
|
|
ASSERT_NE(SIG_ERR, signal(SIGABRT, ExitSignalAbortHandler));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-03-27 19:20:14 +01:00
|
|
|
TEST(logging, CHECK) {
|
2015-09-18 04:36:10 +02:00
|
|
|
ASSERT_DEATH({SuppressAbortUI(); CHECK(false);}, "Check failed: false ");
|
2015-03-14 07:06:01 +01:00
|
|
|
CHECK(true);
|
|
|
|
|
2015-09-18 04:36:10 +02:00
|
|
|
ASSERT_DEATH({SuppressAbortUI(); CHECK_EQ(0, 1);}, "Check failed: 0 == 1 ");
|
2015-03-14 07:06:01 +01:00
|
|
|
CHECK_EQ(0, 0);
|
|
|
|
|
2015-09-18 04:36:10 +02:00
|
|
|
ASSERT_DEATH({SuppressAbortUI(); CHECK_STREQ("foo", "bar");},
|
|
|
|
R"(Check failed: "foo" == "bar")");
|
2015-03-14 07:06:01 +01:00
|
|
|
CHECK_STREQ("foo", "foo");
|
2015-09-18 04:36:10 +02:00
|
|
|
|
|
|
|
// Test whether CHECK() and CHECK_STREQ() have a dangling if with no else.
|
|
|
|
bool flag = false;
|
|
|
|
if (true)
|
|
|
|
CHECK(true);
|
|
|
|
else
|
|
|
|
flag = true;
|
|
|
|
EXPECT_FALSE(flag) << "CHECK macro probably has a dangling if with no else";
|
|
|
|
|
|
|
|
flag = false;
|
|
|
|
if (true)
|
|
|
|
CHECK_STREQ("foo", "foo");
|
|
|
|
else
|
|
|
|
flag = true;
|
|
|
|
EXPECT_FALSE(flag) << "CHECK_STREQ probably has a dangling if with no else";
|
2015-03-14 07:06:01 +01:00
|
|
|
}
|
|
|
|
|
2016-09-13 19:44:46 +02:00
|
|
|
TEST(logging, DCHECK) {
|
|
|
|
if (android::base::kEnableDChecks) {
|
|
|
|
ASSERT_DEATH({SuppressAbortUI(); DCHECK(false);}, "DCheck failed: false ");
|
|
|
|
}
|
|
|
|
DCHECK(true);
|
|
|
|
|
|
|
|
if (android::base::kEnableDChecks) {
|
|
|
|
ASSERT_DEATH({SuppressAbortUI(); DCHECK_EQ(0, 1);}, "DCheck failed: 0 == 1 ");
|
|
|
|
}
|
|
|
|
DCHECK_EQ(0, 0);
|
|
|
|
|
|
|
|
if (android::base::kEnableDChecks) {
|
|
|
|
ASSERT_DEATH({SuppressAbortUI(); DCHECK_STREQ("foo", "bar");},
|
|
|
|
R"(DCheck failed: "foo" == "bar")");
|
|
|
|
}
|
|
|
|
DCHECK_STREQ("foo", "foo");
|
|
|
|
|
|
|
|
// No testing whether we have a dangling else, possibly. That's inherent to the if (constexpr)
|
|
|
|
// setup we intentionally chose to force type-checks of debug code even in release builds (so
|
|
|
|
// we don't get more bit-rot).
|
|
|
|
}
|
|
|
|
|
2016-09-22 19:15:01 +02:00
|
|
|
|
2016-09-24 01:37:12 +02:00
|
|
|
#define CHECK_WOULD_LOG_DISABLED(severity) \
|
|
|
|
static_assert(android::base::severity < android::base::FATAL, "Bad input"); \
|
|
|
|
for (size_t i = static_cast<size_t>(android::base::severity) + 1; \
|
|
|
|
i <= static_cast<size_t>(android::base::FATAL); \
|
|
|
|
++i) { \
|
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls2(static_cast<android::base::LogSeverity>(i)); \
|
|
|
|
EXPECT_FALSE(WOULD_LOG(severity)) << i; \
|
|
|
|
} \
|
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls2(static_cast<android::base::LogSeverity>(i)); \
|
|
|
|
EXPECT_FALSE(WOULD_LOG(::android::base::severity)) << i; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
|
|
|
|
#define CHECK_WOULD_LOG_ENABLED(severity) \
|
|
|
|
for (size_t i = static_cast<size_t>(android::base::VERBOSE); \
|
|
|
|
i <= static_cast<size_t>(android::base::severity); \
|
|
|
|
++i) { \
|
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls2(static_cast<android::base::LogSeverity>(i)); \
|
|
|
|
EXPECT_TRUE(WOULD_LOG(severity)) << i; \
|
|
|
|
} \
|
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls2(static_cast<android::base::LogSeverity>(i)); \
|
|
|
|
EXPECT_TRUE(WOULD_LOG(::android::base::severity)) << i; \
|
|
|
|
} \
|
|
|
|
} \
|
2016-09-22 19:15:01 +02:00
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_FATAL) {
|
|
|
|
CHECK_WOULD_LOG_ENABLED(FATAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_FATAL_WITHOUT_ABORT_disabled) {
|
|
|
|
CHECK_WOULD_LOG_DISABLED(FATAL_WITHOUT_ABORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_FATAL_WITHOUT_ABORT_enabled) {
|
|
|
|
CHECK_WOULD_LOG_ENABLED(FATAL_WITHOUT_ABORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_ERROR_disabled) {
|
|
|
|
CHECK_WOULD_LOG_DISABLED(ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_ERROR_enabled) {
|
|
|
|
CHECK_WOULD_LOG_ENABLED(ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_WARNING_disabled) {
|
|
|
|
CHECK_WOULD_LOG_DISABLED(WARNING);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_WARNING_enabled) {
|
|
|
|
CHECK_WOULD_LOG_ENABLED(WARNING);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_INFO_disabled) {
|
|
|
|
CHECK_WOULD_LOG_DISABLED(INFO);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_INFO_enabled) {
|
|
|
|
CHECK_WOULD_LOG_ENABLED(INFO);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_DEBUG_disabled) {
|
|
|
|
CHECK_WOULD_LOG_DISABLED(DEBUG);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_DEBUG_enabled) {
|
|
|
|
CHECK_WOULD_LOG_ENABLED(DEBUG);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_VERBOSE_disabled) {
|
|
|
|
CHECK_WOULD_LOG_DISABLED(VERBOSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, WOULD_LOG_VERBOSE_enabled) {
|
|
|
|
CHECK_WOULD_LOG_ENABLED(VERBOSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef CHECK_WOULD_LOG_DISABLED
|
|
|
|
#undef CHECK_WOULD_LOG_ENABLED
|
|
|
|
|
|
|
|
|
2017-11-30 03:06:11 +01:00
|
|
|
#if !defined(_WIN32)
|
2016-09-08 01:22:40 +02:00
|
|
|
static std::string make_log_pattern(android::base::LogSeverity severity,
|
|
|
|
const char* message) {
|
2016-09-07 19:10:50 +02:00
|
|
|
static const char log_characters[] = "VDIWEFF";
|
|
|
|
static_assert(arraysize(log_characters) - 1 == android::base::FATAL + 1,
|
|
|
|
"Mismatch in size of log_characters and values in LogSeverity");
|
2015-03-14 07:06:01 +01:00
|
|
|
char log_char = log_characters[severity];
|
2015-08-12 01:00:13 +02:00
|
|
|
std::string holder(__FILE__);
|
2015-03-14 07:06:01 +01:00
|
|
|
return android::base::StringPrintf(
|
2016-09-08 01:22:40 +02:00
|
|
|
"%c \\d+-\\d+ \\d+:\\d+:\\d+ \\s*\\d+ \\s*\\d+ %s:\\d+] %s",
|
2015-08-12 01:00:13 +02:00
|
|
|
log_char, basename(&holder[0]), message);
|
2015-03-14 07:06:01 +01:00
|
|
|
}
|
2017-11-30 03:06:11 +01:00
|
|
|
#endif
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2018-05-23 18:16:46 +02:00
|
|
|
static void CheckMessage(CapturedStderr& cap, android::base::LogSeverity severity,
|
2018-03-05 19:00:19 +01:00
|
|
|
const char* expected, const char* expected_tag = nullptr) {
|
2018-05-23 18:16:46 +02:00
|
|
|
std::string output = cap.str();
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2015-04-29 20:32:23 +02:00
|
|
|
// We can't usefully check the output of any of these on Windows because we
|
|
|
|
// don't have std::regex, but we can at least make sure we printed at least as
|
|
|
|
// many characters are in the log message.
|
2016-09-08 01:22:40 +02:00
|
|
|
ASSERT_GT(output.length(), strlen(expected));
|
|
|
|
ASSERT_NE(nullptr, strstr(output.c_str(), expected)) << output;
|
2018-03-05 19:00:19 +01:00
|
|
|
if (expected_tag != nullptr) {
|
|
|
|
ASSERT_NE(nullptr, strstr(output.c_str(), expected_tag)) << output;
|
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2015-04-29 20:32:23 +02:00
|
|
|
#if !defined(_WIN32)
|
2018-03-05 19:00:19 +01:00
|
|
|
std::string regex_str;
|
|
|
|
if (expected_tag != nullptr) {
|
|
|
|
regex_str.append(expected_tag);
|
|
|
|
regex_str.append(" ");
|
|
|
|
}
|
|
|
|
regex_str.append(make_log_pattern(severity, expected));
|
|
|
|
std::regex message_regex(regex_str);
|
2016-09-08 01:22:40 +02:00
|
|
|
ASSERT_TRUE(std::regex_search(output, message_regex)) << output;
|
2015-04-29 20:32:23 +02:00
|
|
|
#endif
|
2016-09-08 01:22:40 +02:00
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-09-24 01:37:12 +02:00
|
|
|
|
2016-09-23 22:31:52 +02:00
|
|
|
#define CHECK_LOG_STREAM_DISABLED(severity) \
|
2016-09-24 01:37:12 +02:00
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls1(android::base::FATAL); \
|
|
|
|
CapturedStderr cap1; \
|
|
|
|
LOG_STREAM(severity) << "foo bar"; \
|
|
|
|
ASSERT_EQ(0, lseek(cap1.fd(), 0, SEEK_CUR)); \
|
|
|
|
} \
|
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls1(android::base::FATAL); \
|
|
|
|
CapturedStderr cap1; \
|
|
|
|
LOG_STREAM(::android::base::severity) << "foo bar"; \
|
|
|
|
ASSERT_EQ(0, lseek(cap1.fd(), 0, SEEK_CUR)); \
|
|
|
|
} \
|
2016-09-23 22:31:52 +02:00
|
|
|
|
|
|
|
#define CHECK_LOG_STREAM_ENABLED(severity) \
|
2016-09-24 01:37:12 +02:00
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls2(android::base::severity); \
|
|
|
|
CapturedStderr cap2; \
|
|
|
|
LOG_STREAM(severity) << "foobar"; \
|
|
|
|
CheckMessage(cap2, android::base::severity, "foobar"); \
|
|
|
|
} \
|
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls2(android::base::severity); \
|
|
|
|
CapturedStderr cap2; \
|
|
|
|
LOG_STREAM(::android::base::severity) << "foobar"; \
|
|
|
|
CheckMessage(cap2, android::base::severity, "foobar"); \
|
|
|
|
} \
|
2016-09-22 19:15:01 +02:00
|
|
|
|
2016-09-23 22:31:52 +02:00
|
|
|
TEST(logging, LOG_STREAM_FATAL_WITHOUT_ABORT_disabled) {
|
|
|
|
CHECK_LOG_STREAM_DISABLED(FATAL_WITHOUT_ABORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, LOG_STREAM_FATAL_WITHOUT_ABORT_enabled) {
|
|
|
|
CHECK_LOG_STREAM_ENABLED(FATAL_WITHOUT_ABORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, LOG_STREAM_ERROR_disabled) {
|
|
|
|
CHECK_LOG_STREAM_DISABLED(ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, LOG_STREAM_ERROR_enabled) {
|
|
|
|
CHECK_LOG_STREAM_ENABLED(ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, LOG_STREAM_WARNING_disabled) {
|
|
|
|
CHECK_LOG_STREAM_DISABLED(WARNING);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, LOG_STREAM_WARNING_enabled) {
|
|
|
|
CHECK_LOG_STREAM_ENABLED(WARNING);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, LOG_STREAM_INFO_disabled) {
|
|
|
|
CHECK_LOG_STREAM_DISABLED(INFO);
|
2016-09-22 19:15:01 +02:00
|
|
|
}
|
|
|
|
|
2016-09-23 22:31:52 +02:00
|
|
|
TEST(logging, LOG_STREAM_INFO_enabled) {
|
|
|
|
CHECK_LOG_STREAM_ENABLED(INFO);
|
2016-09-22 19:15:01 +02:00
|
|
|
}
|
|
|
|
|
2016-09-23 22:31:52 +02:00
|
|
|
TEST(logging, LOG_STREAM_DEBUG_disabled) {
|
|
|
|
CHECK_LOG_STREAM_DISABLED(DEBUG);
|
2016-09-22 19:15:01 +02:00
|
|
|
}
|
|
|
|
|
2016-09-23 22:31:52 +02:00
|
|
|
TEST(logging, LOG_STREAM_DEBUG_enabled) {
|
|
|
|
CHECK_LOG_STREAM_ENABLED(DEBUG);
|
2016-09-22 19:15:01 +02:00
|
|
|
}
|
|
|
|
|
2016-09-23 22:31:52 +02:00
|
|
|
TEST(logging, LOG_STREAM_VERBOSE_disabled) {
|
|
|
|
CHECK_LOG_STREAM_DISABLED(VERBOSE);
|
2016-09-22 19:15:01 +02:00
|
|
|
}
|
|
|
|
|
2016-09-23 22:31:52 +02:00
|
|
|
TEST(logging, LOG_STREAM_VERBOSE_enabled) {
|
|
|
|
CHECK_LOG_STREAM_ENABLED(VERBOSE);
|
2016-09-22 19:15:01 +02:00
|
|
|
}
|
|
|
|
|
2016-09-23 22:31:52 +02:00
|
|
|
#undef CHECK_LOG_STREAM_DISABLED
|
|
|
|
#undef CHECK_LOG_STREAM_ENABLED
|
2016-09-22 19:15:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
#define CHECK_LOG_DISABLED(severity) \
|
2016-09-24 01:37:12 +02:00
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls1(android::base::FATAL); \
|
|
|
|
CapturedStderr cap1; \
|
|
|
|
LOG(severity) << "foo bar"; \
|
|
|
|
ASSERT_EQ(0, lseek(cap1.fd(), 0, SEEK_CUR)); \
|
|
|
|
} \
|
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls1(android::base::FATAL); \
|
|
|
|
CapturedStderr cap1; \
|
|
|
|
LOG(::android::base::severity) << "foo bar"; \
|
|
|
|
ASSERT_EQ(0, lseek(cap1.fd(), 0, SEEK_CUR)); \
|
|
|
|
} \
|
2016-09-22 19:15:01 +02:00
|
|
|
|
|
|
|
#define CHECK_LOG_ENABLED(severity) \
|
2016-09-24 01:37:12 +02:00
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls2(android::base::severity); \
|
|
|
|
CapturedStderr cap2; \
|
|
|
|
LOG(severity) << "foobar"; \
|
|
|
|
CheckMessage(cap2, android::base::severity, "foobar"); \
|
|
|
|
} \
|
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls2(android::base::severity); \
|
|
|
|
CapturedStderr cap2; \
|
|
|
|
LOG(::android::base::severity) << "foobar"; \
|
|
|
|
CheckMessage(cap2, android::base::severity, "foobar"); \
|
|
|
|
} \
|
2016-09-22 19:15:01 +02:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_FATAL) {
|
|
|
|
ASSERT_DEATH({SuppressAbortUI(); LOG(FATAL) << "foobar";}, "foobar");
|
2016-09-24 01:37:12 +02:00
|
|
|
ASSERT_DEATH({SuppressAbortUI(); LOG(::android::base::FATAL) << "foobar";}, "foobar");
|
2016-09-08 01:22:40 +02:00
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-09-07 19:10:50 +02:00
|
|
|
TEST(logging, LOG_FATAL_WITHOUT_ABORT_disabled) {
|
|
|
|
CHECK_LOG_DISABLED(FATAL_WITHOUT_ABORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, LOG_FATAL_WITHOUT_ABORT_enabled) {
|
|
|
|
CHECK_LOG_ENABLED(FATAL_WITHOUT_ABORT);
|
|
|
|
}
|
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_ERROR_disabled) {
|
|
|
|
CHECK_LOG_DISABLED(ERROR);
|
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_ERROR_enabled) {
|
|
|
|
CHECK_LOG_ENABLED(ERROR);
|
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_WARNING_disabled) {
|
|
|
|
CHECK_LOG_DISABLED(WARNING);
|
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_WARNING_enabled) {
|
|
|
|
CHECK_LOG_ENABLED(WARNING);
|
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_INFO_disabled) {
|
|
|
|
CHECK_LOG_DISABLED(INFO);
|
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_INFO_enabled) {
|
|
|
|
CHECK_LOG_ENABLED(INFO);
|
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_DEBUG_disabled) {
|
|
|
|
CHECK_LOG_DISABLED(DEBUG);
|
|
|
|
}
|
2015-09-18 04:36:10 +02:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_DEBUG_enabled) {
|
|
|
|
CHECK_LOG_ENABLED(DEBUG);
|
|
|
|
}
|
2015-09-18 04:36:10 +02:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_VERBOSE_disabled) {
|
|
|
|
CHECK_LOG_DISABLED(VERBOSE);
|
|
|
|
}
|
2015-09-18 04:36:10 +02:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_VERBOSE_enabled) {
|
|
|
|
CHECK_LOG_ENABLED(VERBOSE);
|
|
|
|
}
|
2015-09-18 04:36:10 +02:00
|
|
|
|
2016-09-22 19:15:01 +02:00
|
|
|
#undef CHECK_LOG_DISABLED
|
|
|
|
#undef CHECK_LOG_ENABLED
|
|
|
|
|
|
|
|
|
2016-09-24 01:37:12 +02:00
|
|
|
TEST(logging, LOG_complex_param) {
|
|
|
|
#define CHECK_LOG_COMBINATION(use_scoped_log_severity_info, use_logging_severity_info) \
|
2016-09-22 19:15:01 +02:00
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls( \
|
|
|
|
(use_scoped_log_severity_info) ? ::android::base::INFO : ::android::base::WARNING); \
|
|
|
|
CapturedStderr cap; \
|
2016-09-24 01:37:12 +02:00
|
|
|
LOG((use_logging_severity_info) ? ::android::base::INFO : ::android::base::WARNING) \
|
2016-09-22 19:15:01 +02:00
|
|
|
<< "foobar"; \
|
|
|
|
if ((use_scoped_log_severity_info) || !(use_logging_severity_info)) { \
|
|
|
|
CheckMessage(cap, \
|
|
|
|
(use_logging_severity_info) ? ::android::base::INFO : ::android::base::WARNING, \
|
|
|
|
"foobar"); \
|
|
|
|
} else { \
|
|
|
|
ASSERT_EQ(0, lseek(cap.fd(), 0, SEEK_CUR)); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2016-09-24 01:37:12 +02:00
|
|
|
CHECK_LOG_COMBINATION(false,false);
|
|
|
|
CHECK_LOG_COMBINATION(false,true);
|
|
|
|
CHECK_LOG_COMBINATION(true,false);
|
|
|
|
CHECK_LOG_COMBINATION(true,true);
|
2016-09-22 19:15:01 +02:00
|
|
|
|
2016-09-24 01:37:12 +02:00
|
|
|
#undef CHECK_LOG_COMBINATION
|
2016-09-22 19:15:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_does_not_clobber_errno) {
|
|
|
|
CapturedStderr cap;
|
|
|
|
errno = 12345;
|
|
|
|
LOG(INFO) << (errno = 67890);
|
|
|
|
EXPECT_EQ(12345, errno) << "errno was not restored";
|
2015-09-18 04:36:10 +02:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
CheckMessage(cap, android::base::INFO, "67890");
|
|
|
|
}
|
2015-09-18 04:36:10 +02:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, PLOG_does_not_clobber_errno) {
|
|
|
|
CapturedStderr cap;
|
|
|
|
errno = 12345;
|
|
|
|
PLOG(INFO) << (errno = 67890);
|
|
|
|
EXPECT_EQ(12345, errno) << "errno was not restored";
|
2015-09-18 04:36:10 +02:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
CheckMessage(cap, android::base::INFO, "67890");
|
|
|
|
}
|
2015-09-18 04:36:10 +02:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, LOG_does_not_have_dangling_if) {
|
|
|
|
CapturedStderr cap; // So the logging below has no side-effects.
|
2015-09-18 04:36:10 +02:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
// Do the test two ways: once where we hypothesize that LOG()'s if
|
|
|
|
// will evaluate to true (when severity is high enough) and once when we
|
|
|
|
// expect it to evaluate to false (when severity is not high enough).
|
|
|
|
bool flag = false;
|
|
|
|
if (true)
|
|
|
|
LOG(INFO) << "foobar";
|
|
|
|
else
|
|
|
|
flag = true;
|
|
|
|
|
|
|
|
EXPECT_FALSE(flag) << "LOG macro probably has a dangling if with no else";
|
|
|
|
|
|
|
|
flag = false;
|
|
|
|
if (true)
|
|
|
|
LOG(VERBOSE) << "foobar";
|
|
|
|
else
|
|
|
|
flag = true;
|
|
|
|
|
|
|
|
EXPECT_FALSE(flag) << "LOG macro probably has a dangling if with no else";
|
2016-09-22 19:15:01 +02:00
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
#define CHECK_PLOG_DISABLED(severity) \
|
2016-09-24 01:37:12 +02:00
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls1(android::base::FATAL); \
|
|
|
|
CapturedStderr cap1; \
|
|
|
|
PLOG(severity) << "foo bar"; \
|
|
|
|
ASSERT_EQ(0, lseek(cap1.fd(), 0, SEEK_CUR)); \
|
|
|
|
} \
|
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls1(android::base::FATAL); \
|
|
|
|
CapturedStderr cap1; \
|
|
|
|
PLOG(severity) << "foo bar"; \
|
|
|
|
ASSERT_EQ(0, lseek(cap1.fd(), 0, SEEK_CUR)); \
|
|
|
|
} \
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
#define CHECK_PLOG_ENABLED(severity) \
|
2016-09-24 01:37:12 +02:00
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls2(android::base::severity); \
|
|
|
|
CapturedStderr cap2; \
|
|
|
|
errno = ENOENT; \
|
|
|
|
PLOG(severity) << "foobar"; \
|
|
|
|
CheckMessage(cap2, android::base::severity, "foobar: No such file or directory"); \
|
|
|
|
} \
|
|
|
|
{ \
|
|
|
|
android::base::ScopedLogSeverity sls2(android::base::severity); \
|
|
|
|
CapturedStderr cap2; \
|
|
|
|
errno = ENOENT; \
|
|
|
|
PLOG(severity) << "foobar"; \
|
|
|
|
CheckMessage(cap2, android::base::severity, "foobar: No such file or directory"); \
|
|
|
|
} \
|
2016-09-08 01:22:40 +02:00
|
|
|
|
2016-09-07 19:10:50 +02:00
|
|
|
TEST(logging, PLOG_FATAL) {
|
|
|
|
ASSERT_DEATH({SuppressAbortUI(); PLOG(FATAL) << "foobar";}, "foobar");
|
2016-09-24 01:37:12 +02:00
|
|
|
ASSERT_DEATH({SuppressAbortUI(); PLOG(::android::base::FATAL) << "foobar";}, "foobar");
|
2016-09-07 19:10:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, PLOG_FATAL_WITHOUT_ABORT_disabled) {
|
|
|
|
CHECK_PLOG_DISABLED(FATAL_WITHOUT_ABORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, PLOG_FATAL_WITHOUT_ABORT_enabled) {
|
|
|
|
CHECK_PLOG_ENABLED(FATAL_WITHOUT_ABORT);
|
|
|
|
}
|
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, PLOG_ERROR_disabled) {
|
|
|
|
CHECK_PLOG_DISABLED(ERROR);
|
2015-03-14 07:06:01 +01:00
|
|
|
}
|
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, PLOG_ERROR_enabled) {
|
|
|
|
CHECK_PLOG_ENABLED(ERROR);
|
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, PLOG_WARNING_disabled) {
|
|
|
|
CHECK_PLOG_DISABLED(WARNING);
|
|
|
|
}
|
2015-03-14 07:06:01 +01:00
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, PLOG_WARNING_enabled) {
|
|
|
|
CHECK_PLOG_ENABLED(WARNING);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, PLOG_INFO_disabled) {
|
|
|
|
CHECK_PLOG_DISABLED(INFO);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, PLOG_INFO_enabled) {
|
|
|
|
CHECK_PLOG_ENABLED(INFO);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, PLOG_DEBUG_disabled) {
|
|
|
|
CHECK_PLOG_DISABLED(DEBUG);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, PLOG_DEBUG_enabled) {
|
|
|
|
CHECK_PLOG_ENABLED(DEBUG);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, PLOG_VERBOSE_disabled) {
|
|
|
|
CHECK_PLOG_DISABLED(VERBOSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, PLOG_VERBOSE_enabled) {
|
|
|
|
CHECK_PLOG_ENABLED(VERBOSE);
|
|
|
|
}
|
|
|
|
|
2016-09-22 19:15:01 +02:00
|
|
|
#undef CHECK_PLOG_DISABLED
|
|
|
|
#undef CHECK_PLOG_ENABLED
|
|
|
|
|
|
|
|
|
2016-09-08 01:22:40 +02:00
|
|
|
TEST(logging, UNIMPLEMENTED) {
|
|
|
|
std::string expected = android::base::StringPrintf("%s unimplemented ", __PRETTY_FUNCTION__);
|
|
|
|
|
|
|
|
CapturedStderr cap;
|
|
|
|
errno = ENOENT;
|
|
|
|
UNIMPLEMENTED(ERROR);
|
|
|
|
CheckMessage(cap, android::base::ERROR, expected.c_str());
|
2015-03-14 07:06:01 +01:00
|
|
|
}
|
2016-09-08 20:03:58 +02:00
|
|
|
|
|
|
|
static void NoopAborter(const char* msg ATTRIBUTE_UNUSED) {
|
|
|
|
LOG(ERROR) << "called noop";
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(logging, LOG_FATAL_NOOP_ABORTER) {
|
|
|
|
{
|
|
|
|
android::base::SetAborter(NoopAborter);
|
|
|
|
|
|
|
|
android::base::ScopedLogSeverity sls(android::base::ERROR);
|
|
|
|
CapturedStderr cap;
|
|
|
|
LOG(FATAL) << "foobar";
|
|
|
|
CheckMessage(cap, android::base::FATAL, "foobar");
|
|
|
|
CheckMessage(cap, android::base::ERROR, "called noop");
|
|
|
|
|
|
|
|
android::base::SetAborter(android::base::DefaultAborter);
|
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT_DEATH({SuppressAbortUI(); LOG(FATAL) << "foobar";}, "foobar");
|
|
|
|
}
|
2016-10-05 04:17:07 +02:00
|
|
|
|
|
|
|
struct CountLineAborter {
|
|
|
|
static void CountLineAborterFunction(const char* msg) {
|
|
|
|
while (*msg != 0) {
|
|
|
|
if (*msg == '\n') {
|
|
|
|
newline_count++;
|
|
|
|
}
|
|
|
|
msg++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static size_t newline_count;
|
|
|
|
};
|
|
|
|
size_t CountLineAborter::newline_count = 0;
|
|
|
|
|
|
|
|
TEST(logging, LOG_FATAL_ABORTER_MESSAGE) {
|
|
|
|
CountLineAborter::newline_count = 0;
|
|
|
|
android::base::SetAborter(CountLineAborter::CountLineAborterFunction);
|
|
|
|
|
|
|
|
android::base::ScopedLogSeverity sls(android::base::ERROR);
|
|
|
|
CapturedStderr cap;
|
|
|
|
LOG(FATAL) << "foo\nbar";
|
|
|
|
|
|
|
|
EXPECT_EQ(CountLineAborter::newline_count, 1U + 1U); // +1 for final '\n'.
|
|
|
|
}
|
2017-01-23 19:29:23 +01:00
|
|
|
|
|
|
|
__attribute__((constructor)) void TestLoggingInConstructor() {
|
|
|
|
LOG(ERROR) << "foobar";
|
|
|
|
}
|
2018-03-05 19:00:19 +01:00
|
|
|
|
|
|
|
TEST(logging, SetDefaultTag) {
|
|
|
|
constexpr const char* expected_tag = "test_tag";
|
|
|
|
constexpr const char* expected_msg = "foobar";
|
|
|
|
CapturedStderr cap;
|
|
|
|
{
|
|
|
|
std::string old_default_tag = android::base::GetDefaultTag();
|
|
|
|
android::base::SetDefaultTag(expected_tag);
|
|
|
|
android::base::ScopedLogSeverity sls(android::base::LogSeverity::INFO);
|
|
|
|
LOG(INFO) << expected_msg;
|
|
|
|
android::base::SetDefaultTag(old_default_tag);
|
|
|
|
}
|
|
|
|
CheckMessage(cap, android::base::LogSeverity::INFO, expected_msg, expected_tag);
|
|
|
|
}
|
2018-05-23 18:16:46 +02:00
|
|
|
|
|
|
|
TEST(logging, StdioLogger) {
|
|
|
|
std::string err_str;
|
|
|
|
std::string out_str;
|
|
|
|
{
|
|
|
|
CapturedStderr cap_err;
|
|
|
|
CapturedStdout cap_out;
|
|
|
|
android::base::SetLogger(android::base::StdioLogger);
|
|
|
|
LOG(INFO) << "out";
|
|
|
|
LOG(ERROR) << "err";
|
|
|
|
err_str = cap_err.str();
|
|
|
|
out_str = cap_out.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
// For INFO we expect just the literal "out\n".
|
|
|
|
ASSERT_EQ("out\n", out_str) << out_str;
|
|
|
|
// Whereas ERROR logging includes the program name.
|
|
|
|
ASSERT_EQ(android::base::Basename(android::base::GetExecutablePath()) + ": err\n", err_str)
|
|
|
|
<< err_str;
|
|
|
|
}
|