blob: a876c4f2a253cf92daaed2f87cd4661b87686d08 (
plain)
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
|
// 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.
#include "content/public/test/test_renderer_host.h"
#include "base/run_loop.h"
#include "content/browser/frame_host/navigation_entry_impl.h"
#include "content/browser/renderer_host/render_view_host_factory.h"
#include "content/browser/renderer_host/render_widget_host_impl.h"
#include "content/browser/site_instance_impl.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/mock_render_process_host.h"
#include "content/public/test/test_browser_context.h"
#include "content/test/test_render_frame_host_factory.h"
#include "content/test/test_render_view_host.h"
#include "content/test/test_render_view_host_factory.h"
#include "content/test/test_web_contents.h"
#if defined(OS_WIN)
#include "ui/base/win/scoped_ole_initializer.h"
#endif
#if defined(USE_AURA)
#include "ui/aura/test/aura_test_helper.h"
#endif
namespace content {
// RenderViewHostTester -------------------------------------------------------
// static
RenderViewHostTester* RenderViewHostTester::For(RenderViewHost* host) {
return static_cast<TestRenderViewHost*>(host);
}
// static
RenderViewHost* RenderViewHostTester::GetPendingForController(
NavigationController* controller) {
WebContentsImpl* web_contents = static_cast<WebContentsImpl*>(
controller->GetWebContents());
return web_contents->GetRenderManagerForTesting()->pending_render_view_host();
}
// static
bool RenderViewHostTester::IsRenderViewHostSwappedOut(RenderViewHost* rvh) {
return static_cast<RenderViewHostImpl*>(rvh)->is_swapped_out();
}
// static
bool RenderViewHostTester::TestOnMessageReceived(RenderViewHost* rvh,
const IPC::Message& msg) {
return static_cast<RenderViewHostImpl*>(rvh)->OnMessageReceived(msg);
}
// static
bool RenderViewHostTester::HasTouchEventHandler(RenderViewHost* rvh) {
RenderWidgetHostImpl* host_impl = RenderWidgetHostImpl::From(rvh);
return host_impl->has_touch_handler();
}
// RenderViewHostTestEnabler --------------------------------------------------
RenderViewHostTestEnabler::RenderViewHostTestEnabler()
: rph_factory_(new MockRenderProcessHostFactory()),
rvh_factory_(new TestRenderViewHostFactory(rph_factory_.get())),
rfh_factory_(new TestRenderFrameHostFactory()) {}
RenderViewHostTestEnabler::~RenderViewHostTestEnabler() {
}
// RenderViewHostTestHarness --------------------------------------------------
RenderViewHostTestHarness::RenderViewHostTestHarness()
: thread_bundle_options_(TestBrowserThreadBundle::DEFAULT) {}
RenderViewHostTestHarness::~RenderViewHostTestHarness() {
}
NavigationController& RenderViewHostTestHarness::controller() {
return web_contents()->GetController();
}
WebContents* RenderViewHostTestHarness::web_contents() {
return contents_.get();
}
RenderViewHost* RenderViewHostTestHarness::rvh() {
return web_contents()->GetRenderViewHost();
}
RenderViewHost* RenderViewHostTestHarness::pending_rvh() {
return static_cast<TestWebContents*>(web_contents())->
GetRenderManagerForTesting()->pending_render_view_host();
}
RenderViewHost* RenderViewHostTestHarness::active_rvh() {
return pending_rvh() ? pending_rvh() : rvh();
}
BrowserContext* RenderViewHostTestHarness::browser_context() {
return browser_context_.get();
}
MockRenderProcessHost* RenderViewHostTestHarness::process() {
return static_cast<MockRenderProcessHost*>(active_rvh()->GetProcess());
}
void RenderViewHostTestHarness::DeleteContents() {
SetContents(NULL);
}
void RenderViewHostTestHarness::SetContents(WebContents* contents) {
contents_.reset(contents);
}
WebContents* RenderViewHostTestHarness::CreateTestWebContents() {
// Make sure we ran SetUp() already.
#if defined(OS_WIN)
DCHECK(ole_initializer_ != NULL);
#endif
#if defined(USE_AURA)
DCHECK(aura_test_helper_ != NULL);
#endif
// This will be deleted when the WebContentsImpl goes away.
SiteInstance* instance = SiteInstance::Create(browser_context_.get());
return TestWebContents::Create(browser_context_.get(), instance);
}
void RenderViewHostTestHarness::NavigateAndCommit(const GURL& url) {
static_cast<TestWebContents*>(web_contents())->NavigateAndCommit(url);
}
void RenderViewHostTestHarness::Reload() {
NavigationEntry* entry = controller().GetLastCommittedEntry();
DCHECK(entry);
controller().Reload(false);
static_cast<TestRenderViewHost*>(
rvh())->SendNavigate(entry->GetPageID(), entry->GetURL());
}
void RenderViewHostTestHarness::FailedReload() {
NavigationEntry* entry = controller().GetLastCommittedEntry();
DCHECK(entry);
controller().Reload(false);
static_cast<TestRenderViewHost*>(
rvh())->SendFailedNavigate(entry->GetPageID(), entry->GetURL());
}
void RenderViewHostTestHarness::SetUp() {
thread_bundle_.reset(new TestBrowserThreadBundle(thread_bundle_options_));
#if defined(OS_WIN)
ole_initializer_.reset(new ui::ScopedOleInitializer());
#endif
#if defined(USE_AURA)
aura_test_helper_.reset(
new aura::test::AuraTestHelper(base::MessageLoopForUI::current()));
aura_test_helper_->SetUp();
#endif
DCHECK(!browser_context_);
browser_context_.reset(CreateBrowserContext());
SetContents(CreateTestWebContents());
}
void RenderViewHostTestHarness::TearDown() {
SetContents(NULL);
#if defined(USE_AURA)
aura_test_helper_->TearDown();
#endif
// Make sure that we flush any messages related to WebContentsImpl destruction
// before we destroy the browser context.
base::RunLoop().RunUntilIdle();
#if defined(OS_WIN)
ole_initializer_.reset();
#endif
// Delete any RenderProcessHosts before the BrowserContext goes away.
if (rvh_test_enabler_.rph_factory_)
rvh_test_enabler_.rph_factory_.reset();
// Release the browser context by posting itself on the end of the task
// queue. This is preferable to immediate deletion because it will behave
// properly if the |rph_factory_| reset above enqueued any tasks which
// depend on |browser_context_|.
BrowserThread::DeleteSoon(content::BrowserThread::UI,
FROM_HERE,
browser_context_.release());
thread_bundle_.reset();
}
BrowserContext* RenderViewHostTestHarness::CreateBrowserContext() {
return new TestBrowserContext();
}
void RenderViewHostTestHarness::SetRenderProcessHostFactory(
RenderProcessHostFactory* factory) {
rvh_test_enabler_.rvh_factory_->set_render_process_host_factory(factory);
}
} // namespace content
|