mirror of
https://github.com/servo/servo.git
synced 2025-07-16 03:43:38 +01:00
65 lines
2.2 KiB
JavaScript
65 lines
2.2 KiB
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
// META: script=/webusb/resources/fake-devices.js
|
|
// META: script=/webusb/resources/usb-helpers.js
|
|
// META: global=sharedworker
|
|
'use strict';
|
|
|
|
// Object instances used by the IDL test.
|
|
var usbDevice;
|
|
var usbConfiguration;
|
|
var usbInterface;
|
|
var usbAlternateInterface;
|
|
var usbEndpoint;
|
|
var usbConnectionEvent;
|
|
|
|
usb_test(async () => {
|
|
const idl = await fetch('/interfaces/webusb.idl').then(r => r.text());
|
|
const html = await fetch('/interfaces/html.idl').then(r => r.text());
|
|
const dom = await fetch('/interfaces/dom.idl').then(r => r.text());
|
|
|
|
let idl_array = new IdlArray();
|
|
idl_array.add_idls(idl);
|
|
idl_array.add_dependency_idls(html);
|
|
idl_array.add_dependency_idls(dom);
|
|
|
|
// Untested IDL interfaces
|
|
idl_array.add_untested_idls('dictionary PermissionDescriptor {};');
|
|
idl_array.add_untested_idls('interface PermissionStatus {};');
|
|
|
|
let {device} = await getFakeDevice();
|
|
|
|
usbDevice = device;
|
|
usbConfiguration = usbDevice.configurations[0];
|
|
usbInterface = usbConfiguration.interfaces[0];
|
|
usbAlternateInterface = usbInterface.alternates[0];
|
|
usbEndpoint = usbAlternateInterface.endpoints[0];
|
|
usbConnectionEvent =
|
|
new USBConnectionEvent('connect', { device: usbDevice })
|
|
|
|
if (self.GLOBAL.isWindow()) {
|
|
idl_array.add_objects({ Navigator: ['navigator'] });
|
|
} else if (self.GLOBAL.isWorker()) {
|
|
idl_array.add_objects({ WorkerNavigator: ['navigator'] });
|
|
}
|
|
|
|
idl_array.add_objects({
|
|
USB: ['navigator.usb'],
|
|
USBAlternateInterface: ['usbAlternateInterface'],
|
|
USBConfiguration: ['usbConfiguration'],
|
|
USBConnectionEvent: ['usbConnectionEvent'],
|
|
USBDevice: ['usbDevice'],
|
|
USBEndpoint: ['usbEndpoint'],
|
|
USBInterface: ['usbInterface'],
|
|
USBInTransferResult: ['new USBInTransferResult("ok")'],
|
|
USBOutTransferResult: ['new USBOutTransferResult("ok")'],
|
|
USBIsochronousInTransferResult: ['new USBIsochronousInTransferResult([])'],
|
|
USBIsochronousOutTransferResult: ['new USBIsochronousOutTransferResult([])'],
|
|
USBIsochronousInTransferPacket: ['new USBIsochronousInTransferPacket("ok")'],
|
|
USBIsochronousOutTransferPacket: ['new USBIsochronousOutTransferPacket("ok")'],
|
|
});
|
|
|
|
idl_array.test();
|
|
}, 'WebUSB IDL test');
|
|
|
|
done();
|