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 #ifndef CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_
6 #define CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_
11 #include "base/basictypes.h"
12 #include "base/gtest_prod_util.h"
13 #include "build/build_config.h"
14 #include "content/browser/renderer_host/render_view_host_impl.h"
15 #include "content/browser/renderer_host/render_widget_host_view_base.h"
16 #include "content/public/common/page_transition_types.h"
17 #include "content/public/test/test_renderer_host.h"
18 #include "content/test/test_render_frame_host.h"
19 #include "ui/base/layout.h"
20 #include "ui/gfx/vector2d_f.h"
22 // This file provides a testing framework for mocking out the RenderProcessHost
23 // layer. It allows you to test RenderViewHost, WebContentsImpl,
24 // NavigationController, and other layers above that without running an actual
27 // To use, derive your test base class from RenderViewHostImplTestHarness.
29 struct FrameHostMsg_DidCommitProvisionalLoad_Params
;
38 class TestRenderFrameHost
;
39 class TestWebContents
;
41 // Utility function to initialize ViewHostMsg_NavigateParams_Params
42 // with given |page_id|, |url| and |transition_type|.
43 void InitNavigateParams(FrameHostMsg_DidCommitProvisionalLoad_Params
* params
,
46 PageTransition transition_type
);
48 // TestRenderViewHostView ------------------------------------------------------
50 // Subclass the RenderViewHost's view so that we can call Show(), etc.,
51 // without having side-effects.
52 class TestRenderWidgetHostView
: public RenderWidgetHostViewBase
{
54 explicit TestRenderWidgetHostView(RenderWidgetHost
* rwh
);
55 virtual ~TestRenderWidgetHostView();
57 // RenderWidgetHostView implementation.
58 virtual void InitAsChild(gfx::NativeView parent_view
) OVERRIDE
{}
59 virtual RenderWidgetHost
* GetRenderWidgetHost() const OVERRIDE
;
60 virtual void SetSize(const gfx::Size
& size
) OVERRIDE
{}
61 virtual void SetBounds(const gfx::Rect
& rect
) OVERRIDE
{}
62 virtual gfx::NativeView
GetNativeView() const OVERRIDE
;
63 virtual gfx::NativeViewId
GetNativeViewId() const OVERRIDE
;
64 virtual gfx::NativeViewAccessible
GetNativeViewAccessible() OVERRIDE
;
65 virtual bool HasFocus() const OVERRIDE
;
66 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE
;
67 virtual void Show() OVERRIDE
;
68 virtual void Hide() OVERRIDE
;
69 virtual bool IsShowing() OVERRIDE
;
70 virtual gfx::Rect
GetViewBounds() const OVERRIDE
;
71 #if defined(OS_MACOSX)
72 virtual void SetActive(bool active
) OVERRIDE
;
73 virtual void SetTakesFocusOnlyOnMouseDown(bool flag
) OVERRIDE
{}
74 virtual void SetWindowVisibility(bool visible
) OVERRIDE
{}
75 virtual void WindowFrameChanged() OVERRIDE
{}
76 virtual void ShowDefinitionForSelection() OVERRIDE
{}
77 virtual bool SupportsSpeech() const OVERRIDE
;
78 virtual void SpeakSelection() OVERRIDE
;
79 virtual bool IsSpeaking() const OVERRIDE
;
80 virtual void StopSpeaking() OVERRIDE
;
81 #endif // defined(OS_MACOSX)
82 virtual void OnSwapCompositorFrame(
83 uint32 output_surface_id
,
84 scoped_ptr
<cc::CompositorFrame
> frame
) OVERRIDE
;
86 // RenderWidgetHostViewBase implementation.
87 virtual void InitAsPopup(RenderWidgetHostView
* parent_host_view
,
88 const gfx::Rect
& pos
) OVERRIDE
{}
89 virtual void InitAsFullscreen(
90 RenderWidgetHostView
* reference_host_view
) OVERRIDE
{}
91 virtual void WasShown() OVERRIDE
{}
92 virtual void WasHidden() OVERRIDE
{}
93 virtual void MovePluginWindows(
94 const std::vector
<WebPluginGeometry
>& moves
) OVERRIDE
{}
95 virtual void Focus() OVERRIDE
{}
96 virtual void Blur() OVERRIDE
{}
97 virtual void SetIsLoading(bool is_loading
) OVERRIDE
{}
98 virtual void UpdateCursor(const WebCursor
& cursor
) OVERRIDE
{}
99 virtual void TextInputTypeChanged(ui::TextInputType type
,
100 ui::TextInputMode input_mode
,
101 bool can_compose_inline
) OVERRIDE
{}
102 virtual void ImeCancelComposition() OVERRIDE
{}
103 #if defined(OS_MACOSX) || defined(USE_AURA)
104 virtual void ImeCompositionRangeChanged(
105 const gfx::Range
& range
,
106 const std::vector
<gfx::Rect
>& character_bounds
) OVERRIDE
{}
108 virtual void RenderProcessGone(base::TerminationStatus status
,
109 int error_code
) OVERRIDE
;
110 virtual void WillDestroyRenderWidget(RenderWidgetHost
* rwh
) { }
111 virtual void Destroy() OVERRIDE
;
112 virtual void SetTooltipText(const base::string16
& tooltip_text
) OVERRIDE
{}
113 virtual void SelectionBoundsChanged(
114 const ViewHostMsg_SelectionBounds_Params
& params
) OVERRIDE
{}
115 virtual void ScrollOffsetChanged() OVERRIDE
{}
116 virtual void CopyFromCompositingSurface(
117 const gfx::Rect
& src_subrect
,
118 const gfx::Size
& dst_size
,
119 const base::Callback
<void(bool, const SkBitmap
&)>& callback
,
120 const SkBitmap::Config config
) OVERRIDE
;
121 virtual void CopyFromCompositingSurfaceToVideoFrame(
122 const gfx::Rect
& src_subrect
,
123 const scoped_refptr
<media::VideoFrame
>& target
,
124 const base::Callback
<void(bool)>& callback
) OVERRIDE
;
125 virtual bool CanCopyToVideoFrame() const OVERRIDE
;
126 virtual void OnAcceleratedCompositingStateChange() OVERRIDE
;
127 virtual void AcceleratedSurfaceInitialized(int host_id
,
128 int route_id
) OVERRIDE
;
129 virtual void AcceleratedSurfaceBuffersSwapped(
130 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params
& params
,
131 int gpu_host_id
) OVERRIDE
;
132 virtual void AcceleratedSurfacePostSubBuffer(
133 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params
& params
,
134 int gpu_host_id
) OVERRIDE
;
135 virtual void AcceleratedSurfaceSuspend() OVERRIDE
;
136 virtual void AcceleratedSurfaceRelease() OVERRIDE
{}
137 virtual bool HasAcceleratedSurface(const gfx::Size
& desired_size
) OVERRIDE
;
138 #if defined(OS_MACOSX)
139 virtual bool PostProcessEventForPluginIme(
140 const NativeWebKeyboardEvent
& event
) OVERRIDE
;
141 #elif defined(OS_ANDROID)
142 virtual void SelectionRootBoundsChanged(const gfx::Rect
&) OVERRIDE
{}
143 virtual void ShowDisambiguationPopup(
144 const gfx::Rect
& target_rect
,
145 const SkBitmap
& zoomed_bitmap
) OVERRIDE
{}
146 virtual void LockCompositingSurface() OVERRIDE
{}
147 virtual void UnlockCompositingSurface() OVERRIDE
{}
149 virtual void GetScreenInfo(blink::WebScreenInfo
* results
) OVERRIDE
{}
150 virtual gfx::Rect
GetBoundsInRootWindow() OVERRIDE
;
151 virtual void SetScrollOffsetPinning(
152 bool is_pinned_to_left
, bool is_pinned_to_right
) OVERRIDE
{ }
153 virtual gfx::GLSurfaceHandle
GetCompositingSurface() OVERRIDE
;
154 virtual bool LockMouse() OVERRIDE
;
155 virtual void UnlockMouse() OVERRIDE
;
157 virtual void SetParentNativeViewAccessible(
158 gfx::NativeViewAccessible accessible_parent
) OVERRIDE
;
159 virtual gfx::NativeViewId
GetParentForWindowlessPlugin() const OVERRIDE
;
162 bool is_showing() const { return is_showing_
; }
163 bool did_swap_compositor_frame() const { return did_swap_compositor_frame_
; }
166 RenderWidgetHostImpl
* rwh_
;
170 bool did_swap_compositor_frame_
;
173 #if defined(COMPILER_MSVC)
174 // See comment for same warning on RenderViewHostImpl.
175 #pragma warning(push)
176 #pragma warning(disable: 4250)
179 // TestRenderViewHost ----------------------------------------------------------
181 // TODO(brettw) this should use a TestWebContents which should be generalized
182 // from the WebContentsImpl test. We will probably also need that class' version
183 // of CreateRenderViewForRenderManager when more complicated tests start using
186 // Note that users outside of content must use this class by getting
187 // the separate RenderViewHostTester interface via
188 // RenderViewHostTester::For(rvh) on the RenderViewHost they want to
191 // Users within content may directly static_cast from a
192 // RenderViewHost* to a TestRenderViewHost*.
194 // The reasons we do it this way rather than extending the parallel
195 // inheritance hierarchy we have for RenderWidgetHost/RenderViewHost
196 // vs. RenderWidgetHostImpl/RenderViewHostImpl are:
198 // a) Extending the parallel class hierarchy further would require
199 // more classes to use virtual inheritance. This is a complexity that
200 // is better to avoid, especially when it would be introduced in the
201 // production code solely to facilitate testing code.
203 // b) While users outside of content only need to drive tests on a
204 // RenderViewHost, content needs a test version of the full
205 // RenderViewHostImpl so that it can test all methods on that concrete
206 // class (e.g. overriding a method such as
207 // RenderViewHostImpl::CreateRenderView). This would have complicated
208 // the dual class hierarchy even further.
210 // The reason we do it this way instead of using composition is
211 // similar to (b) above, essentially it gets very tricky. By using
212 // the split interface we avoid complexity within content and maintain
213 // reasonable utility for embedders.
214 class TestRenderViewHost
215 : public RenderViewHostImpl
,
216 public RenderViewHostTester
{
218 TestRenderViewHost(SiteInstance
* instance
,
219 RenderViewHostDelegate
* delegate
,
220 RenderWidgetHostDelegate
* widget_delegate
,
222 int main_frame_routing_id
,
224 virtual ~TestRenderViewHost();
226 // RenderViewHostTester implementation. Note that CreateRenderView
227 // is not specified since it is synonymous with the one from
228 // RenderViewHostImpl, see below.
229 virtual void SendBeforeUnloadACK(bool proceed
) OVERRIDE
;
230 virtual void SetContentsMimeType(const std::string
& mime_type
) OVERRIDE
;
231 virtual void SimulateSwapOutACK() OVERRIDE
;
232 virtual void SimulateWasHidden() OVERRIDE
;
233 virtual void SimulateWasShown() OVERRIDE
;
235 // NOTE: These methods are deprecated and the equivalents in
236 // TestRenderFrameHost should be used.
237 virtual void SendNavigate(int page_id
, const GURL
& url
) OVERRIDE
;
238 virtual void SendFailedNavigate(int page_id
, const GURL
& url
) OVERRIDE
;
239 virtual void SendNavigateWithTransition(int page_id
, const GURL
& url
,
240 PageTransition transition
) OVERRIDE
;
242 // Calls OnNavigate on the RenderViewHost with the given information,
243 // including a custom original request URL. Sets the rest of the
244 // parameters in the message to the "typical" values. This is a helper
245 // function for simulating the most common types of loads.
246 void SendNavigateWithOriginalRequestURL(
247 int page_id
, const GURL
& url
, const GURL
& original_request_url
);
249 void SendNavigateWithFile(
250 int page_id
, const GURL
& url
, const base::FilePath
& file_path
);
252 void SendNavigateWithParams(
253 FrameHostMsg_DidCommitProvisionalLoad_Params
* params
);
255 void TestOnUpdateStateWithFile(
256 int process_id
, const base::FilePath
& file_path
);
258 void TestOnStartDragging(const DropData
& drop_data
);
260 // If set, *delete_counter is incremented when this object destructs.
261 void set_delete_counter(int* delete_counter
) {
262 delete_counter_
= delete_counter
;
265 // Sets whether the RenderView currently exists or not. This controls the
266 // return value from IsRenderViewLive, which the rest of the system uses to
267 // check whether the RenderView has crashed or not.
268 void set_render_view_created(bool created
) {
269 render_view_created_
= created
;
272 // Returns whether the RenderViewHost is currently waiting to hear the result
273 // of a before unload handler from the renderer.
274 bool is_waiting_for_beforeunload_ack() const {
275 return is_waiting_for_beforeunload_ack_
;
278 // Sets whether the RenderViewHost is currently swapped out, and thus
279 // filtering messages from the renderer.
280 void set_rvh_state(RenderViewHostImplState rvh_state
) {
281 rvh_state_
= rvh_state
;
284 // If set, navigations will appear to have loaded through a proxy
285 // (ViewHostMsg_FrameNavigte_Params::was_fetched_via_proxy).
287 void set_simulate_fetch_via_proxy(bool proxy
);
289 // If set, navigations will appear to have cleared the history list in the
291 // (FrameHostMsg_DidCommitProvisionalLoad_Params::history_list_was_cleared).
293 void set_simulate_history_list_was_cleared(bool cleared
);
295 // The opener route id passed to CreateRenderView().
296 int opener_route_id() const { return opener_route_id_
; }
298 // TODO(creis): Remove the need for these methods.
299 TestRenderFrameHost
* main_render_frame_host() const {
300 return main_render_frame_host_
;
302 void set_main_render_frame_host(TestRenderFrameHost
* rfh
) {
303 main_render_frame_host_
= rfh
;
306 // RenderViewHost overrides --------------------------------------------------
308 virtual bool CreateRenderView(const base::string16
& frame_name
,
311 bool window_was_created_with_opener
) OVERRIDE
;
312 virtual bool IsRenderViewLive() const OVERRIDE
;
313 virtual bool IsFullscreen() const OVERRIDE
;
316 FRIEND_TEST_ALL_PREFIXES(RenderViewHostTest
, FilterNavigate
);
318 void SendNavigateWithTransitionAndResponseCode(int page_id
,
320 PageTransition transition
,
323 // Calls OnNavigate on the RenderViewHost with the given information.
324 // Sets the rest of the parameters in the message to the "typical" values.
325 // This is a helper function for simulating the most common types of loads.
326 void SendNavigateWithParameters(
329 PageTransition transition
,
330 const GURL
& original_request_url
,
332 const base::FilePath
* file_path_for_history_item
);
334 // Tracks if the caller thinks if it created the RenderView. This is so we can
335 // respond to IsRenderViewLive appropriately.
336 bool render_view_created_
;
338 // See set_delete_counter() above. May be NULL.
339 int* delete_counter_
;
341 // See set_simulate_fetch_via_proxy() above.
342 bool simulate_fetch_via_proxy_
;
344 // See set_simulate_history_list_was_cleared() above.
345 bool simulate_history_list_was_cleared_
;
347 // See SetContentsMimeType() above.
348 std::string contents_mime_type_
;
350 // See opener_route_id() above.
351 int opener_route_id_
;
353 TestRenderFrameHost
* main_render_frame_host_
;
355 DISALLOW_COPY_AND_ASSIGN(TestRenderViewHost
);
358 #if defined(COMPILER_MSVC)
362 // Adds methods to get straight at the impl classes.
363 class RenderViewHostImplTestHarness
: public RenderViewHostTestHarness
{
365 RenderViewHostImplTestHarness();
366 virtual ~RenderViewHostImplTestHarness();
368 TestRenderViewHost
* test_rvh();
369 TestRenderViewHost
* pending_test_rvh();
370 TestRenderViewHost
* active_test_rvh();
371 TestRenderFrameHost
* main_test_rfh();
372 TestWebContents
* contents();
375 typedef scoped_ptr
<ui::test::ScopedSetSupportedScaleFactors
>
376 ScopedSetSupportedScaleFactors
;
377 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_
;
378 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness
);
381 } // namespace content
383 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_