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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
|
// Copyright 2008, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef CHROME_TEST_AUTOMATION_TAB_PROXY_H_
#define CHROME_TEST_AUTOMATION_TAB_PROXY_H_
#include <wtypes.h>
#include <string>
#include <vector>
#include "chrome/browser/security_style.h"
#include "chrome/browser/navigation_entry.h"
#include "chrome/browser/save_package.h"
#include "chrome/test/automation/automation_handle_tracker.h"
class ConstrainedWindowProxy;
class GURL;
class Value;
typedef enum FindInPageDirection { BACK = 0, FWD = 1 };
typedef enum FindInPageCase { IGNORE_CASE = 0, CASE_SENSITIVE = 1 };
class TabProxy : public AutomationResourceProxy {
public:
TabProxy(AutomationMessageSender* sender,
AutomationHandleTracker* tracker,
int handle)
: AutomationResourceProxy(tracker, sender, handle) {}
virtual ~TabProxy() {}
// Gets the current url of the tab.
bool GetCurrentURL(GURL* url) const;
// Gets the title of the tab.
bool GetTabTitle(std::wstring* title) const;
// Gets the number of constrained window for this tab.
bool GetConstrainedWindowCount(int* count) const;
// Gets the proxy object for constrained window within this tab. Ownership
// for the returned object is transfered to the caller. Returns NULL on
// failure.
ConstrainedWindowProxy* GetConstrainedWindow(int window_index) const;
// Execute a javascript in a frame's context whose xpath
// is provided as the first parameter and extract
// the values from the resulting json string.
// Example:
// jscript = "window.domAutomationController.send('string');"
// will result in value = "string"
// jscript = "window.domAutomationController.send(24);"
// will result in value = 24
bool ExecuteAndExtractString(const std::wstring& frame_xpath,
const std::wstring& jscript,
std::wstring* value);
bool ExecuteAndExtractBool(const std::wstring& frame_xpath,
const std::wstring& jscript,
bool* value);
bool ExecuteAndExtractInt(const std::wstring& frame_xpath,
const std::wstring& jscript,
int* value);
bool ExecuteAndExtractValue(const std::wstring& frame_xpath,
const std::wstring& jscript,
Value** value);
// Navigates to a url. This method accepts the same kinds of URL input that
// can be passed to Chrome on the command line. This is a synchronous call and
// hence blocks until the navigation completes.
// Returns a status from AutomationMsg_NavigationResponseValues.
int NavigateToURL(const GURL& url);
// Navigates to a url. This is same as NavigateToURL with a timeout option.
// The function returns until the navigation completes or timeout (in
// milliseconds) occurs. If return after timeout, is_timeout is set to true.
int NavigateToURLWithTimeout(const GURL& url, uint32 timeout_ms,
bool* is_timeout);
// Navigates to a url in an externally hosted tab.
// This method accepts the same kinds of URL input that
// can be passed to Chrome on the command line. This is a synchronous call and
// hence blocks until the navigation completes.
// Returns a status from AutomationMsg_NavigationResponseValues.
int NavigateInExternalTab(const GURL& url);
// Navigates to a url. This is an asynchronous version of NavigateToURL.
// The function returns immediately after sending the LoadURL notification
// to the browser.
// TODO(vibhor): Add a callback if needed in future.
// TODO(mpcomplete): If the navigation results in an auth challenge, the
// TabProxy we attach won't know about it. See bug 666730.
bool NavigateToURLAsync(const GURL& url);
// Replaces a vector contents with the redirect chain out of the given URL.
// Returns true on success. Failure may be due to being unable to send the
// message, parse the response, or a failure of the history system in the
// browser.
bool GetRedirectsFrom(const GURL& source_url, std::vector<GURL>* redirects);
// Equivalent to hitting the Back button. This is a synchronous call and
// hence blocks until the navigation completes.
int GoBack();
// Equivalent to hitting the Forward button. This is a synchronous call and
// hence blocks until the navigation completes.
// Returns a status from AutomationMsg_NavigationResponseValues.
int GoForward();
// Equivalent to hitting the Reload button. This is a synchronous call and
// hence blocks until the navigation completes.
int Reload();
// Closes the tab. This is synchronous, but does NOT block until the tab has
// closed, rather it blocks until the browser has initiated the close. Use
// Close(true) if you need to block until tab completely closes.
//
// Note that this proxy is invalid after this call.
bool Close();
// Variant of close that allows you to specify whether you want to block
// until the tab has completely closed (wait_until_closed == true) or block
// until the browser has initiated the close (wait_until_closed = false).
//
// When a tab is closed the browser does additional work via invoke later
// and may wait for messages from the renderer. Supplying a value of true to
// this method waits until all processing is done. Be careful with this,
// when closing the last tab it is possible for the browser to shutdown BEFORE
// the tab has completely closed. In other words, this may NOT be sent for
// the last tab.
bool Close(bool wait_until_closed);
// Gets the HWND that corresponds to the content area of this tab.
// Returns true if the call was successful.
// Returns a status from AutomationMsg_NavigationResponseValues.
bool GetHWND(HWND* hwnd) const;
// Gets the process ID that corresponds to the content area of this tab.
// Returns true if the call was successful. If the specified tab has no
// separate process for rendering its content, the return value is true but
// the process_id is 0.
bool GetProcessID(int* process_id) const;
// Supply or cancel authentication to a login prompt. These are synchronous
// calls and hence block until the load finishes (or another login prompt
// appears, in the case of invalid login info).
bool SetAuth(const std::wstring& username, const std::wstring& password);
bool CancelAuth();
// Checks if this tab has a login prompt waiting for auth. This will be
// true if a navigation results in a login prompt, and if an attempted login
// fails.
// Note that this is only valid if you've done a navigation on this same
// object; different TabProxy objects can refer to the same Tab. Calls
// that can set this are NavigateToURL, GoBack, and GoForward.
// TODO(mpcomplete): we have no way of knowing if auth is needed after either
// NavigateToURLAsync, or after appending a tab with an URL that triggers
// auth.
bool NeedsAuth() const;
// Fills |*is_visible| with whether the tab's download shelf is currently
// visible. The return value indicates success. On failure, |*is_visible| is
// unchanged.
bool IsShelfVisible(bool* is_visible);
// Opens the FindInPage box. Note: If you just want to search within a tab
// you don't need to call this function, just use FindInPage(...) directly.
bool OpenFindInPage();
// Starts a search within the current tab. The parameter 'search_string'
// specifies what string to search for, 'forward' specifies whether to search
// in forward direction, and 'match_case' specifies case sensitivity
// (true=case sensitive). A return value of -1 indicates failure.
int FindInPage(const std::wstring& search_string, FindInPageDirection forward,
FindInPageCase match_case);
bool GetCookies(const GURL& url, std::string* cookies);
bool GetCookieByName(const GURL& url,
const std::string& name,
std::string* cookies);
bool SetCookie(const GURL& url, const std::string& value);
// Sends a InspectElement message for the current tab. |x| and |y| are the
// coordinates that we want to simulate that the user is trying to inspect.
int InspectElement(int x, int y);
// Block the thread until the constrained(child) window count changes.
// First parameter is the original child window count
// The second parameter is updated with the number of new child windows.
// The third parameter specifies the timeout length for the wait loop.
// Returns false if the count does not change.
bool WaitForChildWindowCountToChange(int count, int* new_count,
int wait_timeout);
bool GetDownloadDirectory(std::wstring* download_directory);
// Shows an interstitial page. Blocks until the interstitial page
// has been loaded. Return false if a failure happens.3
bool ShowInterstitialPage(const std::string& html_text);
// Hides the currently shown interstitial page. Blocks until the interstitial
// page has been hidden. Return false if a failure happens.
bool HideInterstitialPage();
// This sets the keyboard accelerators to be used by an externally
// hosted tab. This call is not valid on a regular tab hosted within
// Chrome.
bool SetAccelerators(HACCEL accel_table, int accel_table_entry_count);
// The container of an externally hosted tab calls this to reflect any
// accelerator keys that it did not process. This gives the tab a chance
// to handle the keys
bool ProcessUnhandledAccelerator(const MSG& msg);
// Waits for the tab to finish being restored. Returns true on success.
// timeout_ms gives the max amount of time to wait for restore to complete.
bool WaitForTabToBeRestored(uint32 timeout_ms);
// Retrieves the different security states for the current tab.
bool GetSecurityState(SecurityStyle* security_style,
int* ssl_cert_status,
int* mixed_content_state);
// Returns the type of the page currently showing (normal, interstitial,
// error).
bool GetPageType(NavigationEntry::PageType* page_type);
// Simulates the user action on the SSL blocking page. if |proceed| is true,
// this is equivalent to clicking the 'Proceed' button, if false to 'Take me
// out of there' button.
bool TakeActionOnSSLBlockingPage(bool proceed);
// Prints the current page without user intervention.
bool PrintNow();
// Save the current web page. |file_name| is the HTML file name, and
// |dir_path| is the directory for saving resource files. |type| indicates
// which type we're saving as: HTML only or the complete web page.
bool SavePage(const std::wstring& file_name,
const std::wstring& dir_path,
SavePackage::SavePackageType type);
// Posts a message to the external tab.
void HandleMessageFromExternalHost(AutomationHandle handle,
const std::string& target,
const std::string& message);
private:
DISALLOW_EVIL_CONSTRUCTORS(TabProxy);
};
#endif // CHROME_TEST_AUTOMATION_TAB_PROXY_H_
|