OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/file_util.h" | 5 #include "base/file_util.h" |
6 #include "base/files/file_path.h" | 6 #include "base/files/file_path.h" |
7 #include "chrome/test/remoting/remote_desktop_browsertest.h" | 7 #include "chrome/test/remoting/remote_desktop_browsertest.h" |
8 #include "chrome/test/remoting/waiter.h" | 8 #include "chrome/test/remoting/waiter.h" |
9 | 9 |
10 namespace remoting { | 10 namespace remoting { |
(...skipping 12 matching lines...) Expand all Loading... |
23 VerifyInternetAccess(); | 23 VerifyInternetAccess(); |
24 Install(); | 24 Install(); |
25 LaunchChromotingApp(); | 25 LaunchChromotingApp(); |
26 | 26 |
27 // Authorize, Authenticate, and Approve. | 27 // Authorize, Authenticate, and Approve. |
28 Auth(); | 28 Auth(); |
29 ExpandMe2Me(); | 29 ExpandMe2Me(); |
30 | 30 |
31 ConnectToLocalHost(false); | 31 ConnectToLocalHost(false); |
32 | 32 |
33 OpenClientBrowserPage(); | |
34 | |
35 TestKeyboardInput(); | |
36 | |
37 // TODO(chaitali): Change the mouse input test to also work in the | 33 // TODO(chaitali): Change the mouse input test to also work in the |
38 // HTTP server framework | 34 // HTTP server framework |
39 // TestMouseInput(); | 35 // TestMouseInput(); |
40 | 36 |
41 DisconnectMe2Me(); | 37 DisconnectMe2Me(); |
42 Cleanup(); | 38 Cleanup(); |
43 } | 39 } |
44 | 40 |
45 IN_PROC_BROWSER_TEST_F(Me2MeBrowserTest, | 41 IN_PROC_BROWSER_TEST_F(Me2MeBrowserTest, |
46 MANUAL_Me2Me_Connect_Remote_Host) { | 42 MANUAL_Me2Me_Connect_Remote_Host) { |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 ClickOnControl("close-paired-client-manager-dialog"); | 156 ClickOnControl("close-paired-client-manager-dialog"); |
161 ASSERT_FALSE(HtmlElementVisible("paired-client-manager-dialog")); | 157 ASSERT_FALSE(HtmlElementVisible("paired-client-manager-dialog")); |
162 ASSERT_FALSE(HtmlElementVisible("paired-client-manager-message")); | 158 ASSERT_FALSE(HtmlElementVisible("paired-client-manager-message")); |
163 } | 159 } |
164 | 160 |
165 bool Me2MeBrowserTest::IsPairingSpinnerHidden() { | 161 bool Me2MeBrowserTest::IsPairingSpinnerHidden() { |
166 return !HtmlElementVisible("paired-client-manager-dialog-working"); | 162 return !HtmlElementVisible("paired-client-manager-dialog-working"); |
167 } | 163 } |
168 | 164 |
169 } // namespace remoting | 165 } // namespace remoting |
OLD | NEW |