Revision 36857c5f01b941752b8877902dccd8b7b01202be authored by Tooru Fujisawa on 02 October 2018, 08:23:59 UTC, committed by moz-wptsync-bot on 02 October 2018, 08:23:59 UTC
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1495601
gecko-commit: 6568853848ac62384a094e521965e101978b1f62
gecko-integration-branch: mozilla-inbound
gecko-reviewers: sfink
1 parent b7fcdf3
Raw File
usbEndpoint.https.any.js
// 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);
  let alternateInterface = new USBAlternateInterface(
      usbInterface, usbInterface.alternates[1].alternateSetting);
  let inEndpoint = new USBEndpoint(
      alternateInterface, alternateInterface.endpoints[0].endpointNumber, 'in');
  let outEndpoint = new USBEndpoint(
      alternateInterface,
      alternateInterface.endpoints[1].endpointNumber,
      'out');
  assertDeviceInfoEquals(
      inEndpoint,
      fakeDeviceInit.configurations[1].interfaces[0].alternates[1]
          .endpoints[0]);
  assertDeviceInfoEquals(
      outEndpoint,
      fakeDeviceInit.configurations[1].interfaces[0].alternates[1]
          .endpoints[1]);
}, 'Can construct a USBEndpoint.');

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);
  let alternateInterface = new USBAlternateInterface(
      usbInterface, usbInterface.alternates[1].alternateSetting);
  try {
    let endpoint = new USBEndpoint(
        alternateInterface, alternateInterface.endpoints.length, 'in');
    assert_unreached('USBEndpoint should reject an invalid endpoint number');
  } catch (error) {
    assert_equals(error.name, 'RangeError');
  }
}, 'Constructing a USBEndpoint with an invalid endpoint number  throws a ' +
    'range error.');
back to top