Roll src/third_party/WebKit 3529d49:06e8485 (svn 202554:202555)
[chromium-blink-merge.git] / remoting / webapp / base / js / client_session_unittest.js
blobbff546c7a1a52124ea2d99bf8fba17509456e736
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 /** @type {remoting.MockConnection} */
10 var mockConnection;
11 /** @type {remoting.ClientSession} */
12 var session;
13 /** @type {remoting.ClientSession.EventHandler} */
14 var listener;
15 /** @type {remoting.SessionLogger} */
16 var logger;
17 /** @type {sinon.TestStub} */
18 var logToServerStub;
20 /**
21  * @constructor
22  * @implements {remoting.ClientSession.EventHandler}
23  */
24 var SessionListener = function() {};
25 SessionListener.prototype.onConnectionFailed = function(error) {};
26 SessionListener.prototype.onConnected = function(connectionInfo) {};
27 SessionListener.prototype.onDisconnected = function(error) {};
29 /**
30  * @param {remoting.ClientSession.ConnectionError=} opt_error
31  * @return {Promise}
32  */
33 function connect(opt_error) {
34   var deferred = new base.Deferred();
35   var host = new remoting.Host('fake_hostId');
36   host.jabberId = 'fake_jid';
38   function onPluginCreated(/** remoting.MockClientPlugin */ plugin) {
39     var State = remoting.ClientSession.State;
40     plugin.mock$onConnect().then(function() {
41       plugin.mock$setConnectionStatus(State.CONNECTING);
42     }).then(function() {
43       var status = (opt_error) ? State.FAILED : State.CONNECTED;
44       plugin.mock$setConnectionStatus(status, opt_error);
45     });
46   }
47   mockConnection.pluginFactory().mock$setPluginCreated(onPluginCreated);
49   var sessionFactory = new remoting.ClientSessionFactory(
50     document.createElement('div'), ['fake_capability']);
52   sessionFactory.createSession(listener, logger, true).then(
53       function(clientSession) {
54     session = clientSession;
55     clientSession.connect(host, new remoting.CredentialsProvider({
56       pairingInfo: { clientId: 'fake_clientId', sharedSecret: 'fake_secret' }
57     }));
58   });
60   listener.onConnected = function() {
61     deferred.resolve();
62   };
64   listener.onConnectionFailed = function(/** remoting.Error */ error) {
65     deferred.reject(error);
66   };
68   return deferred.promise();
71 QUnit.module('ClientSession', {
72   beforeEach: function() {
73     chromeMocks.identity.mock$setToken('fake_token');
75     mockConnection = new remoting.MockConnection();
76     listener = new SessionListener();
77     logger = new remoting.SessionLogger(remoting.ChromotingEvent.Role.CLIENT,
78                                         base.doNothing);
79     logToServerStub = sinon.stub(logger, 'logClientSessionStateChange');
80   },
81   afterEach: function() {
82     session.dispose();
83     mockConnection.restore();
84   }
85 });
87 QUnit.test('should raise CONNECTED event on connected', function(assert) {
88   return connect().then(function(){
89     assert.ok(true, 'Expect session to connect.');
90   });
91 });
93 QUnit.test('onOutgoingIq() should send Iq to signalStrategy', function(assert) {
94   var sendMessage = sinon.stub(mockConnection.signalStrategy(), 'sendMessage');
95   return connect().then(function(){
96     session.onOutgoingIq('sample message');
97     assert.ok(sendMessage.calledWith('sample message'));
98   });
99 });
101 QUnit.test('should foward Iq from signalStrategy to plugin', function(assert) {
102   return connect().then(function() {
103     var onIncomingIq = sinon.stub(mockConnection.plugin(), 'onIncomingIq');
104     var stanza = new DOMParser()
105                      .parseFromString('<iq>sample</iq>', 'text/xml')
106                      .firstElementChild;
107     mockConnection.signalStrategy().mock$onIncomingStanza(stanza);
108     assert.ok(onIncomingIq.calledWith('<iq>sample</iq>'));
109   });
112 QUnit.test('disconnect() should raise the CLOSED event', function(assert) {
113   return connect().then(function() {
114     var onDisconnected = sinon.stub(listener, 'onDisconnected');
115     session.disconnect(remoting.Error.none());
116     assert.equal(onDisconnected.callCount, 1);
117   });
120 QUnit.test(
121   'Connection error after CONNECTED should raise the CONNECTION_DROPPED event',
122   function(assert) {
124   var State = remoting.ClientSession.State;
126   return connect().then(function() {
127     var onDisconnected = sinon.stub(listener, 'onDisconnected');
128     session.disconnect(new remoting.Error(remoting.Error.Tag.P2P_FAILURE));
129     assert.equal(onDisconnected.callCount, 1);
130     assert.equal(logToServerStub.args[2][0], State.CONNECTION_DROPPED);
131   });
134 QUnit.test(
135   'Connection error before CONNECTED should raise the CONNECTION_FAILED event',
136   function(assert) {
138   var PluginError = remoting.ClientSession.ConnectionError;
139   var State = remoting.ClientSession.State;
141   return connect(PluginError.SESSION_REJECTED).then(function() {
142     assert.ok(false, 'Expect connection to fail');
143   }).catch(function(/** remoting.Error */ error) {
144     assert.ok(error.hasTag(remoting.Error.Tag.INVALID_ACCESS_CODE));
145     assert.equal(logToServerStub.args[1][0], State.FAILED);
146     var errorLogged = /** @type {remoting.Error} */(logToServerStub.args[1][1]);
147     assert.equal(errorLogged.getTag(), remoting.Error.Tag.INVALID_ACCESS_CODE);
148   });
151 })();