forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusbIsochronousInTransferPacket.https.html
More file actions
33 lines (28 loc) · 1.14 KB
/
usbIsochronousInTransferPacket.https.html
File metadata and controls
33 lines (28 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!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>