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_PUBLIC_TEST_RENDER_VIEW_TEST_H_
6 #define CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_
10 #include "base/command_line.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/message_loop/message_loop.h"
13 #include "base/strings/string16.h"
14 #include "content/public/browser/native_web_keyboard_event.h"
15 #include "content/public/common/main_function_params.h"
16 #include "content/public/test/mock_render_thread.h"
17 #include "testing/gtest/include/gtest/gtest.h"
18 #include "third_party/WebKit/public/platform/Platform.h"
19 #include "third_party/WebKit/public/web/WebFrame.h"
30 class ContentBrowserClient
;
32 class ContentRendererClient
;
33 class MockRenderProcess
;
35 class RendererMainPlatformDelegate
;
36 class RendererWebKitPlatformSupportImplNoSandboxImpl
;
39 class RenderViewTest
: public testing::Test
{
41 // A special WebKitPlatformSupportImpl class for getting rid off the
42 // dependency to the sandbox, which is not available in RenderViewTest.
43 class RendererWebKitPlatformSupportImplNoSandbox
{
45 RendererWebKitPlatformSupportImplNoSandbox();
46 ~RendererWebKitPlatformSupportImplNoSandbox();
47 blink::Platform
* Get();
50 scoped_ptr
<RendererWebKitPlatformSupportImplNoSandboxImpl
>
51 webkit_platform_support_
;
55 virtual ~RenderViewTest();
58 // Spins the message loop to process all messages that are currently pending.
59 void ProcessPendingMessages();
61 // Returns a pointer to the main frame.
62 blink::WebLocalFrame
* GetMainFrame();
64 // Executes the given JavaScript in the context of the main frame. The input
65 // is a NULL-terminated UTF-8 string.
66 void ExecuteJavaScript(const char* js
);
68 // Executes the given JavaScript and sets the int value it evaluates to in
70 // Returns true if the JavaScript was evaluated correctly to an int value,
72 bool ExecuteJavaScriptAndReturnIntValue(const base::string16
& script
,
75 // Loads the given HTML into the main frame as a data: URL and blocks until
76 // the navigation is committed.
77 void LoadHTML(const char* html
);
79 // Navigates the main frame back or forward in session history and commits.
80 // The caller must capture a PageState for the target page.
81 void GoBack(const PageState
& state
);
82 void GoForward(const PageState
& state
);
84 // Navigates the main frame back to whatever is considered the previous
85 // history entry internally.
86 void GoBackToPrevious();
88 // Sends one native key event over IPC.
89 void SendNativeKeyEvent(const NativeWebKeyboardEvent
& key_event
);
91 // Send a raw keyboard event to the renderer.
92 void SendWebKeyboardEvent(const blink::WebKeyboardEvent
& key_event
);
94 // Send a raw mouse event to the renderer.
95 void SendWebMouseEvent(const blink::WebMouseEvent
& key_event
);
97 // Returns the bounds (coordinates and size) of the element with id
98 // |element_id|. Returns an empty rect if such an element was not found.
99 gfx::Rect
GetElementBounds(const std::string
& element_id
);
101 // Sends a left mouse click in the middle of the element with id |element_id|.
102 // Returns true if the event was sent, false otherwise (typically because
103 // the element was not found).
104 bool SimulateElementClick(const std::string
& element_id
);
106 // Simulates |node| being focused.
107 void SetFocused(const blink::WebNode
& node
);
109 // Clears anything associated with the browsing history.
112 // Simulates a navigation with a type of reload to the given url.
113 void Reload(const GURL
& url
);
115 // Returns the IPC message ID of the navigation message.
116 uint32
GetNavigationIPCType();
119 void Resize(gfx::Size new_size
,
120 gfx::Rect resizer_rect
,
123 // These are all methods from RenderViewImpl that we expose to testing code.
124 bool OnMessageReceived(const IPC::Message
& msg
);
125 void DidNavigateWithinPage(blink::WebLocalFrame
* frame
,
126 bool is_new_navigation
);
127 void SendContentStateImmediately();
128 blink::WebWidget
* GetWebWidget();
130 // Allows a subclass to override the various content client implementations.
131 virtual ContentClient
* CreateContentClient();
132 virtual ContentBrowserClient
* CreateContentBrowserClient();
133 virtual ContentRendererClient
* CreateContentRendererClient();
136 virtual void SetUp() OVERRIDE
;
138 virtual void TearDown() OVERRIDE
;
140 base::MessageLoop msg_loop_
;
141 scoped_ptr
<MockRenderProcess
> mock_process_
;
142 // We use a naked pointer because we don't want to expose RenderViewImpl in
143 // the embedder's namespace.
145 RendererWebKitPlatformSupportImplNoSandbox webkit_platform_support_
;
146 scoped_ptr
<ContentClient
> content_client_
;
147 scoped_ptr
<ContentBrowserClient
> content_browser_client_
;
148 scoped_ptr
<ContentRendererClient
> content_renderer_client_
;
149 scoped_ptr
<MockRenderThread
> render_thread_
;
151 // Used to setup the process so renderers can run.
152 scoped_ptr
<RendererMainPlatformDelegate
> platform_
;
153 scoped_ptr
<MainFunctionParams
> params_
;
154 scoped_ptr
<base::CommandLine
> command_line_
;
156 #if defined(OS_MACOSX)
157 scoped_ptr
<base::mac::ScopedNSAutoreleasePool
> autorelease_pool_
;
161 void GoToOffset(int offset
, const PageState
& state
);
164 } // namespace content
166 #endif // CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_