Roll src/third_party/WebKit 3529d49:06e8485 (svn 202554:202555)
[chromium-blink-merge.git] / remoting / webapp / browser_test / me2me_browser_test.js
blob392d0b90569955c536b0d33a1d5670c7793feb1a
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 (function() {
7 'use strict';
9 /** @constructor */
10 browserTest.ConnectToLocalHost = function() {};
12 /**
13  * @param {{pin:string}} data
14  */
15 browserTest.ConnectToLocalHost.prototype.run = function(data) {
16   browserTest.expect(typeof data.pin == 'string', 'The PIN must be a string');
17   browserTest.connectMe2Me().then(function() {
18     return browserTest.enterPIN(data.pin);
19   }).then(function() {
20     return browserTest.disconnect();
21   }).then(function() {
22     browserTest.pass();
23   }).catch(function(/** Error */ reason) {
24     browserTest.fail(reason);
25   });
29 /** @constructor */
30 browserTest.AliveOnLostFocus = function() {};
32 /**
33  * @param {{pin:string}} data
34  */
35 browserTest.AliveOnLostFocus.prototype.run = function(data) {
36   browserTest.expect(typeof data.pin == 'string', 'The PIN must be a string');
37   browserTest.connectMe2Me().then(function() {
38     return browserTest.enterPIN(data.pin);
39   }).then(function() {
40     chrome.app.window.current().minimize();
41     // Wait for a few seconds for app to process any notifications it
42     // would have got from minimizing.
43     return base.Promise.sleep(4000);
44   }).then(function() {
45     chrome.app.window.current().restore();
46   }).then(function() {
47     // Validate that the session is still active.
48     if (remoting.currentMode !== remoting.AppMode.IN_SESSION) {
49       throw new Error(
50           'Unexpected session disconnect when the app is minimized.');
51     }
52   }).then(function() {
53     return browserTest.disconnect();
54   }).then(function() {
55     browserTest.pass();
56   }).catch(function(/** Error */ reason) {
57     browserTest.fail(reason);
58   });
61 })();