Skip to content

Commit

Permalink
Add RTCDataChannel-binaryType.html from PR13499 (#16043)
Browse files Browse the repository at this point in the history
Co-authored-by: Dominique Hazael-Massieux <[email protected]>
  • Loading branch information
youennf and dontcallmedom authored Oct 1, 2020
1 parent 22a67eb commit 7630317
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions webrtc/RTCDataChannel-binaryType.window.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
'use strict';

const validBinaryTypes = ['blob', 'arraybuffer'];
const invalidBinaryTypes = ['jellyfish', 'arraybuffer ', '', null, undefined];

for (const binaryType of validBinaryTypes) {
test((t) => {
const pc = new RTCPeerConnection();
t.add_cleanup(() => pc.close());
const dc = pc.createDataChannel('test-binary-type');

dc.binaryType = binaryType;
assert_equals(dc.binaryType, binaryType, `dc.binaryType should be '${binaryType}'`);
}, `Setting binaryType to '${binaryType}' should succeed`);
}

for (const binaryType of invalidBinaryTypes) {
test((t) => {
const pc = new RTCPeerConnection();
t.add_cleanup(() => pc.close());
const dc = pc.createDataChannel('test-binary-type');

assert_throws('SyntaxError', () => {
dc.binaryType = binaryType;
});
}, `Setting invalid binaryType '${binaryType}' should throw SyntaxError`);
}

0 comments on commit 7630317

Please sign in to comment.