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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
|
/** \file test_logging.cc */
// Copyright (C) 2010 Daniel Burrows
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; see the file COPYING. If not, write to
// the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.
// Local includes:
#include <generic/util/logging.h>
// System includes:
#include <gmock/gmock.h>
#include <gtest/gtest.h>
using aptitude::util::logging::DEBUG_LEVEL;
using aptitude::util::logging::ERROR_LEVEL;
using aptitude::util::logging::FATAL_LEVEL;
using aptitude::util::logging::INFO_LEVEL;
using aptitude::util::logging::LoggerPtr;
using aptitude::util::logging::LoggingSystem;
using aptitude::util::logging::OFF_LEVEL;
using aptitude::util::logging::TRACE_LEVEL;
using aptitude::util::logging::WARN_LEVEL;
using aptitude::util::logging::createLoggingSystem;
using aptitude::util::logging::log_level;
using boost::shared_ptr;
using testing::Exactly;
using testing::InSequence;
using testing::StrictMock;
using testing::Test;
using testing::_;
// Enable dumping of loggers in tests.
std::ostream &operator<<(std::ostream &out,
const LoggerPtr &logger)
{
return out << "Logger("
<< logger->getCategory()
<< ")";
}
// Test of the logging code in src/generic/util/logging.{cc,h}.
namespace
{
/** \brief A mock object that can be used to match signals emitted
* by loggers.
*/
class LoggingReceiver : public sigc::trackable
{
public:
MOCK_METHOD5(message_logged, void(const char *, int, log_level, LoggerPtr, std::string));
};
struct LoggingTest : public Test
{
shared_ptr<LoggingSystem> loggingSystem;
static const char *sourceFilename1;
static const int sourceLineNumber1 = 100;
static std::string msg1;
static const char *sourceFilename2;
static const int sourceLineNumber2 = 6089107;
static std::string msg2;
/** \brief Retrieve a logger from the internal logging system.
*/
LoggerPtr getLogger(const std::string &category)
{
return loggingSystem->getLogger(category);
}
/** \brief Connect a LoggingReceiver to a logger. */
static sigc::connection connect(LoggingReceiver &receiver, const LoggerPtr &logger)
{
return logger->connect_message_logged(sigc::mem_fun(receiver, &LoggingReceiver::message_logged));
}
static void log1(const LoggerPtr &logger,
log_level level)
{
logger->log(sourceFilename1,
sourceLineNumber1,
level,
msg1);
}
static void log2(const LoggerPtr &logger,
log_level level)
{
logger->log(sourceFilename2,
sourceLineNumber2,
level,
msg2);
}
LoggingTest()
: loggingSystem(createLoggingSystem())
{
}
};
const char *LoggingTest::sourceFilename1 = "abracadabra.cc";
std::string LoggingTest::msg1 = "Please and thank you";
const char *LoggingTest::sourceFilename2 = "oracle.cc";
std::string LoggingTest::msg2 = "Do you desire a major consultation?";
}
#define EXPECT_NO_LOGS(receiver) \
do { \
EXPECT_CALL(receiver, message_logged(_, _, _, _, _)).Times(Exactly(0)); \
} while(0)
#define EXPECT_LOG1(receiver, logger, level) \
do { \
EXPECT_CALL(receiver, \
message_logged(sourceFilename1, \
sourceLineNumber1, \
(level), \
(logger), \
msg1)); \
} while(0)
#define EXPECT_LOG2(receiver, logger, level) \
do { \
EXPECT_CALL(receiver, \
message_logged(sourceFilename2, \
sourceLineNumber2, \
(level), \
(logger), \
msg2)); \
} while(0)
TEST_F(LoggingTest, testGetRootLogger)
{
EXPECT_TRUE(loggingSystem->getLogger("").get() != NULL);
}
TEST_F(LoggingTest, testGetNonRootLogger)
{
EXPECT_TRUE(loggingSystem->getLogger("a.b.c").get() != NULL);
}
TEST_F(LoggingTest, testGetRootLoggerTwice)
{
LoggerPtr
l1 = loggingSystem->getLogger(""),
l2 = loggingSystem->getLogger("");
EXPECT_EQ(l1, l2);
}
TEST_F(LoggingTest, testGetNonRootLoggerTwice)
{
LoggerPtr
l1 = loggingSystem->getLogger("a.b.c"),
l2 = loggingSystem->getLogger("a.b.c");
EXPECT_EQ(l1, l2);
}
TEST_F(LoggingTest, testGetDifferentLoggers)
{
LoggerPtr
l1 = loggingSystem->getLogger("a.b.c"),
l2 = loggingSystem->getLogger("x.y.z");
EXPECT_NE(l1, l2);
}
// I test the individual methods of the logger extensively, then do
// some spot checks that the LOG_ macros behave correctly.
// The only sane test of isEnabledFor (on its own) is to check that
// ERROR and FATAL are enabled by default, and that other levels
// aren't. Other behavior is really more a test that setLevel does
// the right thing.
TEST_F(LoggingTest, testLoggerIsEnabledForDefaults)
{
LoggerPtr l = loggingSystem->getLogger("a.b.c");
EXPECT_EQ(ERROR_LEVEL, l->getEffectiveLevel());
EXPECT_TRUE( l->isEnabledFor(FATAL_LEVEL) );
EXPECT_TRUE( l->isEnabledFor(ERROR_LEVEL) );
EXPECT_TRUE( !l->isEnabledFor(WARN_LEVEL) );
EXPECT_TRUE( !l->isEnabledFor(INFO_LEVEL) );
EXPECT_TRUE( !l->isEnabledFor(DEBUG_LEVEL) );
EXPECT_TRUE( !l->isEnabledFor(TRACE_LEVEL) );
EXPECT_TRUE( !l->isEnabledFor(OFF_LEVEL) );
}
TEST_F(LoggingTest, testRootLogCategory)
{
const LoggerPtr root = loggingSystem->getLogger("");
EXPECT_EQ("", root->getCategory());
}
TEST_F(LoggingTest, testSubcategoryLogCategory)
{
const LoggerPtr abc = loggingSystem->getLogger("a.b.c");
EXPECT_EQ("a.b.c", abc->getCategory());
}
TEST_F(LoggingTest, testSubcategoryParentLogCategory)
{
// Checks that subcategories have the right category member no
// matter how they get created. Checks for possible bugs caused by
// parents being created implicitly when their children are created.
const LoggerPtr abc = loggingSystem->getLogger("a.b.c");
const LoggerPtr ab = loggingSystem->getLogger("a.b");
EXPECT_EQ("a.b", ab->getCategory());
}
TEST_F(LoggingTest, testLogAtRoot)
{
LoggerPtr root = loggingSystem->getLogger("");
LoggingReceiver receiver;
// Note that this implicitly tests that log() overrides the defined
// level, since INFO is disabled by default.
EXPECT_LOG1(receiver, root, INFO_LEVEL);
connect(receiver, root);
log1(root, INFO_LEVEL);
}
TEST_F(LoggingTest, testLogAtSubcategory)
{
LoggerPtr l = loggingSystem->getLogger("a.b.c");
LoggingReceiver receiver;
EXPECT_LOG2(receiver, l, ERROR_LEVEL);
connect(receiver, l);
log2(l, ERROR_LEVEL);
}
TEST_F(LoggingTest, testLoggingPropagatesUpwards)
{
LoggerPtr l = loggingSystem->getLogger("a.b.c");
LoggerPtr root = loggingSystem->getLogger("");
LoggingReceiver receiver;
EXPECT_LOG1(receiver, l, FATAL_LEVEL);
connect(receiver, root);
log1(l, FATAL_LEVEL);
}
TEST_F(LoggingTest, testLoggingPropagatesUpwardsRegardlessOfCreationOrder)
{
LoggerPtr root = loggingSystem->getLogger("");
LoggerPtr l = loggingSystem->getLogger("a.b.c");
LoggingReceiver receiver;
EXPECT_LOG1(receiver, l, FATAL_LEVEL);
connect(receiver, root);
log1(l, FATAL_LEVEL);
}
TEST_F(LoggingTest, testLoggingPropagatesUpwardsMultipleTimes)
{
LoggerPtr root = loggingSystem->getLogger("");
LoggerPtr a = loggingSystem->getLogger("a");
LoggerPtr abc = loggingSystem->getLogger("a.b.c");
LoggingReceiver receiverRoot, receiverA, receiverABC;
EXPECT_LOG2(receiverRoot, abc, FATAL_LEVEL);
EXPECT_LOG2(receiverA, abc, FATAL_LEVEL);
EXPECT_LOG2(receiverABC, abc, FATAL_LEVEL);
connect(receiverRoot, root);
connect(receiverA, a);
connect(receiverABC, abc);
log2(abc, FATAL_LEVEL);
}
TEST_F(LoggingTest, testLoggingDoesNotPropagateDownwards)
{
LoggerPtr root = loggingSystem->getLogger("");
LoggerPtr a = loggingSystem->getLogger("a");
LoggerPtr abc = loggingSystem->getLogger("a.b.c");
StrictMock<LoggingReceiver> receiverA, receiverABC;
connect(receiverA, a);
connect(receiverABC, abc);
EXPECT_NO_LOGS(receiverA);
EXPECT_NO_LOGS(receiverABC);
log2(root, FATAL_LEVEL);
}
TEST_F(LoggingTest, testSetLevelOnRoot)
{
LoggerPtr root = getLogger("");
root->setLevel(INFO_LEVEL);
EXPECT_EQ(INFO_LEVEL, root->getEffectiveLevel());
EXPECT_TRUE( root->isEnabledFor(FATAL_LEVEL) );
EXPECT_TRUE( root->isEnabledFor(ERROR_LEVEL) );
EXPECT_TRUE( root->isEnabledFor(WARN_LEVEL) );
EXPECT_TRUE( root->isEnabledFor(INFO_LEVEL) );
EXPECT_TRUE( !root->isEnabledFor(DEBUG_LEVEL) );
EXPECT_TRUE( !root->isEnabledFor(TRACE_LEVEL) );
EXPECT_TRUE( !root->isEnabledFor(OFF_LEVEL) );
}
TEST_F(LoggingTest, testIsEnabledOff)
{
const LoggerPtr root = getLogger("");
root->setLevel(OFF_LEVEL);
EXPECT_EQ(OFF_LEVEL, root->getEffectiveLevel());
EXPECT_TRUE( root->isEnabledFor(FATAL_LEVEL) );
EXPECT_TRUE( root->isEnabledFor(ERROR_LEVEL) );
EXPECT_TRUE( root->isEnabledFor(WARN_LEVEL) );
EXPECT_TRUE( root->isEnabledFor(INFO_LEVEL) );
EXPECT_TRUE( root->isEnabledFor(DEBUG_LEVEL) );
EXPECT_TRUE( root->isEnabledFor(TRACE_LEVEL) );
EXPECT_TRUE( !root->isEnabledFor(OFF_LEVEL) );
}
TEST_F(LoggingTest, testSetLevelOnRootPropagatesDownward)
{
LoggerPtr root = getLogger("");
LoggerPtr l = getLogger("x.y.z");
root->setLevel(INFO_LEVEL);
EXPECT_EQ(INFO_LEVEL, l->getEffectiveLevel());
}
TEST_F(LoggingTest, testSetLevelOnRootPropagatesDownwardRegardlessOfCreationOrder)
{
LoggerPtr root = getLogger("");
root->setLevel(INFO_LEVEL);
LoggerPtr l = getLogger("x.y.z");
EXPECT_EQ(INFO_LEVEL, l->getEffectiveLevel());
}
TEST_F(LoggingTest, testSetLevelDoesNotPropagateUpwards)
{
LoggerPtr a = getLogger("a");
LoggerPtr ab = getLogger("ab");
EXPECT_EQ(ERROR_LEVEL, a->getEffectiveLevel());
ab->setLevel(DEBUG_LEVEL);
EXPECT_EQ(ERROR_LEVEL, a->getEffectiveLevel());
}
TEST_F(LoggingTest, testSetLevelDoesNotPropagatePastShadowedNode)
{
LoggerPtr root = getLogger("");
LoggerPtr fluffy = getLogger("fluffy");
LoggerPtr fluffyBunnies = getLogger("fluffy.bunnies");
EXPECT_EQ(ERROR_LEVEL, fluffyBunnies->getEffectiveLevel());
// Shadow the level at "fluffy".
fluffy->setLevel(DEBUG_LEVEL);
EXPECT_EQ(DEBUG_LEVEL, fluffyBunnies->getEffectiveLevel());
// Verify that setting the root logger doesn't modify the level of
// fluffyBunnies.
root->setLevel(INFO_LEVEL);
EXPECT_EQ(DEBUG_LEVEL, fluffyBunnies->getEffectiveLevel());
}
TEST_F(LoggingTest, testShadowingOverridesPropagatedValue)
{
LoggerPtr root = getLogger("");
LoggerPtr fluffy = getLogger("fluffy");
LoggerPtr fluffyBunnies = getLogger("fluffy.bunnies");
EXPECT_EQ(ERROR_LEVEL, fluffyBunnies->getEffectiveLevel());
EXPECT_EQ(ERROR_LEVEL, fluffy->getEffectiveLevel());
// Shadow the level at "fluffy".
fluffy->setLevel(DEBUG_LEVEL);
EXPECT_EQ(DEBUG_LEVEL, fluffyBunnies->getEffectiveLevel());
EXPECT_EQ(DEBUG_LEVEL, fluffy->getEffectiveLevel());
// Verify that setting the root logger doesn't modify the level of
// fluffy *or* fluffyBunnies.
root->setLevel(INFO_LEVEL);
EXPECT_EQ(DEBUG_LEVEL, fluffyBunnies->getEffectiveLevel());
EXPECT_EQ(DEBUG_LEVEL, fluffy->getEffectiveLevel());
}
// Same test, except that we set levels in the opposite order.
TEST_F(LoggingTest, testSetLevelOverridesPropagatedValue)
{
LoggerPtr root = getLogger("");
LoggerPtr fish = getLogger("fish");
LoggerPtr fishChips = getLogger("fish.chips");
EXPECT_EQ(ERROR_LEVEL, fish->getEffectiveLevel());
EXPECT_EQ(ERROR_LEVEL, fishChips->getEffectiveLevel());
root->setLevel(TRACE_LEVEL);
EXPECT_EQ(TRACE_LEVEL, fish->getEffectiveLevel());
EXPECT_EQ(TRACE_LEVEL, fishChips->getEffectiveLevel());
fish->setLevel(WARN_LEVEL);
EXPECT_EQ(WARN_LEVEL, fish->getEffectiveLevel());
EXPECT_EQ(WARN_LEVEL, fishChips->getEffectiveLevel());
}
// The one specific test for connect() is that its return value
// is a reference to the new connection:
TEST_F(LoggingTest, testConnectMessageLoggedCanBeDisconnected)
{
LoggerPtr root = getLogger("");
LoggingReceiver receiver;
EXPECT_NO_LOGS(receiver);
sigc::connection c = connect(receiver, root);
c.disconnect();
log1(root, FATAL_LEVEL);
}
// Spot checks that the log-level macros do the "right thing". Note
// that each test uses msg1 for a log that should get through, and
// msg2 for a log that shouldn't.
TEST_F(LoggingTest, testLogTrace)
{
LoggerPtr root = getLogger("");
LoggingReceiver receiver;
{
InSequence dummy;
EXPECT_CALL(receiver,
// Note that we don't set an expectation regarding the
// line number -- that would be awkward and fragile.
// Could be avoided by putting everything on one line;
// that would be disgusting.
message_logged(_, _,
TRACE_LEVEL,
root,
msg1));
EXPECT_NO_LOGS(receiver);
}
connect(receiver, root);
LOG_TRACE(root, msg2);
root->setLevel(TRACE_LEVEL);
LOG_TRACE(root, msg1);
}
|