summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/bluetooth/requestDevice/canonicalizeFilter/dataPrefix-buffer-is-detached.https.window.js
blob: 936ca4735c794a030f79eefc70f9635d665c7536 (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
// 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 = 'dataPrefix value buffer must not be detached';

function detachBuffer(buffer) {
  window.postMessage('', '*', [buffer]);
}

bluetooth_test(async (t) => {
  const companyIdentifier = 0x0001;

  const typed_array = Uint8Array.of(1, 2);
  detachBuffer(typed_array.buffer);

  await promise_rejects_dom(
      t, 'InvalidStateError', requestDeviceWithTrustedClick({
        filters:
            [{manufacturerData: [{companyIdentifier, dataPrefix: typed_array}]}]
      }));

  const array_buffer = Uint8Array.of(3, 4).buffer;
  detachBuffer(array_buffer);

  await promise_rejects_dom(
      t, 'InvalidStateError', requestDeviceWithTrustedClick({
        filters: [
          {manufacturerData: [{companyIdentifier, dataPrefix: array_buffer}]}
        ]
      }));
}, test_desc);