2020-03-15 10:31:55 -04:00
|
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
|
|
function assertArrayEquals(a1, a2) {
|
|
|
|
|
if (a1.length !== a2.length) throw Error("assert");
|
|
|
|
|
|
|
|
|
|
for (const index in a1) {
|
|
|
|
|
if (a1[index] !== a2[index]) {
|
|
|
|
|
throw Error("assert");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
|
// prettier-ignore
|
|
|
|
|
const fixture1 = [
|
|
|
|
|
0xf0, 0x9d, 0x93, 0xbd,
|
|
|
|
|
0xf0, 0x9d, 0x93, 0xae,
|
|
|
|
|
0xf0, 0x9d, 0x94, 0x81,
|
|
|
|
|
0xf0, 0x9d, 0x93, 0xbd
|
|
|
|
|
];
|
|
|
|
|
// prettier-ignore
|
|
|
|
|
const fixture2 = [
|
|
|
|
|
72, 101, 108, 108,
|
|
|
|
|
111, 32, 239, 191,
|
|
|
|
|
189, 239, 191, 189,
|
|
|
|
|
32, 87, 111, 114,
|
|
|
|
|
108, 100
|
|
|
|
|
];
|
|
|
|
|
|
2020-03-19 16:31:56 -04:00
|
|
|
|
const empty = Deno.core.encode("");
|
|
|
|
|
if (empty.length !== 0) throw new Error("assert");
|
|
|
|
|
|
2020-03-15 10:31:55 -04:00
|
|
|
|
assertArrayEquals(Array.from(Deno.core.encode("𝓽𝓮𝔁𝓽")), fixture1);
|
|
|
|
|
assertArrayEquals(
|
|
|
|
|
Array.from(Deno.core.encode("Hello \udc12\ud834 World")),
|
|
|
|
|
fixture2
|
|
|
|
|
);
|
|
|
|
|
|
2020-03-19 16:31:56 -04:00
|
|
|
|
const emptyBuf = Deno.core.decode(new Uint8Array(0));
|
|
|
|
|
if (emptyBuf !== "") throw new Error("assert");
|
|
|
|
|
|
2020-03-15 10:31:55 -04:00
|
|
|
|
assert(Deno.core.decode(new Uint8Array(fixture1)) === "𝓽𝓮𝔁𝓽");
|
|
|
|
|
assert(Deno.core.decode(new Uint8Array(fixture2)) === "Hello <20><> World");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main();
|