gecko-dev/testing/web-platform/tests/encoding/textdecoder-fatal-streaming.any.js
Leo Balter 1f0cfc2bbe Bug 1475129 [wpt PR 11930] - Reformat Encoding tests, a=testonly
Automatic update from web-platform-testsMoving some encoding files from .html to .any.js

--
Generalized test

--
converted some encoding tests to use any.js

--

wpt-commits: e44b8b3dae4f0f0c874ef0b2a89290d0dd32dcdd, 12b30f56e3dddb896d343a6b6331cd25d3740e1d, dfa045c04225bbd6c1d7b6c1512f446948c12deb
wpt-pr: 11930
2018-07-24 21:46:21 +00:00

44 lines
1.5 KiB
JavaScript

// META: title=Encoding API: End-of-file
test(function() {
[
{encoding: 'utf-8', sequence: [0xC0]},
{encoding: 'utf-16le', sequence: [0x00]},
{encoding: 'utf-16be', sequence: [0x00]}
].forEach(function(testCase) {
assert_throws(new TypeError(), function() {
var decoder = new TextDecoder(testCase.encoding, {fatal: true});
decoder.decode(new Uint8Array(testCase.sequence));
}, 'Unterminated ' + testCase.encoding + ' sequence should throw if fatal flag is set');
assert_equals(
new TextDecoder(testCase.encoding).decode(new Uint8Array([testCase.sequence])),
'\uFFFD',
'Unterminated UTF-8 sequence should emit replacement character if fatal flag is unset');
});
}, 'Fatal flag, non-streaming cases');
test(function() {
var decoder = new TextDecoder('utf-16le', {fatal: true});
var odd = new Uint8Array([0x00]);
var even = new Uint8Array([0x00, 0x00]);
assert_equals(decoder.decode(odd, {stream: true}), '');
assert_equals(decoder.decode(odd), '\u0000');
assert_throws(new TypeError(), function() {
decoder.decode(even, {stream: true});
decoder.decode(odd)
});
assert_throws(new TypeError(), function() {
decoder.decode(odd, {stream: true});
decoder.decode(even);
});
assert_equals(decoder.decode(even, {stream: true}), '\u0000');
assert_equals(decoder.decode(even), '\u0000');
}, 'Fatal flag, streaming cases');