- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / bluetooth / on_connection / runtest.js
1 // Copyright 2013 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.
4
5 var deviceName;
6 var deviceAddress;
7 var profileUuid;
8
9 function testOnConnectionEvent() {
10   chrome.test.assertEq('d1', deviceName);
11   chrome.test.assertEq('11:12:13:14:15:16', deviceAddress);
12   chrome.test.assertEq('1234', profileUuid);
13
14   chrome.test.succeed();
15 }
16
17 chrome.bluetooth.onConnection.addListener(
18   function(socket) {
19     deviceName = socket.device.name;
20     deviceAddress = socket.device.address;
21     profileUuid = socket.profile.uuid;
22     chrome.bluetooth.disconnect({'socket': socket});
23   });
24
25 chrome.test.sendMessage('ready',
26   function(message) {
27     chrome.test.runTests([testOnConnectionEvent]);
28   });