Index: remoting/webapp/browser_test/it2me_browser_test.js |
diff --git a/remoting/webapp/browser_test/it2me_browser_test.js b/remoting/webapp/browser_test/it2me_browser_test.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0f5e7bc9063375bee7714961ed444d47725b745f |
--- /dev/null |
+++ b/remoting/webapp/browser_test/it2me_browser_test.js |
@@ -0,0 +1,98 @@ |
+// Copyright 2014 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. |
+ |
+/** |
+ * @fileoverview |
+ * @suppress {checkTypes} |
+ * Browser test for the scenario below: |
+ * 1. Generates an access code. |
+ * 2. Launches another chromoting app instance. |
+ * 3. Connects with the generated access code. |
+ * 4. Verifies that the session is connected. |
+ */ |
+ |
+'use strict'; |
+ |
+/** @constructor */ |
+browserTest.ConnectIt2Me = function() {}; |
+ |
+browserTest.ConnectIt2Me.prototype.run = function(data) { |
+ browserTest.expect(typeof data.accessCode == 'string', |
+ 'The access code should be an non-empty string'); |
+ browserTest.clickOnControl('get-started-it2me'); |
+ var that = this; |
+ browserTest.ConnectIt2Me.clickOnAccessButton().then(function() { |
+ return that.enterAccessCode_(data.accessCode); |
+ }).then(function() { |
+ return browserTest.disconnect(); |
+ }).then(function() { |
+ browserTest.pass(); |
+ }, function(reason) { |
+ browserTest.fail(reason); |
+ }); |
+}; |
+ |
+browserTest.ConnectIt2Me.clickOnAccessButton = function() { |
+ browserTest.clickOnControl('access-mode-button'); |
+ return browserTest.onUIMode(remoting.AppMode.CLIENT_UNCONNECTED); |
+}; |
+ |
+/** @private */ |
+browserTest.ConnectIt2Me.prototype.enterAccessCode_ = function(code) { |
+ document.getElementById('access-code-entry').value = code; |
+ browserTest.clickOnControl('connect-button'); |
+ return browserTest.expectConnected(); |
+}; |
+ |
+/** @constructor */ |
+browserTest.InvalidAccessCode = function() {}; |
+ |
+browserTest.InvalidAccessCode.prototype.run = function(data) { |
+ browserTest.expect(typeof data.accessCode == 'string', |
+ 'The access code should be an non-empty string'); |
+ browserTest.ConnectIt2Me.clickOnAccessButton().then(function() { |
+ document.getElementById('access-code-entry').value = data.accessCode; |
+ browserTest.clickOnControl('connect-button'); |
+ return browserTest.expectConnectionError( |
+ remoting.ClientSession.Mode.IT2ME, remoting.Error.INVALID_ACCESS_CODE); |
+ }).then(function() { |
+ browserTest.pass(); |
+ }, function(reason) { |
+ browserTest.fail(reason); |
+ }); |
+}; |
+ |
+/** @constructor */ |
+browserTest.GetAccessCode = function() {}; |
+ |
+browserTest.GetAccessCode.prototype.run = function() { |
+ browserTest.clickOnControl('get-started-it2me'); |
+ this.onUserInfoReady_().then(function() { |
+ browserTest.clickOnControl('share-button'); |
+ }).then(function(){ |
+ return browserTest.onUIMode(remoting.AppMode.HOST_WAITING_FOR_CONNECTION); |
+ }).then(function() { |
+ var accessCode = document.getElementById('access-code-display').innerText; |
+ var numericAccessCode = parseFloat(accessCode); |
+ browserTest.expect(accessCode.length === 12, |
+ "The access code should be 12 digits long."); |
+ browserTest.expect( |
+ Number.isInteger(numericAccessCode) && numericAccessCode > 0, |
+ "The access code should be a positive integer."); |
+ browserTest.pass(accessCode); |
+ },function(reason) { |
+ browserTest.fail(reason); |
+ }); |
+}; |
+ |
+// Wait for the email address of the local user to become available. The email |
+// address is required in an It2Me connection for domain policy enforcement. |
+// TODO:(kelvinp) Fix this awkward behavior in the production code so that this |
+// hack is no longer required. |
+/** @private */ |
+browserTest.GetAccessCode.prototype.onUserInfoReady_ = function() { |
+ return new Promise(function(resolve, reject){ |
+ remoting.identity.getUserInfo(resolve, reject); |
+ }); |
+}; |