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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
|
// Copyright 2013 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 "remote_desktop_browsertest.h"
#include "base/command_line.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/extensions/extension.h"
#include "chrome/common/extensions/extension_file_util.h"
#include "content/public/browser/native_web_keyboard_event.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/test/test_utils.h"
#include "remoting/test/key_code_conv.h"
#include "remoting/test/waiter.h"
using extensions::Extension;
namespace remoting {
RemoteDesktopBrowserTest::RemoteDesktopBrowserTest() {}
RemoteDesktopBrowserTest::~RemoteDesktopBrowserTest() {}
void RemoteDesktopBrowserTest::SetUp() {
ParseCommandLine();
ExtensionBrowserTest::SetUp();
}
void RemoteDesktopBrowserTest::SetUpOnMainThread() {
ExtensionBrowserTest::SetUpOnMainThread();
// Initializing to browser() before RunTestOnMainThread() and after
// |InProcessBrowserTest::browser_| is initialized in
// InProcessBrowserTest::RunTestOnMainThreadLoop()
active_browser_ = browser();
}
// Change behavior of the default host resolver to avoid DNS lookup errors,
// so we can make network calls.
void RemoteDesktopBrowserTest::SetUpInProcessBrowserTestFixture() {
// The resolver object lifetime is managed by sync_test_setup, not here.
EnableDNSLookupForThisTest(
new net::RuleBasedHostResolverProc(host_resolver()));
}
void RemoteDesktopBrowserTest::TearDownInProcessBrowserTestFixture() {
DisableDNSLookupForThisTest();
}
void RemoteDesktopBrowserTest::VerifyInternetAccess() {
GURL google_url("http://www.google.com");
NavigateToURLAndWaitForPageLoad(google_url);
EXPECT_EQ(GetCurrentURL().host(), "www.google.com");
}
bool RemoteDesktopBrowserTest::HtmlElementVisible(const std::string& name) {
_ASSERT_TRUE(HtmlElementExists(name));
ExecuteScript(
"function isElementVisible(name) {"
" var element = document.getElementById(name);"
" /* The existence of the element has already been ASSERTed. */"
" do {"
" if (element.hidden) {"
" return false;"
" }"
" element = element.parentNode;"
" } while (element != null);"
" return true;"
"};");
return ExecuteScriptAndExtractBool(
"isElementVisible(\"" + name + "\")");
}
void RemoteDesktopBrowserTest::InstallChromotingApp() {
base::FilePath install_dir(WebAppCrxPath());
scoped_refptr<const Extension> extension(InstallExtensionWithUIAutoConfirm(
install_dir, 1, active_browser_));
EXPECT_FALSE(extension.get() == NULL);
}
void RemoteDesktopBrowserTest::UninstallChromotingApp() {
UninstallExtension(ChromotingID());
chromoting_id_.clear();
}
void RemoteDesktopBrowserTest::VerifyChromotingLoaded(bool expected) {
const ExtensionSet* extensions = extension_service()->extensions();
scoped_refptr<const extensions::Extension> extension;
ExtensionSet::const_iterator iter;
bool installed = false;
for (iter = extensions->begin(); iter != extensions->end(); ++iter) {
extension = *iter;
// Is there a better way to recognize the chromoting extension
// than name comparison?
if (extension->name() == "Chromoting" ||
extension->name() == "Chrome Remote Desktop") {
installed = true;
break;
}
}
if (installed) {
chromoting_id_ = extension->id();
EXPECT_EQ(extension->GetType(),
extensions::Manifest::TYPE_LEGACY_PACKAGED_APP);
EXPECT_TRUE(extension->ShouldDisplayInAppLauncher());
}
EXPECT_EQ(installed, expected);
}
void RemoteDesktopBrowserTest::LaunchChromotingApp() {
ASSERT_FALSE(ChromotingID().empty());
const GURL chromoting_main = Chromoting_Main_URL();
NavigateToURLAndWaitForPageLoad(chromoting_main);
EXPECT_EQ(GetCurrentURL(), chromoting_main);
}
void RemoteDesktopBrowserTest::Authorize() {
// The chromoting extension should be installed.
ASSERT_FALSE(ChromotingID().empty());
// The chromoting main page should be loaded in the current tab
// and isAuthenticated() should be false (auth dialog visible).
ASSERT_EQ(Chromoting_Main_URL(), GetCurrentURL());
ASSERT_FALSE(ExecuteScriptAndExtractBool(
"remoting.oauth2.isAuthenticated()"));
// The first observer monitors the creation of the new window for
// the Google loging page.
content::WindowedNotificationObserver observer(
chrome::NOTIFICATION_BROWSER_OPENED,
content::NotificationService::AllSources());
// The second observer monitors the loading of the Google login page.
// Unfortunately we cannot specify a source in this observer because
// we can't get a handle of the new window until the first observer
// has finished waiting. But we will assert that the source of the
// load stop event is indeed the newly created browser window.
content::WindowedNotificationObserver observer2(
content::NOTIFICATION_LOAD_STOP,
content::NotificationService::AllSources());
ClickOnControl("auth-button");
observer.Wait();
const content::Source<Browser>* source =
static_cast<const content::Source<Browser>*>(&observer.source());
active_browser_ = source->ptr();
observer2.Wait();
const content::Source<content::NavigationController>* source2 =
static_cast<const content::Source<content::NavigationController>*>(
&observer2.source());
content::NavigationController* controller = source2->ptr();
EXPECT_EQ(controller->GetWebContents(),
active_browser_->tab_strip_model()->GetActiveWebContents());
// Verify the active tab is at the "Google Accounts" login page.
EXPECT_EQ("accounts.google.com", GetCurrentURL().host());
EXPECT_TRUE(HtmlElementExists("Email"));
EXPECT_TRUE(HtmlElementExists("Passwd"));
}
void RemoteDesktopBrowserTest::Authenticate() {
// The chromoting extension should be installed.
ASSERT_FALSE(ChromotingID().empty());
// The active tab should have the "Google Accounts" login page loaded.
ASSERT_EQ("accounts.google.com", GetCurrentURL().host());
ASSERT_TRUE(HtmlElementExists("Email"));
ASSERT_TRUE(HtmlElementExists("Passwd"));
// Now log in using the username and password passed in from the command line.
ExecuteScriptAndWaitForAnyPageLoad(
"document.getElementById(\"Email\").value = \"" + username_ + "\";" +
"document.getElementById(\"Passwd\").value = \"" + password_ +"\";" +
"document.forms[\"gaia_loginform\"].submit();");
EXPECT_EQ(GetCurrentURL().host(), "accounts.google.com");
// TODO(weitaosu): Is there a better way to verify we are on the
// "Request for Permission" page?
EXPECT_TRUE(HtmlElementExists("submit_approve_access"));
}
void RemoteDesktopBrowserTest::Approve() {
// The chromoting extension should be installed.
ASSERT_FALSE(ChromotingID().empty());
// The active tab should have the chromoting app loaded.
ASSERT_EQ("accounts.google.com", GetCurrentURL().host());
// Is there a better way to verify we are on the "Request for Permission"
// page?
ASSERT_TRUE(HtmlElementExists("submit_approve_access"));
const GURL chromoting_main = Chromoting_Main_URL();
// |active_browser_| is still set to the login window but the observer
// should be set up to observe the chromoting window because that is
// where we'll receive the message from the login window and reload the
// chromoting app.
content::WindowedNotificationObserver observer(
content::NOTIFICATION_LOAD_STOP,
base::Bind(
&RemoteDesktopBrowserTest::IsAuthenticated, browser()));
ExecuteScript(
"lso.approveButtonAction();"
"document.forms[\"connect-approve\"].submit();");
observer.Wait();
// Resetting |active_browser_| to browser() now that the Google login
// window is closed and the focus has returned to the chromoting window.
active_browser_ = browser();
ASSERT_TRUE(GetCurrentURL() == chromoting_main);
EXPECT_TRUE(ExecuteScriptAndExtractBool(
"remoting.oauth2.isAuthenticated()"));
}
void RemoteDesktopBrowserTest::StartMe2Me() {
// The chromoting extension should be installed.
ASSERT_FALSE(ChromotingID().empty());
// The active tab should have the chromoting app loaded.
ASSERT_EQ(Chromoting_Main_URL(), GetCurrentURL());
EXPECT_TRUE(ExecuteScriptAndExtractBool(
"remoting.oauth2.isAuthenticated()"));
// The Me2Me host list should be hidden.
ASSERT_FALSE(HtmlElementVisible("me2me-content"));
// The Me2Me "Get Start" button should be visible.
ASSERT_TRUE(HtmlElementVisible("get-started-me2me"));
// Starting Me2Me.
ExecuteScript("remoting.showMe2MeUiAndSave();");
EXPECT_TRUE(HtmlElementVisible("me2me-content"));
EXPECT_FALSE(HtmlElementVisible("me2me-first-run"));
// Wait until localHost is initialized. This can take a while.
ConditionalTimeoutWaiter waiter(
base::TimeDelta::FromSeconds(3),
base::TimeDelta::FromSeconds(1),
base::Bind(&RemoteDesktopBrowserTest::IsLocalHostReady, this));
EXPECT_TRUE(waiter.Wait());
EXPECT_TRUE(ExecuteScriptAndExtractBool(
"remoting.hostList.localHost_.hostName && "
"remoting.hostList.localHost_.hostId && "
"remoting.hostList.localHost_.status && "
"remoting.hostList.localHost_.status == 'ONLINE'"));
}
void RemoteDesktopBrowserTest::SimulateKeyPressWithCode(
ui::KeyboardCode keyCode,
const char* code) {
SimulateKeyPressWithCode(keyCode, code, false, false, false, false);
}
void RemoteDesktopBrowserTest::SimulateKeyPressWithCode(
ui::KeyboardCode keyCode,
const char* code,
bool control,
bool shift,
bool alt,
bool command) {
content::SimulateKeyPressWithCode(
active_browser_->tab_strip_model()->GetActiveWebContents(),
keyCode,
code,
control,
shift,
alt,
command);
}
void RemoteDesktopBrowserTest::SimulateCharInput(char c) {
const char* code;
ui::KeyboardCode keyboard_code;
bool shift;
GetKeyValuesFromChar(c, &code, &keyboard_code, &shift);
ASSERT_TRUE(code != NULL);
SimulateKeyPressWithCode(keyboard_code, code, false, shift, false, false);
}
void RemoteDesktopBrowserTest::SimulateStringInput(const std::string& input) {
for (size_t i = 0; i < input.length(); ++i)
SimulateCharInput(input[i]);
}
void RemoteDesktopBrowserTest::SimulateMouseLeftClickAt(int x, int y) {
SimulateMouseClickAt(0, WebKit::WebMouseEvent::ButtonLeft, x, y);
}
void RemoteDesktopBrowserTest::SimulateMouseClickAt(
int modifiers, WebKit::WebMouseEvent::Button button, int x, int y) {
ExecuteScript(
"var clientPluginElement = "
"document.getElementById('session-client-plugin');"
"var clientPluginRect = clientPluginElement.getBoundingClientRect();");
int top = ExecuteScriptAndExtractInt("clientPluginRect.top");
int left = ExecuteScriptAndExtractInt("clientPluginRect.left");
int width = ExecuteScriptAndExtractInt("clientPluginRect.width");
int height = ExecuteScriptAndExtractInt("clientPluginRect.height");
ASSERT_GT(x, 0);
ASSERT_LT(x, width);
ASSERT_GT(y, 0);
ASSERT_LT(y, height);
content::SimulateMouseClickAt(
browser()->tab_strip_model()->GetActiveWebContents(),
modifiers,
button,
gfx::Point(left + x, top + y));
}
void RemoteDesktopBrowserTest::Install() {
// TODO(weitaosu): add support for unpacked extension (the v2 app needs it).
if (!NoInstall()) {
VerifyChromotingLoaded(false);
InstallChromotingApp();
}
VerifyChromotingLoaded(true);
}
void RemoteDesktopBrowserTest::Cleanup() {
// TODO(weitaosu): Remove this hack by blocking on the appropriate
// notification.
// The browser may still be loading images embedded in the webapp. If we
// uinstall it now those load will fail. Navigating away to avoid the load
// failures.
ui_test_utils::NavigateToURL(active_browser_, GURL("about:blank"));
if (!NoCleanup()) {
UninstallChromotingApp();
VerifyChromotingLoaded(false);
}
}
void RemoteDesktopBrowserTest::Auth() {
Authorize();
Authenticate();
Approve();
}
void RemoteDesktopBrowserTest::ConnectToLocalHost() {
// Verify that the local host is online.
ASSERT_TRUE(ExecuteScriptAndExtractBool(
"remoting.hostList.localHost_.hostName && "
"remoting.hostList.localHost_.hostId && "
"remoting.hostList.localHost_.status && "
"remoting.hostList.localHost_.status == 'ONLINE'"));
// Connect.
ClickOnControl("this-host-connect");
// Enter the pin # passed in from the command line.
EnterPin(me2me_pin());
WaitForConnection();
}
void RemoteDesktopBrowserTest::EnableDNSLookupForThisTest(
net::RuleBasedHostResolverProc* host_resolver) {
// mock_host_resolver_override_ takes ownership of the resolver.
scoped_refptr<net::RuleBasedHostResolverProc> resolver =
new net::RuleBasedHostResolverProc(host_resolver);
resolver->AllowDirectLookup("*.google.com");
// On Linux, we use Chromium's NSS implementation which uses the following
// hosts for certificate verification. Without these overrides, running the
// integration tests on Linux causes errors as we make external DNS lookups.
resolver->AllowDirectLookup("*.thawte.com");
resolver->AllowDirectLookup("*.geotrust.com");
resolver->AllowDirectLookup("*.gstatic.com");
resolver->AllowDirectLookup("*.googleapis.com");
mock_host_resolver_override_.reset(
new net::ScopedDefaultHostResolverProc(resolver.get()));
}
void RemoteDesktopBrowserTest::DisableDNSLookupForThisTest() {
mock_host_resolver_override_.reset();
}
void RemoteDesktopBrowserTest::ParseCommandLine() {
CommandLine* command_line = CommandLine::ForCurrentProcess();
// The test framework overrides any command line user-data-dir
// argument with a /tmp/.org.chromium.Chromium.XXXXXX directory.
// That happens in the ChromeTestLauncherDelegate, and affects
// all unit tests (no opt out available). It intentionally erases
// any --user-data-dir switch if present and appends a new one.
// Re-override the default data dir if override-user-data-dir
// is specified.
if (command_line->HasSwitch(kOverrideUserDataDir)) {
const base::FilePath& override_user_data_dir =
command_line->GetSwitchValuePath(kOverrideUserDataDir);
ASSERT_FALSE(override_user_data_dir.empty());
command_line->AppendSwitchPath(switches::kUserDataDir,
override_user_data_dir);
}
username_ = command_line->GetSwitchValueASCII(kUsername);
password_ = command_line->GetSwitchValueASCII(kkPassword);
me2me_pin_ = command_line->GetSwitchValueASCII(kMe2MePin);
no_cleanup_ = command_line->HasSwitch(kNoCleanup);
no_install_ = command_line->HasSwitch(kNoInstall);
if (!no_install_) {
webapp_crx_ = command_line->GetSwitchValuePath(kWebAppCrx);
ASSERT_FALSE(webapp_crx_.empty());
}
}
void RemoteDesktopBrowserTest::ExecuteScript(const std::string& script) {
ASSERT_TRUE(content::ExecuteScript(
active_browser_->tab_strip_model()->GetActiveWebContents(), script));
}
void RemoteDesktopBrowserTest::ExecuteScriptAndWaitForAnyPageLoad(
const std::string& script) {
content::WindowedNotificationObserver observer(
content::NOTIFICATION_LOAD_STOP,
content::Source<content::NavigationController>(
&active_browser_->tab_strip_model()->GetActiveWebContents()->
GetController()));
ExecuteScript(script);
observer.Wait();
}
void RemoteDesktopBrowserTest::ExecuteScriptAndWaitForPageLoad(
const std::string& script,
const GURL& target) {
content::WindowedNotificationObserver observer(
content::NOTIFICATION_LOAD_STOP,
base::Bind(&RemoteDesktopBrowserTest::IsURLLoadedInWindow,
active_browser_,
target));
ExecuteScript(script);
observer.Wait();
}
// static
bool RemoteDesktopBrowserTest::ExecuteScriptAndExtractBool(
Browser* browser, const std::string& script) {
bool result;
_ASSERT_TRUE(content::ExecuteScriptAndExtractBool(
browser->tab_strip_model()->GetActiveWebContents(),
"window.domAutomationController.send(" + script + ");",
&result));
return result;
}
int RemoteDesktopBrowserTest::ExecuteScriptAndExtractInt(
const std::string& script) {
int result;
_ASSERT_TRUE(content::ExecuteScriptAndExtractInt(
active_browser_->tab_strip_model()->GetActiveWebContents(),
"window.domAutomationController.send(" + script + ");",
&result));
return result;
}
std::string RemoteDesktopBrowserTest::ExecuteScriptAndExtractString(
const std::string& script) {
std::string result;
_ASSERT_TRUE(content::ExecuteScriptAndExtractString(
active_browser_->tab_strip_model()->GetActiveWebContents(),
"window.domAutomationController.send(" + script + ");",
&result));
return result;
}
// Helper to navigate to a given url.
void RemoteDesktopBrowserTest::NavigateToURLAndWaitForPageLoad(
const GURL& url) {
content::WindowedNotificationObserver observer(
content::NOTIFICATION_LOAD_STOP,
content::Source<content::NavigationController>(
&active_browser_->tab_strip_model()->GetActiveWebContents()->
GetController()));
ui_test_utils::NavigateToURL(active_browser_, url);
observer.Wait();
}
void RemoteDesktopBrowserTest::ClickOnControl(const std::string& name) {
ASSERT_TRUE(HtmlElementExists(name));
ASSERT_TRUE(HtmlElementVisible(name));
ExecuteScript("document.getElementById(\"" + name + "\").click();");
}
void RemoteDesktopBrowserTest::EnterPin(const std::string& pin) {
// Wait for the pin-form to be displayed. This can take a while.
// We also need to dismiss the host-needs-update dialog if it comes up.
// TODO(weitaosu) 1: Instead of polling, can we register a callback to be
// called when the pin-form is ready?
// TODO(weitaosu) 2: Instead of blindly dismiss the host-needs-update dialog,
// we should verify that it only pops up at the right circumstance. That
// probably belongs in a separate test case though.
ConditionalTimeoutWaiter waiter(
base::TimeDelta::FromSeconds(5),
base::TimeDelta::FromSeconds(1),
base::Bind(&RemoteDesktopBrowserTest::IsPinFormVisible, this));
EXPECT_TRUE(waiter.Wait());
ExecuteScript(
"document.getElementById(\"pin-entry\").value = \"" + pin + "\";");
ClickOnControl("pin-connect-button");
}
void RemoteDesktopBrowserTest::WaitForConnection() {
// Wait until the client has connected to the server.
// This can take a while.
// TODO(weitaosu): Instead of polling, can we register a callback to
// remoting.clientSession.onStageChange_?
ConditionalTimeoutWaiter waiter(
base::TimeDelta::FromSeconds(4),
base::TimeDelta::FromSeconds(1),
base::Bind(&RemoteDesktopBrowserTest::IsSessionConnected, this));
EXPECT_TRUE(waiter.Wait());
// The client is not yet ready to take input when the session state becomes
// CONNECTED. Wait for 2 seconds for the client to become ready.
// TODO(weitaosu): Find a way to detect when the client is truly ready.
TimeoutWaiter(base::TimeDelta::FromSeconds(2)).Wait();
}
bool RemoteDesktopBrowserTest::IsLocalHostReady() {
// TODO(weitaosu): Instead of polling, can we register a callback to
// remoting.hostList.setLocalHost_?
return ExecuteScriptAndExtractBool("remoting.hostList.localHost_ != null");
}
bool RemoteDesktopBrowserTest::IsSessionConnected() {
return ExecuteScriptAndExtractBool(
"remoting.clientSession != null && "
"remoting.clientSession.getState() == "
"remoting.ClientSession.State.CONNECTED");
}
bool RemoteDesktopBrowserTest::IsPinFormVisible() {
if (HtmlElementVisible("host-needs-update-connect-button"))
ClickOnControl("host-needs-update-connect-button");
return HtmlElementVisible("pin-form");
}
// static
bool RemoteDesktopBrowserTest::IsURLLoadedInWindow(Browser* browser,
const GURL& url) {
return GetCurrentURLInBrowser(browser) == url;
}
// static
bool RemoteDesktopBrowserTest::IsAuthenticated(Browser* browser) {
return ExecuteScriptAndExtractBool(
browser, "remoting.oauth2.isAuthenticated()");
}
} // namespace remoting
|