Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / remoting / webapp / browser_test / invalid_pin_browser_test.js
blobf7a5935c7a847b3dbc509d9b84d52dcace0b38bd
1 // Copyright 2014 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 /**
6  * @fileoverview
7  * @suppress {checkTypes}
8  * Browser test for the scenario below:
9  * 1. Attempt to connect.
10  * 2. Enter |data.pin| at the PIN prompt.
11  * 3. Verify that there is connection error due to invalid access code.
12  */
14 'use strict';
16 /** @constructor */
17 browserTest.Invalid_PIN = function() {};
19 browserTest.Invalid_PIN.prototype.run = function(data) {
20   // Input validation.
21   browserTest.expect(typeof data.pin == 'string');
23   // Connect to me2me Host.
24   browserTest.connectMe2Me().then(function(){
25     return browserTest.enterPIN(data.pin, true)
26   }).then(
27     // Sleep for two seconds to allow the host backoff timer to reset.
28     base.Promise.sleep.bind(window, 2000)
29   ).then(function() {
30     // On fulfilled.
31     browserTest.pass();
32   }, function(reason) {
33     // On rejected.
34     browserTest.fail(reason);
35   });