summaryrefslogtreecommitdiff
path: root/std/encoding/base64_test.ts
blob: 9e549c69808bb809ef91f8c25911e3a621194082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";
import { encode, decode, decodeString } from "./base64.ts";

const testsetString = [
  ["", ""],
  ["f", "Zg=="],
  ["fo", "Zm8="],
  ["foo", "Zm9v"],
  ["foob", "Zm9vYg=="],
  ["fooba", "Zm9vYmE="],
  ["foobar", "Zm9vYmFy"],
];

const testsetBinary = [
  [new TextEncoder().encode("\x00"), "AA=="],
  [new TextEncoder().encode("\x00\x00"), "AAA="],
  [new TextEncoder().encode("\x00\x00\x00"), "AAAA"],
  [new TextEncoder().encode("\x00\x00\x00\x00"), "AAAAAA=="],
];

Deno.test("[encoding/base64] testBase64EncodeString", () => {
  for (const [input, output] of testsetString) {
    assertEquals(encode(input), output);
  }
});

Deno.test("[encoding/base64] testBase64DecodeString", () => {
  for (const [input, output] of testsetString) {
    assertEquals(decodeString(output), input);
  }
});

Deno.test("[encoding/base64] testBase64EncodeBinary", () => {
  for (const [input, output] of testsetBinary) {
    assertEquals(encode(input), output);
  }
});

Deno.test("[encoding/base64] testBase64DecodeBinary", () => {
  for (const [input, output] of testsetBinary) {
    const outputBinary = new Uint8Array(decode(output as string));
    assertEquals(outputBinary, input as Uint8Array);
  }
});