1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Test of classes in the tracked_objects.h classes.
7 #include "base/tracked_objects.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/process_util.h"
11 #include "base/time/time.h"
12 #include "testing/gtest/include/gtest/gtest.h"
14 const int kLineNumber
= 1776;
15 const char kFile
[] = "FixedUnitTestFileName";
16 const char kWorkerThreadName
[] = "WorkerThread-1";
17 const char kMainThreadName
[] = "SomeMainThreadName";
18 const char kStillAlive
[] = "Still_Alive";
20 namespace tracked_objects
{
22 class TrackedObjectsTest
: public testing::Test
{
24 TrackedObjectsTest() {
25 // On entry, leak any database structures in case they are still in use by
27 ThreadData::ShutdownSingleThreadedCleanup(true);
30 virtual ~TrackedObjectsTest() {
31 // We should not need to leak any structures we create, since we are
32 // single threaded, and carefully accounting for items.
33 ThreadData::ShutdownSingleThreadedCleanup(false);
36 // Reset the profiler state.
38 ThreadData::ShutdownSingleThreadedCleanup(false);
41 // Simulate a birth on the thread named |thread_name|, at the given
43 void TallyABirth(const Location
& location
, const std::string
& thread_name
) {
44 // If the |thread_name| is empty, we don't initialize system with a thread
45 // name, so we're viewed as a worker thread.
46 if (!thread_name
.empty())
47 ThreadData::InitializeThreadContext(kMainThreadName
);
49 // Do not delete |birth|. We don't own it.
50 Births
* birth
= ThreadData::TallyABirthIfActive(location
);
52 if (ThreadData::status() == ThreadData::DEACTIVATED
)
53 EXPECT_EQ(reinterpret_cast<Births
*>(NULL
), birth
);
55 EXPECT_NE(reinterpret_cast<Births
*>(NULL
), birth
);
58 // Helper function to verify the most common test expectations.
59 void ExpectSimpleProcessData(const ProcessDataSnapshot
& process_data
,
60 const std::string
& function_name
,
61 const std::string
& birth_thread
,
62 const std::string
& death_thread
,
66 ASSERT_EQ(1u, process_data
.tasks
.size());
68 EXPECT_EQ(kFile
, process_data
.tasks
[0].birth
.location
.file_name
);
69 EXPECT_EQ(function_name
,
70 process_data
.tasks
[0].birth
.location
.function_name
);
71 EXPECT_EQ(kLineNumber
, process_data
.tasks
[0].birth
.location
.line_number
);
73 EXPECT_EQ(birth_thread
, process_data
.tasks
[0].birth
.thread_name
);
75 EXPECT_EQ(count
, process_data
.tasks
[0].death_data
.count
);
76 EXPECT_EQ(count
* run_ms
,
77 process_data
.tasks
[0].death_data
.run_duration_sum
);
78 EXPECT_EQ(run_ms
, process_data
.tasks
[0].death_data
.run_duration_max
);
79 EXPECT_EQ(run_ms
, process_data
.tasks
[0].death_data
.run_duration_sample
);
80 EXPECT_EQ(count
* queue_ms
,
81 process_data
.tasks
[0].death_data
.queue_duration_sum
);
82 EXPECT_EQ(queue_ms
, process_data
.tasks
[0].death_data
.queue_duration_max
);
83 EXPECT_EQ(queue_ms
, process_data
.tasks
[0].death_data
.queue_duration_sample
);
85 EXPECT_EQ(death_thread
, process_data
.tasks
[0].death_thread_name
);
87 EXPECT_EQ(0u, process_data
.descendants
.size());
89 EXPECT_EQ(base::GetCurrentProcId(), process_data
.process_id
);
93 TEST_F(TrackedObjectsTest
, MinimalStartupShutdown
) {
94 // Minimal test doesn't even create any tasks.
95 if (!ThreadData::InitializeAndSetTrackingStatus(
96 ThreadData::PROFILING_CHILDREN_ACTIVE
))
99 EXPECT_FALSE(ThreadData::first()); // No activity even on this thread.
100 ThreadData
* data
= ThreadData::Get();
101 EXPECT_TRUE(ThreadData::first()); // Now class was constructed.
103 EXPECT_FALSE(data
->next());
104 EXPECT_EQ(data
, ThreadData::Get());
105 ThreadData::BirthMap birth_map
;
106 ThreadData::DeathMap death_map
;
107 ThreadData::ParentChildSet parent_child_set
;
108 data
->SnapshotMaps(false, &birth_map
, &death_map
, &parent_child_set
);
109 EXPECT_EQ(0u, birth_map
.size());
110 EXPECT_EQ(0u, death_map
.size());
111 EXPECT_EQ(0u, parent_child_set
.size());
113 // Clean up with no leaking.
116 // Do it again, just to be sure we reset state completely.
117 EXPECT_TRUE(ThreadData::InitializeAndSetTrackingStatus(
118 ThreadData::PROFILING_CHILDREN_ACTIVE
));
119 EXPECT_FALSE(ThreadData::first()); // No activity even on this thread.
120 data
= ThreadData::Get();
121 EXPECT_TRUE(ThreadData::first()); // Now class was constructed.
123 EXPECT_FALSE(data
->next());
124 EXPECT_EQ(data
, ThreadData::Get());
127 parent_child_set
.clear();
128 data
->SnapshotMaps(false, &birth_map
, &death_map
, &parent_child_set
);
129 EXPECT_EQ(0u, birth_map
.size());
130 EXPECT_EQ(0u, death_map
.size());
131 EXPECT_EQ(0u, parent_child_set
.size());
134 TEST_F(TrackedObjectsTest
, TinyStartupShutdown
) {
135 if (!ThreadData::InitializeAndSetTrackingStatus(
136 ThreadData::PROFILING_CHILDREN_ACTIVE
))
139 // Instigate tracking on a single tracked object, on our thread.
140 const char kFunction
[] = "TinyStartupShutdown";
141 Location
location(kFunction
, kFile
, kLineNumber
, NULL
);
142 Births
* first_birth
= ThreadData::TallyABirthIfActive(location
);
144 ThreadData
* data
= ThreadData::first();
146 EXPECT_FALSE(data
->next());
147 EXPECT_EQ(data
, ThreadData::Get());
148 ThreadData::BirthMap birth_map
;
149 ThreadData::DeathMap death_map
;
150 ThreadData::ParentChildSet parent_child_set
;
151 data
->SnapshotMaps(false, &birth_map
, &death_map
, &parent_child_set
);
152 EXPECT_EQ(1u, birth_map
.size()); // 1 birth location.
153 EXPECT_EQ(1, birth_map
.begin()->second
->birth_count()); // 1 birth.
154 EXPECT_EQ(0u, death_map
.size()); // No deaths.
155 EXPECT_EQ(0u, parent_child_set
.size()); // No children.
158 // Now instigate another birth, while we are timing the run of the first
160 ThreadData::NowForStartOfRun(first_birth
);
161 // Create a child (using the same birth location).
162 // TrackingInfo will call TallyABirth() during construction.
163 base::TimeTicks kBogusBirthTime
;
164 base::TrackingInfo
pending_task(location
, kBogusBirthTime
);
165 TrackedTime
start_time(pending_task
.time_posted
);
166 // Finally conclude the outer run.
167 TrackedTime end_time
= ThreadData::NowForEndOfRun();
168 ThreadData::TallyRunOnNamedThreadIfTracking(pending_task
, start_time
,
173 parent_child_set
.clear();
174 data
->SnapshotMaps(false, &birth_map
, &death_map
, &parent_child_set
);
175 EXPECT_EQ(1u, birth_map
.size()); // 1 birth location.
176 EXPECT_EQ(2, birth_map
.begin()->second
->birth_count()); // 2 births.
177 EXPECT_EQ(1u, death_map
.size()); // 1 location.
178 EXPECT_EQ(1, death_map
.begin()->second
.count()); // 1 death.
179 if (ThreadData::TrackingParentChildStatus()) {
180 EXPECT_EQ(1u, parent_child_set
.size()); // 1 child.
181 EXPECT_EQ(parent_child_set
.begin()->first
,
182 parent_child_set
.begin()->second
);
184 EXPECT_EQ(0u, parent_child_set
.size()); // no stats.
187 // The births were at the same location as the one known death.
188 EXPECT_EQ(birth_map
.begin()->second
, death_map
.begin()->first
);
190 ProcessDataSnapshot process_data
;
191 ThreadData::Snapshot(false, &process_data
);
193 const int32 time_elapsed
= (end_time
- start_time
).InMilliseconds();
194 ASSERT_EQ(1u, process_data
.tasks
.size());
195 EXPECT_EQ(kFile
, process_data
.tasks
[0].birth
.location
.file_name
);
196 EXPECT_EQ(kFunction
, process_data
.tasks
[0].birth
.location
.function_name
);
197 EXPECT_EQ(kLineNumber
, process_data
.tasks
[0].birth
.location
.line_number
);
198 EXPECT_EQ(kWorkerThreadName
, process_data
.tasks
[0].birth
.thread_name
);
199 EXPECT_EQ(1, process_data
.tasks
[0].death_data
.count
);
200 EXPECT_EQ(time_elapsed
, process_data
.tasks
[0].death_data
.run_duration_sum
);
201 EXPECT_EQ(time_elapsed
, process_data
.tasks
[0].death_data
.run_duration_max
);
202 EXPECT_EQ(time_elapsed
, process_data
.tasks
[0].death_data
.run_duration_sample
);
203 EXPECT_EQ(0, process_data
.tasks
[0].death_data
.queue_duration_sum
);
204 EXPECT_EQ(0, process_data
.tasks
[0].death_data
.queue_duration_max
);
205 EXPECT_EQ(0, process_data
.tasks
[0].death_data
.queue_duration_sample
);
206 EXPECT_EQ(kWorkerThreadName
, process_data
.tasks
[0].death_thread_name
);
208 if (ThreadData::TrackingParentChildStatus()) {
209 ASSERT_EQ(1u, process_data
.descendants
.size());
210 EXPECT_EQ(kFile
, process_data
.descendants
[0].parent
.location
.file_name
);
212 process_data
.descendants
[0].parent
.location
.function_name
);
213 EXPECT_EQ(kLineNumber
,
214 process_data
.descendants
[0].parent
.location
.line_number
);
215 EXPECT_EQ(kWorkerThreadName
,
216 process_data
.descendants
[0].parent
.thread_name
);
217 EXPECT_EQ(kFile
, process_data
.descendants
[0].child
.location
.file_name
);
219 process_data
.descendants
[0].child
.location
.function_name
);
220 EXPECT_EQ(kLineNumber
,
221 process_data
.descendants
[0].child
.location
.line_number
);
222 EXPECT_EQ(kWorkerThreadName
, process_data
.descendants
[0].child
.thread_name
);
224 EXPECT_EQ(0u, process_data
.descendants
.size());
228 TEST_F(TrackedObjectsTest
, DeathDataTest
) {
229 if (!ThreadData::InitializeAndSetTrackingStatus(
230 ThreadData::PROFILING_CHILDREN_ACTIVE
))
233 scoped_ptr
<DeathData
> data(new DeathData());
234 ASSERT_NE(data
, reinterpret_cast<DeathData
*>(NULL
));
235 EXPECT_EQ(data
->run_duration_sum(), 0);
236 EXPECT_EQ(data
->run_duration_sample(), 0);
237 EXPECT_EQ(data
->queue_duration_sum(), 0);
238 EXPECT_EQ(data
->queue_duration_sample(), 0);
239 EXPECT_EQ(data
->count(), 0);
244 const int kUnrandomInt
= 0; // Fake random int that ensure we sample data.
245 data
->RecordDeath(queue_ms
, run_ms
, kUnrandomInt
);
246 EXPECT_EQ(data
->run_duration_sum(), run_ms
);
247 EXPECT_EQ(data
->run_duration_sample(), run_ms
);
248 EXPECT_EQ(data
->queue_duration_sum(), queue_ms
);
249 EXPECT_EQ(data
->queue_duration_sample(), queue_ms
);
250 EXPECT_EQ(data
->count(), 1);
252 data
->RecordDeath(queue_ms
, run_ms
, kUnrandomInt
);
253 EXPECT_EQ(data
->run_duration_sum(), run_ms
+ run_ms
);
254 EXPECT_EQ(data
->run_duration_sample(), run_ms
);
255 EXPECT_EQ(data
->queue_duration_sum(), queue_ms
+ queue_ms
);
256 EXPECT_EQ(data
->queue_duration_sample(), queue_ms
);
257 EXPECT_EQ(data
->count(), 2);
259 DeathDataSnapshot
snapshot(*data
);
260 EXPECT_EQ(2, snapshot
.count
);
261 EXPECT_EQ(2 * run_ms
, snapshot
.run_duration_sum
);
262 EXPECT_EQ(run_ms
, snapshot
.run_duration_max
);
263 EXPECT_EQ(run_ms
, snapshot
.run_duration_sample
);
264 EXPECT_EQ(2 * queue_ms
, snapshot
.queue_duration_sum
);
265 EXPECT_EQ(queue_ms
, snapshot
.queue_duration_max
);
266 EXPECT_EQ(queue_ms
, snapshot
.queue_duration_sample
);
269 TEST_F(TrackedObjectsTest
, DeactivatedBirthOnlyToSnapshotWorkerThread
) {
270 // Start in the deactivated state.
271 if (!ThreadData::InitializeAndSetTrackingStatus(ThreadData::DEACTIVATED
))
274 const char kFunction
[] = "DeactivatedBirthOnlyToSnapshotWorkerThread";
275 Location
location(kFunction
, kFile
, kLineNumber
, NULL
);
276 TallyABirth(location
, std::string());
278 ProcessDataSnapshot process_data
;
279 ThreadData::Snapshot(false, &process_data
);
280 EXPECT_EQ(0u, process_data
.tasks
.size());
281 EXPECT_EQ(0u, process_data
.descendants
.size());
282 EXPECT_EQ(base::GetCurrentProcId(), process_data
.process_id
);
285 TEST_F(TrackedObjectsTest
, DeactivatedBirthOnlyToSnapshotMainThread
) {
286 // Start in the deactivated state.
287 if (!ThreadData::InitializeAndSetTrackingStatus(ThreadData::DEACTIVATED
))
290 const char kFunction
[] = "DeactivatedBirthOnlyToSnapshotMainThread";
291 Location
location(kFunction
, kFile
, kLineNumber
, NULL
);
292 TallyABirth(location
, kMainThreadName
);
294 ProcessDataSnapshot process_data
;
295 ThreadData::Snapshot(false, &process_data
);
296 EXPECT_EQ(0u, process_data
.tasks
.size());
297 EXPECT_EQ(0u, process_data
.descendants
.size());
298 EXPECT_EQ(base::GetCurrentProcId(), process_data
.process_id
);
301 TEST_F(TrackedObjectsTest
, BirthOnlyToSnapshotWorkerThread
) {
302 if (!ThreadData::InitializeAndSetTrackingStatus(
303 ThreadData::PROFILING_CHILDREN_ACTIVE
))
306 const char kFunction
[] = "BirthOnlyToSnapshotWorkerThread";
307 Location
location(kFunction
, kFile
, kLineNumber
, NULL
);
308 TallyABirth(location
, std::string());
310 ProcessDataSnapshot process_data
;
311 ThreadData::Snapshot(false, &process_data
);
312 ExpectSimpleProcessData(process_data
, kFunction
, kWorkerThreadName
,
313 kStillAlive
, 1, 0, 0);
316 TEST_F(TrackedObjectsTest
, BirthOnlyToSnapshotMainThread
) {
317 if (!ThreadData::InitializeAndSetTrackingStatus(
318 ThreadData::PROFILING_CHILDREN_ACTIVE
))
321 const char kFunction
[] = "BirthOnlyToSnapshotMainThread";
322 Location
location(kFunction
, kFile
, kLineNumber
, NULL
);
323 TallyABirth(location
, kMainThreadName
);
325 ProcessDataSnapshot process_data
;
326 ThreadData::Snapshot(false, &process_data
);
327 ExpectSimpleProcessData(process_data
, kFunction
, kMainThreadName
, kStillAlive
,
331 TEST_F(TrackedObjectsTest
, LifeCycleToSnapshotMainThread
) {
332 if (!ThreadData::InitializeAndSetTrackingStatus(
333 ThreadData::PROFILING_CHILDREN_ACTIVE
))
336 const char kFunction
[] = "LifeCycleToSnapshotMainThread";
337 Location
location(kFunction
, kFile
, kLineNumber
, NULL
);
338 TallyABirth(location
, kMainThreadName
);
340 const base::TimeTicks kTimePosted
= base::TimeTicks() +
341 base::TimeDelta::FromMilliseconds(1);
342 const base::TimeTicks kDelayedStartTime
= base::TimeTicks();
343 // TrackingInfo will call TallyABirth() during construction.
344 base::TrackingInfo
pending_task(location
, kDelayedStartTime
);
345 pending_task
.time_posted
= kTimePosted
; // Overwrite implied Now().
347 const TrackedTime kStartOfRun
= TrackedTime() +
348 Duration::FromMilliseconds(5);
349 const TrackedTime kEndOfRun
= TrackedTime() + Duration::FromMilliseconds(7);
350 ThreadData::TallyRunOnNamedThreadIfTracking(pending_task
,
351 kStartOfRun
, kEndOfRun
);
353 ProcessDataSnapshot process_data
;
354 ThreadData::Snapshot(false, &process_data
);
355 ExpectSimpleProcessData(process_data
, kFunction
, kMainThreadName
,
356 kMainThreadName
, 1, 2, 4);
359 // We will deactivate tracking after the birth, and before the death, and
360 // demonstrate that the lifecycle is completely tallied. This ensures that
361 // our tallied births are matched by tallied deaths (except for when the
362 // task is still running, or is queued).
363 TEST_F(TrackedObjectsTest
, LifeCycleMidDeactivatedToSnapshotMainThread
) {
364 if (!ThreadData::InitializeAndSetTrackingStatus(
365 ThreadData::PROFILING_CHILDREN_ACTIVE
))
368 const char kFunction
[] = "LifeCycleMidDeactivatedToSnapshotMainThread";
369 Location
location(kFunction
, kFile
, kLineNumber
, NULL
);
370 TallyABirth(location
, kMainThreadName
);
372 const base::TimeTicks kTimePosted
= base::TimeTicks() +
373 base::TimeDelta::FromMilliseconds(1);
374 const base::TimeTicks kDelayedStartTime
= base::TimeTicks();
375 // TrackingInfo will call TallyABirth() during construction.
376 base::TrackingInfo
pending_task(location
, kDelayedStartTime
);
377 pending_task
.time_posted
= kTimePosted
; // Overwrite implied Now().
379 // Turn off tracking now that we have births.
380 EXPECT_TRUE(ThreadData::InitializeAndSetTrackingStatus(
381 ThreadData::DEACTIVATED
));
383 const TrackedTime kStartOfRun
= TrackedTime() +
384 Duration::FromMilliseconds(5);
385 const TrackedTime kEndOfRun
= TrackedTime() + Duration::FromMilliseconds(7);
386 ThreadData::TallyRunOnNamedThreadIfTracking(pending_task
,
387 kStartOfRun
, kEndOfRun
);
389 ProcessDataSnapshot process_data
;
390 ThreadData::Snapshot(false, &process_data
);
391 ExpectSimpleProcessData(process_data
, kFunction
, kMainThreadName
,
392 kMainThreadName
, 1, 2, 4);
395 // We will deactivate tracking before starting a life cycle, and neither
396 // the birth nor the death will be recorded.
397 TEST_F(TrackedObjectsTest
, LifeCyclePreDeactivatedToSnapshotMainThread
) {
398 // Start in the deactivated state.
399 if (!ThreadData::InitializeAndSetTrackingStatus(ThreadData::DEACTIVATED
))
402 const char kFunction
[] = "LifeCyclePreDeactivatedToSnapshotMainThread";
403 Location
location(kFunction
, kFile
, kLineNumber
, NULL
);
404 TallyABirth(location
, kMainThreadName
);
406 const base::TimeTicks kTimePosted
= base::TimeTicks() +
407 base::TimeDelta::FromMilliseconds(1);
408 const base::TimeTicks kDelayedStartTime
= base::TimeTicks();
409 // TrackingInfo will call TallyABirth() during construction.
410 base::TrackingInfo
pending_task(location
, kDelayedStartTime
);
411 pending_task
.time_posted
= kTimePosted
; // Overwrite implied Now().
413 const TrackedTime kStartOfRun
= TrackedTime() +
414 Duration::FromMilliseconds(5);
415 const TrackedTime kEndOfRun
= TrackedTime() + Duration::FromMilliseconds(7);
416 ThreadData::TallyRunOnNamedThreadIfTracking(pending_task
,
417 kStartOfRun
, kEndOfRun
);
419 ProcessDataSnapshot process_data
;
420 ThreadData::Snapshot(false, &process_data
);
421 EXPECT_EQ(0u, process_data
.tasks
.size());
422 EXPECT_EQ(0u, process_data
.descendants
.size());
423 EXPECT_EQ(base::GetCurrentProcId(), process_data
.process_id
);
426 TEST_F(TrackedObjectsTest
, LifeCycleToSnapshotWorkerThread
) {
427 if (!ThreadData::InitializeAndSetTrackingStatus(
428 ThreadData::PROFILING_CHILDREN_ACTIVE
))
431 const char kFunction
[] = "LifeCycleToSnapshotWorkerThread";
432 Location
location(kFunction
, kFile
, kLineNumber
, NULL
);
433 // Do not delete |birth|. We don't own it.
434 Births
* birth
= ThreadData::TallyABirthIfActive(location
);
435 EXPECT_NE(reinterpret_cast<Births
*>(NULL
), birth
);
437 const TrackedTime kTimePosted
= TrackedTime() + Duration::FromMilliseconds(1);
438 const TrackedTime kStartOfRun
= TrackedTime() +
439 Duration::FromMilliseconds(5);
440 const TrackedTime kEndOfRun
= TrackedTime() + Duration::FromMilliseconds(7);
441 ThreadData::TallyRunOnWorkerThreadIfTracking(birth
, kTimePosted
,
442 kStartOfRun
, kEndOfRun
);
444 // Call for the ToSnapshot, but tell it to not reset the maxes after scanning.
445 ProcessDataSnapshot process_data
;
446 ThreadData::Snapshot(false, &process_data
);
447 ExpectSimpleProcessData(process_data
, kFunction
, kWorkerThreadName
,
448 kWorkerThreadName
, 1, 2, 4);
450 // Call for the ToSnapshot, but tell it to reset the maxes after scanning.
451 // We'll still get the same values, but the data will be reset (which we'll
453 ProcessDataSnapshot process_data_pre_reset
;
454 ThreadData::Snapshot(true, &process_data_pre_reset
);
455 ExpectSimpleProcessData(process_data
, kFunction
, kWorkerThreadName
,
456 kWorkerThreadName
, 1, 2, 4);
458 // Call for the ToSnapshot, and now we'll see the result of the last
459 // translation, as the max will have been pushed back to zero.
460 ProcessDataSnapshot process_data_post_reset
;
461 ThreadData::Snapshot(true, &process_data_post_reset
);
462 ASSERT_EQ(1u, process_data_post_reset
.tasks
.size());
463 EXPECT_EQ(kFile
, process_data_post_reset
.tasks
[0].birth
.location
.file_name
);
465 process_data_post_reset
.tasks
[0].birth
.location
.function_name
);
466 EXPECT_EQ(kLineNumber
,
467 process_data_post_reset
.tasks
[0].birth
.location
.line_number
);
468 EXPECT_EQ(kWorkerThreadName
,
469 process_data_post_reset
.tasks
[0].birth
.thread_name
);
470 EXPECT_EQ(1, process_data_post_reset
.tasks
[0].death_data
.count
);
471 EXPECT_EQ(2, process_data_post_reset
.tasks
[0].death_data
.run_duration_sum
);
472 EXPECT_EQ(0, process_data_post_reset
.tasks
[0].death_data
.run_duration_max
);
473 EXPECT_EQ(2, process_data_post_reset
.tasks
[0].death_data
.run_duration_sample
);
474 EXPECT_EQ(4, process_data_post_reset
.tasks
[0].death_data
.queue_duration_sum
);
475 EXPECT_EQ(0, process_data_post_reset
.tasks
[0].death_data
.queue_duration_max
);
477 process_data_post_reset
.tasks
[0].death_data
.queue_duration_sample
);
478 EXPECT_EQ(kWorkerThreadName
,
479 process_data_post_reset
.tasks
[0].death_thread_name
);
480 EXPECT_EQ(0u, process_data_post_reset
.descendants
.size());
481 EXPECT_EQ(base::GetCurrentProcId(), process_data_post_reset
.process_id
);
484 TEST_F(TrackedObjectsTest
, TwoLives
) {
485 if (!ThreadData::InitializeAndSetTrackingStatus(
486 ThreadData::PROFILING_CHILDREN_ACTIVE
))
489 const char kFunction
[] = "TwoLives";
490 Location
location(kFunction
, kFile
, kLineNumber
, NULL
);
491 TallyABirth(location
, kMainThreadName
);
493 const base::TimeTicks kTimePosted
= base::TimeTicks() +
494 base::TimeDelta::FromMilliseconds(1);
495 const base::TimeTicks kDelayedStartTime
= base::TimeTicks();
496 // TrackingInfo will call TallyABirth() during construction.
497 base::TrackingInfo
pending_task(location
, kDelayedStartTime
);
498 pending_task
.time_posted
= kTimePosted
; // Overwrite implied Now().
500 const TrackedTime kStartOfRun
= TrackedTime() +
501 Duration::FromMilliseconds(5);
502 const TrackedTime kEndOfRun
= TrackedTime() + Duration::FromMilliseconds(7);
503 ThreadData::TallyRunOnNamedThreadIfTracking(pending_task
,
504 kStartOfRun
, kEndOfRun
);
506 // TrackingInfo will call TallyABirth() during construction.
507 base::TrackingInfo
pending_task2(location
, kDelayedStartTime
);
508 pending_task2
.time_posted
= kTimePosted
; // Overwrite implied Now().
510 ThreadData::TallyRunOnNamedThreadIfTracking(pending_task2
,
511 kStartOfRun
, kEndOfRun
);
513 ProcessDataSnapshot process_data
;
514 ThreadData::Snapshot(false, &process_data
);
515 ExpectSimpleProcessData(process_data
, kFunction
, kMainThreadName
,
516 kMainThreadName
, 2, 2, 4);
519 TEST_F(TrackedObjectsTest
, DifferentLives
) {
520 if (!ThreadData::InitializeAndSetTrackingStatus(
521 ThreadData::PROFILING_CHILDREN_ACTIVE
))
524 // Use a well named thread.
525 ThreadData::InitializeThreadContext(kMainThreadName
);
526 const char kFunction
[] = "DifferentLives";
527 Location
location(kFunction
, kFile
, kLineNumber
, NULL
);
529 const base::TimeTicks kTimePosted
= base::TimeTicks() +
530 base::TimeDelta::FromMilliseconds(1);
531 const base::TimeTicks kDelayedStartTime
= base::TimeTicks();
532 // TrackingInfo will call TallyABirth() during construction.
533 base::TrackingInfo
pending_task(location
, kDelayedStartTime
);
534 pending_task
.time_posted
= kTimePosted
; // Overwrite implied Now().
536 const TrackedTime kStartOfRun
= TrackedTime() +
537 Duration::FromMilliseconds(5);
538 const TrackedTime kEndOfRun
= TrackedTime() + Duration::FromMilliseconds(7);
539 ThreadData::TallyRunOnNamedThreadIfTracking(pending_task
,
540 kStartOfRun
, kEndOfRun
);
542 const int kSecondFakeLineNumber
= 999;
543 Location
second_location(kFunction
, kFile
, kSecondFakeLineNumber
, NULL
);
545 // TrackingInfo will call TallyABirth() during construction.
546 base::TrackingInfo
pending_task2(second_location
, kDelayedStartTime
);
547 pending_task2
.time_posted
= kTimePosted
; // Overwrite implied Now().
549 ProcessDataSnapshot process_data
;
550 ThreadData::Snapshot(false, &process_data
);
551 ASSERT_EQ(2u, process_data
.tasks
.size());
552 EXPECT_EQ(kFile
, process_data
.tasks
[0].birth
.location
.file_name
);
553 EXPECT_EQ(kFunction
, process_data
.tasks
[0].birth
.location
.function_name
);
554 EXPECT_EQ(kLineNumber
, process_data
.tasks
[0].birth
.location
.line_number
);
555 EXPECT_EQ(kMainThreadName
, process_data
.tasks
[0].birth
.thread_name
);
556 EXPECT_EQ(1, process_data
.tasks
[0].death_data
.count
);
557 EXPECT_EQ(2, process_data
.tasks
[0].death_data
.run_duration_sum
);
558 EXPECT_EQ(2, process_data
.tasks
[0].death_data
.run_duration_max
);
559 EXPECT_EQ(2, process_data
.tasks
[0].death_data
.run_duration_sample
);
560 EXPECT_EQ(4, process_data
.tasks
[0].death_data
.queue_duration_sum
);
561 EXPECT_EQ(4, process_data
.tasks
[0].death_data
.queue_duration_max
);
562 EXPECT_EQ(4, process_data
.tasks
[0].death_data
.queue_duration_sample
);
563 EXPECT_EQ(kMainThreadName
, process_data
.tasks
[0].death_thread_name
);
564 EXPECT_EQ(kFile
, process_data
.tasks
[1].birth
.location
.file_name
);
565 EXPECT_EQ(kFunction
, process_data
.tasks
[1].birth
.location
.function_name
);
566 EXPECT_EQ(kSecondFakeLineNumber
,
567 process_data
.tasks
[1].birth
.location
.line_number
);
568 EXPECT_EQ(kMainThreadName
, process_data
.tasks
[1].birth
.thread_name
);
569 EXPECT_EQ(1, process_data
.tasks
[1].death_data
.count
);
570 EXPECT_EQ(0, process_data
.tasks
[1].death_data
.run_duration_sum
);
571 EXPECT_EQ(0, process_data
.tasks
[1].death_data
.run_duration_max
);
572 EXPECT_EQ(0, process_data
.tasks
[1].death_data
.run_duration_sample
);
573 EXPECT_EQ(0, process_data
.tasks
[1].death_data
.queue_duration_sum
);
574 EXPECT_EQ(0, process_data
.tasks
[1].death_data
.queue_duration_max
);
575 EXPECT_EQ(0, process_data
.tasks
[1].death_data
.queue_duration_sample
);
576 EXPECT_EQ(kStillAlive
, process_data
.tasks
[1].death_thread_name
);
577 EXPECT_EQ(0u, process_data
.descendants
.size());
578 EXPECT_EQ(base::GetCurrentProcId(), process_data
.process_id
);
581 } // namespace tracked_objects