forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogging_unittest.cc
163 lines (140 loc) · 6.37 KB
/
logging_unittest.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Note: this test tests RTC_LOG_V and RTC_LOG_E since all other logs are
// expressed in forms of them. RTC_LOG is also tested for good measure.
// Also note that we are only allowed to call InitLogging() twice so the test
// cases are more dense than normal.
// We must include Chromium headers before including the overrides header
// since webrtc's logging.h file may conflict with chromium.
#include "base/command_line.h"
#include "base/files/file_util.h"
#include "testing/gtest/include/gtest/gtest.h"
// The following include come before including logging.h. It ensures that
// libjingle style logging is used.
#define LOGGING_INSIDE_WEBRTC
#include "build/build_config.h"
#include "third_party/webrtc_overrides/rtc_base/logging.h"
#if defined(OS_WIN)
static const wchar_t* const log_file_name = L"libjingle_logging.log";
#else
static const char* const log_file_name = "libjingle_logging.log";
#endif
static const int kDefaultVerbosity = 0;
static const char* AsString(rtc::LoggingSeverity severity) {
switch (severity) {
case rtc::LS_ERROR:
return "LS_ERROR";
case rtc::LS_WARNING:
return "LS_WARNING";
case rtc::LS_INFO:
return "LS_INFO";
case rtc::LS_VERBOSE:
return "LS_VERBOSE";
case rtc::LS_SENSITIVE:
return "LS_SENSITIVE";
default:
return "";
}
}
static bool ContainsString(const std::string& original,
const char* string_to_match) {
return original.find(string_to_match) != std::string::npos;
}
static bool Initialize(int verbosity_level) {
if (verbosity_level != kDefaultVerbosity) {
// Update the command line with specified verbosity level for this file.
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
std::ostringstream value_stream;
value_stream << "logging_unittest=" << verbosity_level;
const std::string& value = value_stream.str();
command_line->AppendSwitchASCII("vmodule", value);
}
// The command line flags are parsed here and the log file name is set.
logging::LoggingSettings settings;
settings.logging_dest = logging::LOG_TO_FILE;
settings.log_file = log_file_name;
settings.lock_log = logging::DONT_LOCK_LOG_FILE;
settings.delete_old = logging::DELETE_OLD_LOG_FILE;
if (!logging::InitLogging(settings)) {
return false;
}
EXPECT_TRUE(VLOG_IS_ON(verbosity_level));
EXPECT_FALSE(VLOG_IS_ON(verbosity_level + 1));
return true;
}
TEST(LibjingleLogTest, DefaultConfiguration) {
ASSERT_TRUE(Initialize(kDefaultVerbosity));
// In the default configuration only warnings and errors should be logged.
RTC_LOG_V(rtc::LS_ERROR) << AsString(rtc::LS_ERROR);
RTC_LOG_V(rtc::LS_WARNING) << AsString(rtc::LS_WARNING);
RTC_LOG_V(rtc::LS_INFO) << AsString(rtc::LS_INFO);
RTC_LOG_V(rtc::LS_VERBOSE) << AsString(rtc::LS_VERBOSE);
RTC_LOG_V(rtc::LS_SENSITIVE) << AsString(rtc::LS_SENSITIVE);
// Read file to string.
base::FilePath file_path(log_file_name);
std::string contents_of_file;
base::ReadFileToString(file_path, &contents_of_file);
// Make sure string contains the expected values.
EXPECT_TRUE(ContainsString(contents_of_file, AsString(rtc::LS_ERROR)));
EXPECT_TRUE(ContainsString(contents_of_file, AsString(rtc::LS_WARNING)));
EXPECT_FALSE(ContainsString(contents_of_file, AsString(rtc::LS_INFO)));
EXPECT_FALSE(ContainsString(contents_of_file,
AsString(rtc::LS_VERBOSE)));
EXPECT_FALSE(ContainsString(contents_of_file,
AsString(rtc::LS_SENSITIVE)));
}
TEST(LibjingleLogTest, InfoConfiguration) {
ASSERT_TRUE(Initialize(0)); // 0 == Chrome's 'info' level.
// In this configuration everything lower or equal to LS_INFO should be
// logged.
RTC_LOG_V(rtc::LS_ERROR) << AsString(rtc::LS_ERROR);
RTC_LOG_V(rtc::LS_WARNING) << AsString(rtc::LS_WARNING);
RTC_LOG_V(rtc::LS_INFO) << AsString(rtc::LS_INFO);
RTC_LOG_V(rtc::LS_VERBOSE) << AsString(rtc::LS_VERBOSE);
RTC_LOG_V(rtc::LS_SENSITIVE) << AsString(rtc::LS_SENSITIVE);
// Read file to string.
base::FilePath file_path(log_file_name);
std::string contents_of_file;
base::ReadFileToString(file_path, &contents_of_file);
// Make sure string contains the expected values.
EXPECT_TRUE(ContainsString(contents_of_file, AsString(rtc::LS_ERROR)));
EXPECT_TRUE(ContainsString(contents_of_file,
AsString(rtc::LS_WARNING)));
EXPECT_FALSE(ContainsString(contents_of_file, AsString(rtc::LS_INFO)));
EXPECT_FALSE(ContainsString(contents_of_file,
AsString(rtc::LS_VERBOSE)));
EXPECT_FALSE(ContainsString(contents_of_file,
AsString(rtc::LS_SENSITIVE)));
// Also check that the log is proper.
EXPECT_TRUE(ContainsString(contents_of_file, "logging_unittest.cc"));
EXPECT_FALSE(ContainsString(contents_of_file, "logging.h"));
EXPECT_FALSE(ContainsString(contents_of_file, "logging.cc"));
}
TEST(LibjingleLogTest, LogEverythingConfiguration) {
ASSERT_TRUE(Initialize(2)); // verbosity at level 2 allows LS_SENSITIVE.
// In this configuration everything should be logged.
RTC_LOG_V(rtc::LS_ERROR) << AsString(rtc::LS_ERROR);
RTC_LOG_V(rtc::LS_WARNING) << AsString(rtc::LS_WARNING);
RTC_LOG(LS_INFO) << AsString(rtc::LS_INFO);
static const int kFakeError = 1;
RTC_LOG_E(LS_INFO, EN, kFakeError) << "RTC_LOG_E(" << AsString(rtc::LS_INFO)
<< ")";
RTC_LOG_V(rtc::LS_VERBOSE) << AsString(rtc::LS_VERBOSE);
RTC_LOG_V(rtc::LS_SENSITIVE) << AsString(rtc::LS_SENSITIVE);
// Read file to string.
base::FilePath file_path(log_file_name);
std::string contents_of_file;
base::ReadFileToString(file_path, &contents_of_file);
// Make sure string contains the expected values.
EXPECT_TRUE(ContainsString(contents_of_file, AsString(rtc::LS_ERROR)));
EXPECT_TRUE(ContainsString(contents_of_file,
AsString(rtc::LS_WARNING)));
EXPECT_TRUE(ContainsString(contents_of_file, AsString(rtc::LS_INFO)));
// RTC_LOG_E
EXPECT_TRUE(ContainsString(contents_of_file, strerror(kFakeError)));
EXPECT_TRUE(ContainsString(contents_of_file,
AsString(rtc::LS_VERBOSE)));
EXPECT_TRUE(ContainsString(contents_of_file,
AsString(rtc::LS_SENSITIVE)));
}