Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /bluetooth/server/connect/get-same-gatt-server.https.window.html - WPT Dashboard Interop Dashboard
// META: script=/resources/testdriver.js
// META: script=/resources/testdriver-vendor.js
// META: script=/bluetooth/resources/bluetooth-test.js
// META: script=/bluetooth/resources/bluetooth-fake-devices.js
'use strict';
const test_desc = 'Multiple connects should return the same gatt object.';
bluetooth_test(async () => {
let {device, fake_peripheral} = await getDiscoveredHealthThermometerDevice();
await fake_peripheral.setNextGATTConnectionResponse({code: HCI_SUCCESS});
// No second response is necessary because an ATT Bearer
// already exists from the first connection.
// See
// step 5.1.
let gatt1 = await device.gatt.connect();
let gatt2 = await device.gatt.connect();
assert_equals(gatt1, gatt2);
}, test_desc);