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
37 lines
1.4 KiB
JavaScript
37 lines
1.4 KiB
JavaScript
'use strict';
|
|
|
|
test(t => {
|
|
let data_view = new DataView(Uint8Array.from([1, 2, 3, 4]).buffer);
|
|
let packet_data_view = new DataView(data_view.buffer);
|
|
let packets = [
|
|
new USBIsochronousInTransferPacket('ok', packet_data_view),
|
|
new USBIsochronousInTransferPacket('stall')
|
|
];
|
|
|
|
let result = new USBIsochronousInTransferResult(packets, data_view);
|
|
assert_equals(result.data.getInt32(0), 16909060);
|
|
assert_equals(result.packets.length, 2);
|
|
assert_equals(result.packets[0].status, 'ok');
|
|
assert_equals(result.packets[0].data.getInt32(0), 16909060);
|
|
assert_equals(result.packets[1].status, 'stall');
|
|
assert_equals(result.packets[1].data, null);
|
|
}, 'Can construct a USBIsochronousInTransferResult');
|
|
|
|
test(t => {
|
|
let packets = [
|
|
new USBIsochronousInTransferPacket('stall'),
|
|
new USBIsochronousInTransferPacket('stall')
|
|
];
|
|
let result = new USBIsochronousInTransferResult(packets);
|
|
assert_equals(result.data, null);
|
|
assert_equals(result.packets.length, 2);
|
|
assert_equals(result.packets[0].status, 'stall');
|
|
assert_equals(result.packets[0].data, null);
|
|
assert_equals(result.packets[1].status, 'stall');
|
|
assert_equals(result.packets[1].data, null);
|
|
}, 'Can construct a USBIsochronousInTransferResult without a DataView');
|
|
|
|
test(t => {
|
|
assert_throws_js(TypeError, () => new USBIsochronousInTransferResult());
|
|
}, 'Cannot construct a USBIsochronousInTransferResult without packets');
|