summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/serial/serialPort_getInfo.https.any.js
blob: 2e0df3b8bdcb8cbef560cc43be63198e49365360 (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
// META: script=/resources/test-only-api.js
// META: script=/serial/resources/common.js
// META: script=resources/automation.js

serial_test(async (t, fake) => {
  // Wait for getPorts() to resolve in order to ensure that the Mojo client
  // interface has been configured.
  let ports = await navigator.serial.getPorts();
  assert_equals(ports.length, 0);

  [{},
   {usbVendorId: 1},
   {usbProductId: 2},
   {usbVendorId: 1, usbProductId: 2},
  ].forEach((expectedInfo) => {
    serial_test(async (t, fake) => {
      let watcher = new EventWatcher(t, navigator.serial, ['connect']);
      fake.addPort(expectedInfo);
      let evt = await watcher.wait_for(['connect']);
      let info = evt.target.getInfo();
      assert_object_equals(expectedInfo, info);
    }, `getInfo() returns ${JSON.stringify(expectedInfo)}`);
  });
}, 'getInfo() meta test');