Revision 8efcf2b57818807058a785bc55ebe13cb0139123 authored by Philip Jägenstedt on 29 March 2018, 13:44:01 UTC, committed by Geoffrey Sneddon on 29 March 2018, 13:44:01 UTC
This was inverted so that the Windows instructions were printed on
Linux. Rather than just changing the condition, switch the messages,
to match the order of some preceding code.
1 parent 604d17e
Raw File
usbIsochronousInTransferPacket.https.html
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
'use strict';

test(t => {
  let data_view = new DataView(Uint8Array.from([1, 2, 3, 4]).buffer);
  let packet = new USBIsochronousInTransferPacket('ok', data_view);
  assert_equals(packet.status, 'ok');
  assert_equals(packet.data.getInt32(0), 16909060);
}, 'Can construct a USBIsochronousInTransferPacket');

test(t => {
  let packet = new USBIsochronousInTransferPacket('stall');
  assert_equals(packet.status, 'stall');
  assert_equals(packet.data, null);

  packet = new USBIsochronousInTransferPacket('stall', null);
  assert_equals(packet.status, 'stall');
  assert_equals(packet.data, null);
}, 'Can construct a USBIsochronousInTransferPacket without a DataView');

test(t => {
  assert_throws(TypeError(), () => {
    new USBIsochronousInTransferPacket('invalid_status');
  });
}, 'Cannot construct USBIsochronousInTransferPacket with an invalid status');

test(t => {
  assert_throws(TypeError(), () => new USBIsochronousInTransferPacket());
}, 'Cannot construct USBIsochronousInTransferPacket without a status');
</script>
back to top