Update web-platform-tests to revision 2b7dace05fc1869398ee24f84fda4c0e4c0455ae

This commit is contained in:
WPT Sync Bot 2018-08-31 21:37:12 +00:00 committed by Tom Servo
parent b23125d590
commit 6c901de216
844 changed files with 19802 additions and 3093 deletions

View file

@ -0,0 +1,53 @@
// META: script=/webusb/resources/fake-devices.js
// META: script=/webusb/resources/usb-helpers.js
'use strict';
usb_test(async () => {
let { device } = await getFakeDevice();
let configuration = new USBConfiguration(
device, device.configurations[1].configurationValue);
let usbInterface = new USBInterface(
configuration, configuration.interfaces[0].interfaceNumber);
assertDeviceInfoEquals(
usbInterface, fakeDeviceInit.configurations[1].interfaces[0]);
}, 'Can construct a USBInterface.');
usb_test(async () => {
let { device } = await getFakeDevice();
let configuration = new USBConfiguration(
device, device.configurations[1].configurationValue);
try {
let usbInterface = new USBInterface(
configuration, configuration.interfaces.length);
assert_unreached('USBInterface should reject an invalid interface number');
} catch (error) {
assert_equals(error.name, 'RangeError');
}
}, 'Constructing a USBInterface with an invalid interface number ' +
'throws a range error.');
usb_test(async () => {
let { device } = await getFakeDevice();
await device.open();
await device.selectConfiguration(2);
let configuration = new USBConfiguration(
device, device.configurations[1].configurationValue);
let usbInterface = new USBInterface(
configuration, configuration.interfaces[0].interfaceNumber);
assert_equals(usbInterface.alternate, null);
}, 'The alternate attribute of USBInterface returns null if the interface' +
'has not been claimed.');
usb_test(async () => {
let { device } = await getFakeDevice();
await device.open();
await device.selectConfiguration(2);
await device.claimInterface(0);
await device.selectAlternateInterface(0, 1);
let configuration = new USBConfiguration(
device, device.configurations[1].configurationValue);
let usbInterface = new USBInterface(
configuration, configuration.interfaces[0].interfaceNumber);
assert_equals(usbInterface.alternate.alternateSetting, 1);
}, 'The alternate attribute of USBInterface returns the active alternate ' +
'interface.');