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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
|
// Copyright (c) 2006-2008 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 "chrome/test/automation/browser_proxy.h"
#include <vector>
#include "base/gfx/point.h"
#include "base/logging.h"
#include "base/platform_thread.h"
#include "base/time.h"
#include "chrome/test/automation/autocomplete_edit_proxy.h"
#include "chrome/test/automation/automation_constants.h"
#include "chrome/test/automation/automation_messages.h"
#include "chrome/test/automation/automation_proxy.h"
#include "chrome/test/automation/tab_proxy.h"
#include "chrome/test/automation/window_proxy.h"
using base::TimeDelta;
using base::TimeTicks;
bool BrowserProxy::ActivateTab(int tab_index) {
return ActivateTabWithTimeout(tab_index, base::kNoTimeout, NULL);
}
bool BrowserProxy::ActivateTabWithTimeout(int tab_index, uint32 timeout_ms,
bool* is_timeout) {
if (!is_valid())
return false;
int activate_tab_response = -1;
sender_->SendWithTimeout(new AutomationMsg_ActivateTab(
0, handle_, tab_index, &activate_tab_response), timeout_ms, is_timeout);
if (activate_tab_response >= 0)
return true;
return false;
}
bool BrowserProxy::BringToFront() {
return BringToFrontWithTimeout(base::kNoTimeout, NULL);
}
bool BrowserProxy::BringToFrontWithTimeout(uint32 timeout_ms,
bool* is_timeout) {
if (!is_valid())
return false;
bool succeeded = false;
sender_->SendWithTimeout(new AutomationMsg_BringBrowserToFront(
0, handle_, &succeeded), timeout_ms, is_timeout);
return succeeded;
}
bool BrowserProxy::IsPageMenuCommandEnabledWithTimeout(int id,
uint32 timeout_ms,
bool* is_timeout) {
if (!is_valid())
return false;
bool succeeded = false;
sender_->SendWithTimeout(new AutomationMsg_IsPageMenuCommandEnabled(
0, handle_, id, &succeeded), timeout_ms, is_timeout);
return succeeded;
}
bool BrowserProxy::AppendTab(const GURL& tab_url) {
if (!is_valid())
return false;
int append_tab_response = -1;
sender_->Send(new AutomationMsg_AppendTab(0, handle_, tab_url,
&append_tab_response));
return append_tab_response >= 0;
}
bool BrowserProxy::GetActiveTabIndex(int* active_tab_index) const {
return GetActiveTabIndexWithTimeout(active_tab_index, base::kNoTimeout, NULL);
}
bool BrowserProxy::GetActiveTabIndexWithTimeout(int* active_tab_index,
uint32 timeout_ms,
bool* is_timeout) const {
if (!is_valid())
return false;
if (!active_tab_index) {
NOTREACHED();
return false;
}
int active_tab_index_response = -1;
bool succeeded = sender_->SendWithTimeout(
new AutomationMsg_ActiveTabIndex(0, handle_, &active_tab_index_response),
timeout_ms, is_timeout);
if (active_tab_index_response >= 0) {
*active_tab_index = active_tab_index_response;
} else {
succeeded = false;
}
return succeeded;
}
scoped_refptr<TabProxy> BrowserProxy::GetTab(int tab_index) const {
if (!is_valid())
return NULL;
int tab_handle = 0;
sender_->Send(new AutomationMsg_Tab(0, handle_, tab_index, &tab_handle));
if (!tab_handle)
return NULL;
TabProxy* tab = static_cast<TabProxy*>(tracker_->GetResource(tab_handle));
if (!tab) {
tab = new TabProxy(sender_, tracker_, tab_handle);
tab->AddRef();
}
// Since there is no scoped_refptr::attach.
scoped_refptr<TabProxy> result;
result.swap(&tab);
return result;
}
scoped_refptr<TabProxy> BrowserProxy::GetActiveTab() const {
return GetActiveTabWithTimeout(base::kNoTimeout, NULL);
}
scoped_refptr<TabProxy> BrowserProxy::GetActiveTabWithTimeout(uint32 timeout_ms,
bool* is_timeout) const {
int active_tab_index;
if (!GetActiveTabIndexWithTimeout(&active_tab_index, timeout_ms, is_timeout))
return NULL;
return GetTab(active_tab_index);
}
bool BrowserProxy::GetTabCount(int* num_tabs) const {
return GetTabCountWithTimeout(num_tabs, base::kNoTimeout, NULL);
}
bool BrowserProxy::GetTabCountWithTimeout(int* num_tabs, uint32 timeout_ms,
bool* is_timeout) const {
if (!is_valid())
return false;
if (!num_tabs) {
NOTREACHED();
return false;
}
int tab_count_response = -1;
bool succeeded = sender_->SendWithTimeout(new AutomationMsg_TabCount(
0, handle_, &tab_count_response), timeout_ms, is_timeout);
if (tab_count_response >= 0) {
*num_tabs = tab_count_response;
} else {
succeeded = false;
}
return succeeded;
}
bool BrowserProxy::GetType(Browser::Type* type) const {
if (!is_valid())
return false;
if (!type) {
NOTREACHED();
return false;
}
int type_as_int;
bool succeeded = sender_->SendWithTimeout(new AutomationMsg_Type(
0, handle_, &type_as_int), base::kNoTimeout, NULL);
*type = static_cast<Browser::Type>(type_as_int);
return succeeded;
}
bool BrowserProxy::ApplyAccelerator(int id) {
return RunCommandAsync(id);
}
bool BrowserProxy::SimulateDrag(const gfx::Point& start,
const gfx::Point& end,
int flags,
bool press_escape_en_route) {
return SimulateDragWithTimeout(start, end, flags, base::kNoTimeout, NULL,
press_escape_en_route);
}
bool BrowserProxy::SimulateDragWithTimeout(const gfx::Point& start,
const gfx::Point& end,
int flags,
uint32 timeout_ms,
bool* is_timeout,
bool press_escape_en_route) {
if (!is_valid())
return false;
std::vector<gfx::Point> drag_path;
drag_path.push_back(start);
drag_path.push_back(end);
bool result = false;
sender_->SendWithTimeout(new AutomationMsg_WindowDrag(
0, handle_, drag_path, flags, press_escape_en_route, &result),
timeout_ms, is_timeout);
return result;
}
bool BrowserProxy::WaitForTabCountToBecome(int count, int wait_timeout) {
const TimeTicks start = TimeTicks::Now();
const TimeDelta timeout = TimeDelta::FromMilliseconds(wait_timeout);
while (TimeTicks::Now() - start < timeout) {
PlatformThread::Sleep(automation::kSleepTime);
bool is_timeout;
int new_count;
bool succeeded = GetTabCountWithTimeout(&new_count, wait_timeout,
&is_timeout);
if (!succeeded)
return false;
if (count == new_count)
return true;
}
// If we get here, the tab count doesn't match.
return false;
}
bool BrowserProxy::WaitForTabToBecomeActive(int tab,
int wait_timeout) {
const TimeTicks start = TimeTicks::Now();
const TimeDelta timeout = TimeDelta::FromMilliseconds(wait_timeout);
while (TimeTicks::Now() - start < timeout) {
PlatformThread::Sleep(automation::kSleepTime);
int active_tab;
if (GetActiveTabIndex(&active_tab) && active_tab == tab)
return true;
}
// If we get here, the active tab hasn't changed.
return false;
}
bool BrowserProxy::OpenFindInPage() {
if (!is_valid())
return false;
return sender_->Send(new AutomationMsg_OpenFindInPage(0, handle_));
// This message expects no response.
}
bool BrowserProxy::GetFindWindowLocation(int* x, int* y) {
if (!is_valid() || !x || !y)
return false;
return sender_->Send(
new AutomationMsg_FindWindowLocation(0, handle_, x, y));
}
bool BrowserProxy::IsFindWindowFullyVisible(bool* is_visible) {
if (!is_valid())
return false;
if (!is_visible) {
NOTREACHED();
return false;
}
return sender_->Send(
new AutomationMsg_FindWindowVisibility(0, handle_, is_visible));
}
bool BrowserProxy::RunCommandAsync(int browser_command) const {
if (!is_valid())
return false;
bool result = false;
sender_->Send(new AutomationMsg_WindowExecuteCommandAsync(0, handle_,
browser_command,
&result));
return result;
}
bool BrowserProxy::RunCommand(int browser_command) const {
if (!is_valid())
return false;
bool result = false;
sender_->Send(new AutomationMsg_WindowExecuteCommand(0, handle_,
browser_command,
&result));
return result;
}
bool BrowserProxy::GetBookmarkBarVisibility(bool* is_visible,
bool* is_animating) {
if (!is_valid())
return false;
if (!is_visible || !is_animating) {
NOTREACHED();
return false;
}
return sender_->Send(new AutomationMsg_BookmarkBarVisibility(
0, handle_, is_visible, is_animating));
}
bool BrowserProxy::IsShelfVisible(bool* is_visible) {
if (!is_valid())
return false;
if (!is_visible) {
NOTREACHED();
return false;
}
return sender_->Send(new AutomationMsg_ShelfVisibility(0, handle_,
is_visible));
}
bool BrowserProxy::SetShelfVisible(bool is_visible) {
if (!is_valid())
return false;
return sender_->Send(new AutomationMsg_SetShelfVisibility(0, handle_,
is_visible));
}
bool BrowserProxy::SetIntPreference(const std::wstring& name, int value) {
if (!is_valid())
return false;
bool result = false;
sender_->Send(new AutomationMsg_SetIntPreference(0, handle_, name, value,
&result));
return result;
}
bool BrowserProxy::SetStringPreference(const std::wstring& name,
const std::wstring& value) {
if (!is_valid())
return false;
bool result = false;
sender_->Send(new AutomationMsg_SetStringPreference(0, handle_, name, value,
&result));
return result;
}
bool BrowserProxy::GetBooleanPreference(const std::wstring& name,
bool* value) {
if (!is_valid())
return false;
bool result = false;
sender_->Send(new AutomationMsg_GetBooleanPreference(0, handle_, name, value,
&result));
return result;
}
bool BrowserProxy::SetBooleanPreference(const std::wstring& name,
bool value) {
if (!is_valid())
return false;
bool result = false;
sender_->Send(new AutomationMsg_SetBooleanPreference(0, handle_, name,
value, &result));
return result;
}
bool BrowserProxy::TerminateSession() {
if (!is_valid())
return false;
bool result = false;
sender_->Send(new AutomationMsg_TerminateSession(0, handle_, &result));
return result;
}
scoped_refptr<WindowProxy> BrowserProxy::GetWindow() const {
if (!is_valid())
return NULL;
bool handle_ok = false;
int window_handle = 0;
sender_->Send(new AutomationMsg_WindowForBrowser(0, handle_, &handle_ok,
&window_handle));
if (!handle_ok)
return NULL;
WindowProxy* window =
static_cast<WindowProxy*>(tracker_->GetResource(window_handle));
if (!window) {
window = new WindowProxy(sender_, tracker_, window_handle);
window->AddRef();
}
// Since there is no scoped_refptr::attach.
scoped_refptr<WindowProxy> result;
result.swap(&window);
return result;
}
scoped_refptr<AutocompleteEditProxy> BrowserProxy::GetAutocompleteEdit() {
if (!is_valid())
return NULL;
bool handle_ok = false;
int autocomplete_edit_handle = 0;
sender_->Send(new AutomationMsg_AutocompleteEditForBrowser(
0, handle_, &handle_ok, &autocomplete_edit_handle));
if (!handle_ok)
return NULL;
AutocompleteEditProxy* p = static_cast<AutocompleteEditProxy*>(
tracker_->GetResource(autocomplete_edit_handle));
if (!p) {
p = new AutocompleteEditProxy(sender_, tracker_, autocomplete_edit_handle);
p->AddRef();
}
// Since there is no scoped_refptr::attach.
scoped_refptr<AutocompleteEditProxy> result;
result.swap(&p);
return result;
}
bool BrowserProxy::IsFullscreen(bool* is_fullscreen) {
DCHECK(is_fullscreen);
if (!is_valid())
return false;
return sender_->Send(new AutomationMsg_IsFullscreen(0, handle_,
is_fullscreen));
}
bool BrowserProxy::IsFullscreenBubbleVisible(bool* is_visible) {
DCHECK(is_visible);
if (!is_valid())
return false;
return sender_->Send(new AutomationMsg_IsFullscreenBubbleVisible(0, handle_,
is_visible));
}
bool BrowserProxy::ShutdownSessionService() {
bool did_shutdown = false;
bool succeeded = sender_->Send(
new AutomationMsg_ShutdownSessionService(0, handle_, &did_shutdown));
if (!succeeded) {
DLOG(ERROR) <<
"ShutdownSessionService did not complete in a timely fashion";
return false;
}
return did_shutdown;
}
|