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
|
// Copyright (c) 2013 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.
#include "net/log/net_log.h"
#include "base/bind.h"
#include "base/memory/scoped_vector.h"
#include "base/synchronization/waitable_event.h"
#include "base/threading/simple_thread.h"
#include "base/values.h"
#include "net/base/net_errors.h"
#include "net/log/test_net_log.h"
#include "net/log/test_net_log_entry.h"
#include "net/log/test_net_log_util.h"
namespace net {
namespace {
const int kThreads = 10;
const int kEvents = 100;
base::Value* CaptureModeToValue(NetLogCaptureMode capture_mode) {
return new base::FundamentalValue(capture_mode.ToInternalValueForTesting());
}
base::Value* NetCaptureModeCallback(NetLogCaptureMode capture_mode) {
base::DictionaryValue* dict = new base::DictionaryValue();
dict->Set("capture_mode", CaptureModeToValue(capture_mode));
return dict;
}
TEST(NetLogTest, Basic) {
TestNetLog net_log;
TestNetLogEntry::List entries;
net_log.GetEntries(&entries);
EXPECT_EQ(0u, entries.size());
net_log.AddGlobalEntry(NetLog::TYPE_CANCELLED);
net_log.GetEntries(&entries);
ASSERT_EQ(1u, entries.size());
EXPECT_EQ(NetLog::TYPE_CANCELLED, entries[0].type);
EXPECT_EQ(NetLog::SOURCE_NONE, entries[0].source.type);
EXPECT_NE(NetLog::Source::kInvalidId, entries[0].source.id);
EXPECT_EQ(NetLog::PHASE_NONE, entries[0].phase);
EXPECT_GE(base::TimeTicks::Now(), entries[0].time);
EXPECT_FALSE(entries[0].params);
}
// Check that the correct CaptureMode is sent to NetLog Value callbacks.
TEST(NetLogTest, CaptureModes) {
NetLogCaptureMode kModes[] = {
NetLogCaptureMode::Default(),
NetLogCaptureMode::IncludeCookiesAndCredentials(),
NetLogCaptureMode::IncludeSocketBytes(),
};
TestNetLog net_log;
for (NetLogCaptureMode mode : kModes) {
net_log.SetCaptureMode(mode);
EXPECT_EQ(mode, net_log.GetObserver()->capture_mode());
net_log.AddGlobalEntry(NetLog::TYPE_SOCKET_ALIVE,
base::Bind(NetCaptureModeCallback));
TestNetLogEntry::List entries;
net_log.GetEntries(&entries);
ASSERT_EQ(1u, entries.size());
EXPECT_EQ(NetLog::TYPE_SOCKET_ALIVE, entries[0].type);
EXPECT_EQ(NetLog::SOURCE_NONE, entries[0].source.type);
EXPECT_NE(NetLog::Source::kInvalidId, entries[0].source.id);
EXPECT_EQ(NetLog::PHASE_NONE, entries[0].phase);
EXPECT_GE(base::TimeTicks::Now(), entries[0].time);
int logged_capture_mode;
ASSERT_TRUE(
entries[0].GetIntegerValue("capture_mode", &logged_capture_mode));
EXPECT_EQ(mode.ToInternalValueForTesting(), logged_capture_mode);
net_log.Clear();
}
}
class CountingObserver : public NetLog::ThreadSafeObserver {
public:
CountingObserver() : count_(0) {}
~CountingObserver() override {
if (net_log())
net_log()->DeprecatedRemoveObserver(this);
}
void OnAddEntry(const NetLog::Entry& entry) override { ++count_; }
int count() const { return count_; }
private:
int count_;
};
class LoggingObserver : public NetLog::ThreadSafeObserver {
public:
LoggingObserver() {}
~LoggingObserver() override {
if (net_log())
net_log()->DeprecatedRemoveObserver(this);
}
void OnAddEntry(const NetLog::Entry& entry) override {
base::Value* value = entry.ToValue();
base::DictionaryValue* dict = NULL;
ASSERT_TRUE(value->GetAsDictionary(&dict));
values_.push_back(dict);
}
size_t GetNumValues() const { return values_.size(); }
base::DictionaryValue* GetValue(size_t index) const { return values_[index]; }
private:
ScopedVector<base::DictionaryValue> values_;
};
void AddEvent(NetLog* net_log) {
net_log->AddGlobalEntry(NetLog::TYPE_CANCELLED,
base::Bind(CaptureModeToValue));
}
// A thread that waits until an event has been signalled before calling
// RunTestThread.
class NetLogTestThread : public base::SimpleThread {
public:
NetLogTestThread()
: base::SimpleThread("NetLogTest"), net_log_(NULL), start_event_(NULL) {}
// We'll wait for |start_event| to be triggered before calling a subclass's
// subclass's RunTestThread() function.
void Init(NetLog* net_log, base::WaitableEvent* start_event) {
start_event_ = start_event;
net_log_ = net_log;
}
void Run() override {
start_event_->Wait();
RunTestThread();
}
// Subclasses must override this with the code they want to run on their
// thread.
virtual void RunTestThread() = 0;
protected:
NetLog* net_log_;
private:
// Only triggered once all threads have been created, to make it less likely
// each thread completes before the next one starts.
base::WaitableEvent* start_event_;
DISALLOW_COPY_AND_ASSIGN(NetLogTestThread);
};
// A thread that adds a bunch of events to the NetLog.
class AddEventsTestThread : public NetLogTestThread {
public:
AddEventsTestThread() {}
~AddEventsTestThread() override {}
private:
void RunTestThread() override {
for (int i = 0; i < kEvents; ++i)
AddEvent(net_log_);
}
DISALLOW_COPY_AND_ASSIGN(AddEventsTestThread);
};
// A thread that adds and removes an observer from the NetLog repeatedly.
class AddRemoveObserverTestThread : public NetLogTestThread {
public:
AddRemoveObserverTestThread() {}
~AddRemoveObserverTestThread() override { EXPECT_TRUE(!observer_.net_log()); }
private:
void RunTestThread() override {
for (int i = 0; i < kEvents; ++i) {
ASSERT_FALSE(observer_.net_log());
net_log_->DeprecatedAddObserver(
&observer_, NetLogCaptureMode::IncludeCookiesAndCredentials());
ASSERT_EQ(net_log_, observer_.net_log());
ASSERT_EQ(NetLogCaptureMode::IncludeCookiesAndCredentials(),
observer_.capture_mode());
net_log_->SetObserverCaptureMode(&observer_,
NetLogCaptureMode::IncludeSocketBytes());
ASSERT_EQ(net_log_, observer_.net_log());
ASSERT_EQ(NetLogCaptureMode::IncludeSocketBytes(),
observer_.capture_mode());
net_log_->DeprecatedRemoveObserver(&observer_);
ASSERT_TRUE(!observer_.net_log());
}
}
CountingObserver observer_;
DISALLOW_COPY_AND_ASSIGN(AddRemoveObserverTestThread);
};
// Creates |kThreads| threads of type |ThreadType| and then runs them all
// to completion.
template <class ThreadType>
void RunTestThreads(NetLog* net_log) {
ThreadType threads[kThreads];
base::WaitableEvent start_event(true, false);
for (size_t i = 0; i < arraysize(threads); ++i) {
threads[i].Init(net_log, &start_event);
threads[i].Start();
}
start_event.Signal();
for (size_t i = 0; i < arraysize(threads); ++i)
threads[i].Join();
}
// Makes sure that events on multiple threads are dispatched to all observers.
TEST(NetLogTest, NetLogEventThreads) {
NetLog net_log;
// Attach some observers. Since they're created after |net_log|, they'll
// safely detach themselves on destruction.
CountingObserver observers[3];
for (size_t i = 0; i < arraysize(observers); ++i) {
net_log.DeprecatedAddObserver(&observers[i],
NetLogCaptureMode::IncludeSocketBytes());
}
// Run a bunch of threads to completion, each of which will emit events to
// |net_log|.
RunTestThreads<AddEventsTestThread>(&net_log);
// Check that each observer saw the emitted events.
const int kTotalEvents = kThreads * kEvents;
for (size_t i = 0; i < arraysize(observers); ++i)
EXPECT_EQ(kTotalEvents, observers[i].count());
}
// Test adding and removing a single observer.
TEST(NetLogTest, NetLogAddRemoveObserver) {
NetLog net_log;
CountingObserver observer;
AddEvent(&net_log);
EXPECT_EQ(0, observer.count());
EXPECT_EQ(NULL, observer.net_log());
EXPECT_FALSE(net_log.IsCapturing());
// Add the observer and add an event.
net_log.DeprecatedAddObserver(
&observer, NetLogCaptureMode::IncludeCookiesAndCredentials());
EXPECT_TRUE(net_log.IsCapturing());
EXPECT_EQ(&net_log, observer.net_log());
EXPECT_EQ(NetLogCaptureMode::IncludeCookiesAndCredentials(),
observer.capture_mode());
EXPECT_TRUE(net_log.IsCapturing());
AddEvent(&net_log);
EXPECT_EQ(1, observer.count());
// Change the observer's logging level and add an event.
net_log.SetObserverCaptureMode(&observer,
NetLogCaptureMode::IncludeSocketBytes());
EXPECT_EQ(&net_log, observer.net_log());
EXPECT_EQ(NetLogCaptureMode::IncludeSocketBytes(), observer.capture_mode());
EXPECT_TRUE(net_log.IsCapturing());
AddEvent(&net_log);
EXPECT_EQ(2, observer.count());
// Remove observer and add an event.
net_log.DeprecatedRemoveObserver(&observer);
EXPECT_EQ(NULL, observer.net_log());
EXPECT_FALSE(net_log.IsCapturing());
AddEvent(&net_log);
EXPECT_EQ(2, observer.count());
// Add the observer a final time, and add an event.
net_log.DeprecatedAddObserver(&observer,
NetLogCaptureMode::IncludeSocketBytes());
EXPECT_EQ(&net_log, observer.net_log());
EXPECT_EQ(NetLogCaptureMode::IncludeSocketBytes(), observer.capture_mode());
EXPECT_TRUE(net_log.IsCapturing());
AddEvent(&net_log);
EXPECT_EQ(3, observer.count());
}
// Test adding and removing two observers at different log levels.
TEST(NetLogTest, NetLogTwoObservers) {
NetLog net_log;
LoggingObserver observer[2];
// Add first observer.
net_log.DeprecatedAddObserver(
&observer[0], NetLogCaptureMode::IncludeCookiesAndCredentials());
EXPECT_EQ(&net_log, observer[0].net_log());
EXPECT_EQ(NULL, observer[1].net_log());
EXPECT_EQ(NetLogCaptureMode::IncludeCookiesAndCredentials(),
observer[0].capture_mode());
EXPECT_TRUE(net_log.IsCapturing());
// Add second observer observer.
net_log.DeprecatedAddObserver(&observer[1],
NetLogCaptureMode::IncludeSocketBytes());
EXPECT_EQ(&net_log, observer[0].net_log());
EXPECT_EQ(&net_log, observer[1].net_log());
EXPECT_EQ(NetLogCaptureMode::IncludeCookiesAndCredentials(),
observer[0].capture_mode());
EXPECT_EQ(NetLogCaptureMode::IncludeSocketBytes(),
observer[1].capture_mode());
EXPECT_TRUE(net_log.IsCapturing());
// Add event and make sure both observers receive it at their respective log
// levels.
int param;
AddEvent(&net_log);
ASSERT_EQ(1U, observer[0].GetNumValues());
ASSERT_TRUE(observer[0].GetValue(0)->GetInteger("params", ¶m));
EXPECT_EQ(observer[0].capture_mode().ToInternalValueForTesting(), param);
ASSERT_EQ(1U, observer[1].GetNumValues());
ASSERT_TRUE(observer[1].GetValue(0)->GetInteger("params", ¶m));
EXPECT_EQ(observer[1].capture_mode().ToInternalValueForTesting(), param);
// Remove second observer.
net_log.DeprecatedRemoveObserver(&observer[1]);
EXPECT_EQ(&net_log, observer[0].net_log());
EXPECT_EQ(NULL, observer[1].net_log());
EXPECT_EQ(NetLogCaptureMode::IncludeCookiesAndCredentials(),
observer[0].capture_mode());
EXPECT_TRUE(net_log.IsCapturing());
// Add event and make sure only second observer gets it.
AddEvent(&net_log);
EXPECT_EQ(2U, observer[0].GetNumValues());
EXPECT_EQ(1U, observer[1].GetNumValues());
// Remove first observer.
net_log.DeprecatedRemoveObserver(&observer[0]);
EXPECT_EQ(NULL, observer[0].net_log());
EXPECT_EQ(NULL, observer[1].net_log());
EXPECT_FALSE(net_log.IsCapturing());
// Add event and make sure neither observer gets it.
AddEvent(&net_log);
EXPECT_EQ(2U, observer[0].GetNumValues());
EXPECT_EQ(1U, observer[1].GetNumValues());
}
// Makes sure that adding and removing observers simultaneously on different
// threads works.
TEST(NetLogTest, NetLogAddRemoveObserverThreads) {
NetLog net_log;
// Run a bunch of threads to completion, each of which will repeatedly add
// and remove an observer, and set its logging level.
RunTestThreads<AddRemoveObserverTestThread>(&net_log);
}
} // namespace
} // namespace net
|