1 // Copyright 2015 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.
6 #include "base/command_line.h"
7 #include "base/run_loop.h"
8 #include "base/thread_task_runner_handle.h"
9 #include "base/trace_event/memory_dump_manager.h"
10 #include "base/trace_event/memory_dump_provider.h"
11 #include "base/trace_event/memory_dump_request_args.h"
12 #include "base/trace_event/trace_config_memory_test_util.h"
13 #include "content/public/browser/tracing_controller.h"
14 #include "content/public/common/content_switches.h"
15 #include "content/public/test/browser_test_utils.h"
16 #include "content/public/test/content_browser_test.h"
17 #include "content/public/test/content_browser_test_utils.h"
18 #include "content/shell/browser/shell.h"
19 #include "testing/gmock/include/gmock/gmock.h"
21 using base::trace_event::MemoryDumpArgs
;
22 using base::trace_event::MemoryDumpManager
;
23 using base::trace_event::MemoryDumpType
;
24 using base::trace_event::ProcessMemoryDump
;
26 using testing::Return
;
30 // A mock dump provider, used to check that dump requests actually end up
31 // creating memory dumps.
32 class MockDumpProvider
: public base::trace_event::MemoryDumpProvider
{
34 MOCK_METHOD2(OnMemoryDump
, bool(const MemoryDumpArgs
& args
,
35 ProcessMemoryDump
* pmd
));
38 class MemoryTracingTest
: public ContentBrowserTest
{
40 void DoRequestGlobalDump(const base::trace_event::MemoryDumpCallback
& cb
) {
41 MemoryDumpManager::GetInstance()->RequestGlobalDump(
42 MemoryDumpType::EXPLICITLY_TRIGGERED
,
43 base::trace_event::MemoryDumpLevelOfDetail::DETAILED
, cb
);
46 // Used as callback argument for MemoryDumpManager::RequestGlobalDump():
47 void OnGlobalMemoryDumpDone(
48 scoped_refptr
<base::SingleThreadTaskRunner
> task_runner
,
49 base::Closure closure
,
52 // Make sure we run the RunLoop closure on the same thread that originated
53 // the run loop (which is the IN_PROC_BROWSER_TEST_F main thread).
54 if (!task_runner
->RunsTasksOnCurrentThread()) {
55 task_runner
->PostTask(
56 FROM_HERE
, base::Bind(&MemoryTracingTest::OnGlobalMemoryDumpDone
,
57 base::Unretained(this), task_runner
, closure
,
61 ++callback_call_count_
;
62 last_callback_dump_guid_
= dump_guid
;
63 last_callback_success_
= success
;
68 void SetUp() override
{
69 callback_call_count_
= 0;
70 last_callback_dump_guid_
= 0;
71 last_callback_success_
= false;
73 mock_dump_provider_
.reset(new MockDumpProvider());
74 MemoryDumpManager::GetInstance()->RegisterDumpProvider(
75 mock_dump_provider_
.get());
76 ContentBrowserTest::SetUp();
79 void TearDown() override
{
80 MemoryDumpManager::GetInstance()->UnregisterDumpProvider(
81 mock_dump_provider_
.get());
82 mock_dump_provider_
.reset();
83 ContentBrowserTest::TearDown();
86 void EnableMemoryTracing() {
87 // Enable tracing without periodic dumps.
88 base::trace_event::TraceConfig
trace_config(
89 base::trace_event::TraceConfigMemoryTestUtil::
90 GetTraceConfig_EmptyTriggers());
92 base::RunLoop run_loop
;
93 bool success
= TracingController::GetInstance()->EnableRecording(
94 trace_config
, run_loop
.QuitClosure());
99 void DisableTracing() {
100 bool success
= TracingController::GetInstance()->DisableRecording(NULL
);
101 EXPECT_TRUE(success
);
102 base::RunLoop().RunUntilIdle();
105 void RequestGlobalDumpAndWait(bool from_renderer_thread
) {
106 base::RunLoop run_loop
;
107 base::trace_event::MemoryDumpCallback callback
= base::Bind(
108 &MemoryTracingTest::OnGlobalMemoryDumpDone
, base::Unretained(this),
109 base::ThreadTaskRunnerHandle::Get(), run_loop
.QuitClosure());
110 if (from_renderer_thread
) {
111 PostTaskToInProcessRendererAndWait(
112 base::Bind(&MemoryTracingTest::DoRequestGlobalDump
,
113 base::Unretained(this), callback
));
115 DoRequestGlobalDump(callback
);
120 void Navigate(Shell
* shell
) {
121 NavigateToURL(shell
, GetTestUrl("", "title.html"));
124 base::Closure on_memory_dump_complete_closure_
;
125 scoped_ptr
<MockDumpProvider
> mock_dump_provider_
;
126 uint32 callback_call_count_
;
127 uint64 last_callback_dump_guid_
;
128 bool last_callback_success_
;
131 // Ignore SingleProcessMemoryTracingTests for Google Chrome builds because
132 // single-process is not supported on those builds.
133 #if !defined(GOOGLE_CHROME_BUILD)
135 class SingleProcessMemoryTracingTest
: public MemoryTracingTest
{
137 SingleProcessMemoryTracingTest() {}
139 void SetUpCommandLine(base::CommandLine
* command_line
) override
{
140 command_line
->AppendSwitch(switches::kSingleProcess
);
144 // Checks that a memory dump initiated from a the main browser thread ends up in
145 // a single dump even in single process mode.
146 IN_PROC_BROWSER_TEST_F(SingleProcessMemoryTracingTest
,
147 BrowserInitiatedSingleDump
) {
150 EXPECT_CALL(*mock_dump_provider_
, OnMemoryDump(_
,_
)).WillOnce(Return(true));
152 EnableMemoryTracing();
153 RequestGlobalDumpAndWait(false /* from_renderer_thread */);
154 EXPECT_EQ(1u, callback_call_count_
);
155 EXPECT_NE(0u, last_callback_dump_guid_
);
156 EXPECT_TRUE(last_callback_success_
);
160 // Checks that a memory dump initiated from a renderer thread ends up in a
161 // single dump even in single process mode.
162 IN_PROC_BROWSER_TEST_F(SingleProcessMemoryTracingTest
,
163 RendererInitiatedSingleDump
) {
166 EXPECT_CALL(*mock_dump_provider_
, OnMemoryDump(_
,_
)).WillOnce(Return(true));
168 EnableMemoryTracing();
169 RequestGlobalDumpAndWait(true /* from_renderer_thread */);
170 EXPECT_EQ(1u, callback_call_count_
);
171 EXPECT_NE(0u, last_callback_dump_guid_
);
172 EXPECT_TRUE(last_callback_success_
);
176 IN_PROC_BROWSER_TEST_F(SingleProcessMemoryTracingTest
, ManyInterleavedDumps
) {
179 EXPECT_CALL(*mock_dump_provider_
, OnMemoryDump(_
,_
))
181 .WillRepeatedly(Return(true));
183 EnableMemoryTracing();
185 RequestGlobalDumpAndWait(true /* from_renderer_thread */);
186 EXPECT_NE(0u, last_callback_dump_guid_
);
187 EXPECT_TRUE(last_callback_success_
);
189 RequestGlobalDumpAndWait(false /* from_renderer_thread */);
190 EXPECT_NE(0u, last_callback_dump_guid_
);
191 EXPECT_TRUE(last_callback_success_
);
193 RequestGlobalDumpAndWait(false /* from_renderer_thread */);
194 EXPECT_NE(0u, last_callback_dump_guid_
);
195 EXPECT_TRUE(last_callback_success_
);
197 RequestGlobalDumpAndWait(true /* from_renderer_thread */);
198 EXPECT_EQ(4u, callback_call_count_
);
199 EXPECT_NE(0u, last_callback_dump_guid_
);
200 EXPECT_TRUE(last_callback_success_
);
205 #endif // !defined(GOOGLE_CHROME_BUILD)
207 // Checks that a memory dump initiated from a the main browser thread ends up in
208 // a successful dump.
209 IN_PROC_BROWSER_TEST_F(MemoryTracingTest
, BrowserInitiatedDump
) {
212 EXPECT_CALL(*mock_dump_provider_
, OnMemoryDump(_
,_
)).WillOnce(Return(true));
214 EnableMemoryTracing();
215 RequestGlobalDumpAndWait(false /* from_renderer_thread */);
216 EXPECT_EQ(1u, callback_call_count_
);
217 EXPECT_NE(0u, last_callback_dump_guid_
);
218 EXPECT_TRUE(last_callback_success_
);
222 } // namespace content