2019-01-21 14:03:30 -05:00
|
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2018-09-20 18:53:29 -04:00
|
|
|
|
import { test, assert, assertEqual } from "./test_util.ts";
|
|
|
|
|
|
|
|
|
|
test(function atobSuccess() {
|
|
|
|
|
const text = "hello world";
|
|
|
|
|
const encoded = btoa(text);
|
|
|
|
|
assertEqual(encoded, "aGVsbG8gd29ybGQ=");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test(function btoaSuccess() {
|
|
|
|
|
const encoded = "aGVsbG8gd29ybGQ=";
|
|
|
|
|
const decoded = atob(encoded);
|
|
|
|
|
assertEqual(decoded, "hello world");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test(function btoaFailed() {
|
|
|
|
|
const text = "你好";
|
|
|
|
|
let err;
|
|
|
|
|
try {
|
|
|
|
|
btoa(text);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
err = e;
|
|
|
|
|
}
|
|
|
|
|
assert(!!err);
|
|
|
|
|
assertEqual(err.name, "InvalidInput");
|
|
|
|
|
});
|
2018-12-06 13:01:15 -05:00
|
|
|
|
|
|
|
|
|
test(function textDecoder2() {
|
|
|
|
|
// prettier-ignore
|
|
|
|
|
const fixture = new Uint8Array([
|
|
|
|
|
0xf0, 0x9d, 0x93, 0xbd,
|
|
|
|
|
0xf0, 0x9d, 0x93, 0xae,
|
|
|
|
|
0xf0, 0x9d, 0x94, 0x81,
|
|
|
|
|
0xf0, 0x9d, 0x93, 0xbd
|
|
|
|
|
]);
|
|
|
|
|
const decoder = new TextDecoder();
|
|
|
|
|
assertEqual(decoder.decode(fixture), "𝓽𝓮𝔁𝓽");
|
|
|
|
|
});
|
|
|
|
|
|
2018-12-06 18:23:29 -05:00
|
|
|
|
test(function textDecoderASCII() {
|
|
|
|
|
const fixture = new Uint8Array([0x89, 0x95, 0x9f, 0xbf]);
|
|
|
|
|
const decoder = new TextDecoder("ascii");
|
|
|
|
|
assertEqual(decoder.decode(fixture), "‰•Ÿ¿");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test(function textDecoderErrorEncoding() {
|
|
|
|
|
let didThrow = false;
|
|
|
|
|
try {
|
|
|
|
|
const decoder = new TextDecoder("foo");
|
|
|
|
|
} catch (e) {
|
|
|
|
|
didThrow = true;
|
|
|
|
|
assertEqual(e.message, "The encoding label provided ('foo') is invalid.");
|
|
|
|
|
}
|
|
|
|
|
assert(didThrow);
|
|
|
|
|
});
|
|
|
|
|
|
2018-12-06 13:01:15 -05:00
|
|
|
|
test(function textEncoder2() {
|
|
|
|
|
const fixture = "𝓽𝓮𝔁𝓽";
|
|
|
|
|
const encoder = new TextEncoder();
|
|
|
|
|
// prettier-ignore
|
|
|
|
|
assertEqual(Array.from(encoder.encode(fixture)), [
|
|
|
|
|
0xf0, 0x9d, 0x93, 0xbd,
|
|
|
|
|
0xf0, 0x9d, 0x93, 0xae,
|
|
|
|
|
0xf0, 0x9d, 0x94, 0x81,
|
|
|
|
|
0xf0, 0x9d, 0x93, 0xbd
|
|
|
|
|
]);
|
|
|
|
|
});
|