Files
tubestation/testing/web-platform/tests/webusb/usbIsochronousInTransferPacket.https.any.js
Stephen McGruer 493df05d15 Bug 1611180 [wpt PR 21378] - Replace some "assert_throws(FooError(), stuff)" calls with assert_throws_js, a=testonly
Automatic update from web-platform-tests
Replace some "assert_throws(FooError(), stuff)" calls with assert_throws_js. (#21378)

This diff was generated by running:

  find . -type f -print0 | xargs -0 perl -pi -e 'BEGIN { $/ = undef; } s/assert_throws\(([ \n]*)([A-Za-z]*Error) *\(\) *(, *.)/assert_throws_js(\1\2\3/gs'

and then:

1) Manually editing dom/nodes/Element-matches.js to get the TypeError
constructor from the element's global.

2) Manually editing dom/nodes/ParentNode-querySelector-All.js to get the
TypeError constructor from root's global, whether "root" is a Document or some
other kind of node.

Co-authored-by: Boris Zbarsky <bzbarsky@mit.edu>

--

wpt-commits: f06523527a0735d23879f4e687d6efc095f780b7
wpt-pr: 21378
2020-01-27 15:36:03 +00:00

29 lines
1.0 KiB
JavaScript

'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_js(TypeError, () => {
new USBIsochronousInTransferPacket('invalid_status');
});
}, 'Cannot construct USBIsochronousInTransferPacket with an invalid status');
test(t => {
assert_throws_js(TypeError, () => new USBIsochronousInTransferPacket());
}, 'Cannot construct USBIsochronousInTransferPacket without a status');