summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/bluetooth/requestDevice/canonicalizeFilter/wrong-service-in-optionalServices-member.https.window.js
blob: bfba220f4799db5ac19700df083cd8896d1fa356 (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
// 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 = 'Invalid optional service must reject the promise.';
const expected = new TypeError();
const test_specs = [
  {optionalServices: ['wrong_service'], filters: [{services: ['heart_rate']}]},
  {
    optionalServices: ['wrong_service'],
    filters: [{services: ['heart_rate'], name: 'Name'}]
  },
  {
    optionalServices: ['wrong_service'],
    filters: [{services: ['heart_rate'], namePrefix: 'Pre'}]
  },
  {
    optionalServices: ['wrong_service'],
    filters: [{services: ['heart_rate'], name: 'Name', namePrefix: 'Pre'}]
  },
  {optionalServices: ['wrong_service'], filters: [{name: 'Name'}]}, {
    optionalServices: ['wrong_service'],
    filters: [{name: 'Name', namePrefix: 'Pre'}]
  },
  {optionalServices: ['wrong_service'], filters: [{namePrefix: 'Pre'}]}
];

bluetooth_test(() => {
  let test_promises = Promise.resolve();
  test_specs.forEach(args => {
    test_promises = test_promises.then(
        () => assert_promise_rejects_with_message(
            requestDeviceWithTrustedClick(args), expected));
  });
  return test_promises;
}, test_desc);