summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encoding/iso-2022-jp-decoder.any.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/encoding/iso-2022-jp-decoder.any.js
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/encoding/iso-2022-jp-decoder.any.js')
-rw-r--r--testing/web-platform/tests/encoding/iso-2022-jp-decoder.any.js52
1 files changed, 52 insertions, 0 deletions
diff --git a/testing/web-platform/tests/encoding/iso-2022-jp-decoder.any.js b/testing/web-platform/tests/encoding/iso-2022-jp-decoder.any.js
new file mode 100644
index 0000000000..f9915a2fcf
--- /dev/null
+++ b/testing/web-platform/tests/encoding/iso-2022-jp-decoder.any.js
@@ -0,0 +1,52 @@
+// META: global=window,dedicatedworker,shadowrealm
+//
+function decode(input, output, desc) {
+ test(function() {
+ var d = new TextDecoder("iso-2022-jp"),
+ buffer = new ArrayBuffer(input.length),
+ view = new Int8Array(buffer)
+ for(var i = 0, l = input.length; i < l; i++) {
+ view[i] = input[i]
+ }
+ assert_equals(d.decode(view), output)
+ }, "iso-2022-jp decoder: " + desc)
+}
+decode([0x1b, 0x24], "�$", "Error ESC")
+decode([0x1b, 0x24, 0x50], "�$P", "Error ESC, character")
+decode([0x1b, 0x28, 0x42, 0x50], "P", "ASCII ESC, character")
+decode([0x1b, 0x28, 0x42, 0x1b, 0x28, 0x42, 0x50], "�P", "Double ASCII ESC, character")
+decode([0x50, 0x1b, 0x28, 0x42, 0x50], "PP", "character, ASCII ESC, character")
+decode([0x5C, 0x5D, 0x7E], "\\]~", "characters")
+decode([0x0D, 0x0E, 0x0F, 0x10], "\x0D��\x10", "SO / SI")
+
+decode([0x1b, 0x28, 0x4A, 0x5C, 0x5D, 0x7E], "¥]‾", "Roman ESC, characters")
+decode([0x1b, 0x28, 0x4A, 0x0D, 0x0E, 0x0F, 0x10], "\x0D��\x10", "Roman ESC, SO / SI")
+decode([0x1b, 0x28, 0x4A, 0x1b, 0x1b, 0x28, 0x49, 0x50], "�ミ", "Roman ESC, error ESC, Katakana ESC")
+
+decode([0x1b, 0x28, 0x49, 0x50], "ミ", "Katakana ESC, character")
+decode([0x1b, 0x28, 0x49, 0x1b, 0x24, 0x40, 0x50, 0x50], "�佩", "Katakana ESC, multibyte ESC, character")
+decode([0x1b, 0x28, 0x49, 0x1b, 0x50], "�ミ", "Katakana ESC, error ESC, character")
+decode([0x1b, 0x28, 0x49, 0x1b, 0x24, 0x50], "�、ミ", "Katakana ESC, error ESC #2, character")
+decode([0x1b, 0x28, 0x49, 0x50, 0x1b, 0x28, 0x49, 0x50], "ミミ", "Katakana ESC, character, Katakana ESC, character")
+decode([0x1b, 0x28, 0x49, 0x0D, 0x0E, 0x0F, 0x10], "����", "Katakana ESC, SO / SI")
+
+decode([0x1b, 0x24, 0x40, 0x50, 0x50], "佩", "Multibyte ESC, character")
+decode([0x1b, 0x24, 0x42, 0x50, 0x50], "佩", "Multibyte ESC #2, character")
+decode([0x1b, 0x24, 0x42, 0x1b, 0x50, 0x50], "�佩", "Multibyte ESC, error ESC, character")
+decode([0x1b, 0x24, 0x40, 0x1b, 0x24, 0x40], "�", "Double multibyte ESC")
+decode([0x1b, 0x24, 0x40, 0x1b, 0x24, 0x40, 0x50, 0x50], "�佩", "Double multibyte ESC, character")
+decode([0x1b, 0x24, 0x40, 0x1b, 0x24, 0x42, 0x50, 0x50], "�佩", "Double multibyte ESC #2, character")
+decode([0x1b, 0x24, 0x40, 0x1b, 0x24, 0x50, 0x50], "�ば�", "Multibyte ESC, error ESC #2, character")
+
+decode([0x1b, 0x24, 0x40, 0x50, 0x1b, 0x24, 0x40, 0x50, 0x50], "�佩", "Multibyte ESC, single byte, multibyte ESC, character")
+decode([0x1b, 0x24, 0x40, 0x20, 0x50], "��", "Multibyte ESC, lead error byte")
+decode([0x1b, 0x24, 0x40, 0x50, 0x20], "�", "Multibyte ESC, trail error byte")
+
+decode([0x50, 0x1b], "P�", "character, error ESC")
+decode([0x50, 0x1b, 0x24], "P�$", "character, error ESC #2")
+decode([0x50, 0x1b, 0x50], "P�P", "character, error ESC #3")
+decode([0x50, 0x1b, 0x28, 0x42], "P", "character, ASCII ESC")
+decode([0x50, 0x1b, 0x28, 0x4A], "P", "character, Roman ESC")
+decode([0x50, 0x1b, 0x28, 0x49], "P", "character, Katakana ESC")
+decode([0x50, 0x1b, 0x24, 0x40], "P", "character, Multibyte ESC")
+decode([0x50, 0x1b, 0x24, 0x42], "P", "character, Multibyte ESC #2")