Revert of [telemetry] Fix decorator hack for benchmark_smoke_unittest. (patchset...
[chromium-blink-merge.git] / remoting / webapp / browser_test / cancel_pin_browser_test.js
blob507e9865595c34a3b51e940fa901d01fb396fead
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. Hit cancel at the PIN prompt.
11 * 3. Reconnect with the PIN.
12 * 4. Verify that the session is connected.
15 'use strict';
17 /** @constructor */
18 browserTest.Cancel_PIN = function() {};
20 browserTest.Cancel_PIN.prototype.run = function(data) {
21 browserTest.expect(typeof data.pin == 'string');
23 var AppMode = remoting.AppMode;
24 browserTest.connectMe2Me().then(function() {
25 browserTest.clickOnControl('cancel-pin-entry-button');
26 return browserTest.onUIMode(AppMode.HOME);
27 }).then(function() {
28 return browserTest.connectMe2Me()
29 }).then(function() {
30 return browserTest.enterPIN(data.pin)
31 }).then(function() {
32 // On fulfilled.
33 browserTest.pass();
34 }, function(reason) {
35 // On rejected.
36 browserTest.fail(reason);
37 });