summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/bluetooth/service/getCharacteristics/characteristics-found.https.window.js
blob: 3244dd3e173d233b65db3ede450464fbc763a531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// 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 = 'Find all characteristics in a service.';

bluetooth_test(async () => {
  let {device, fake_peripheral, fake_services} = await getDiscoveredHealthThermometerDevice();
  // Setup a device with two measurement intervals.
  await fake_peripheral.setNextGATTConnectionResponse({code: HCI_SUCCESS});
  await device.gatt.connect();
  let fake_health_thermometer = fake_services.get('health_thermometer');
  await Promise.all([
    fake_health_thermometer.addFakeCharacteristic({
      uuid: 'measurement_interval',
      properties: ['read', 'write', 'indicate']
    }),
    fake_health_thermometer.addFakeCharacteristic({
      uuid: 'measurement_interval',
      properties: ['read', 'write', 'indicate']
    }),
    fake_health_thermometer.addFakeCharacteristic(
        {uuid: 'temperature_measurement', properties: ['indicate']})
  ]);
  await fake_peripheral.setNextGATTDiscoveryResponse({code: HCI_SUCCESS});
  let service = await device.gatt.getPrimaryService('health_thermometer');
  // Actual test starts.
  let characteristics = await service.getCharacteristics();
  // Expect three characteristic instances.
  assert_equals(characteristics.length, 3);

  let uuid_set = new Set(characteristics.map(c => c.uuid));
  // Two of the expected characteristics are
  // 'measurement_interval', so only 2 unique UUID.
  assert_equals(uuid_set.size, 2);
  assert_true(
      uuid_set.has(BluetoothUUID.getCharacteristic('measurement_interval')));
  assert_true(
      uuid_set.has(BluetoothUUID.getCharacteristic('temperature_measurement')));
}, test_desc);