-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathmain.test.js
97 lines (89 loc) · 2.83 KB
/
main.test.js
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import test from 'ava';
import { atob as origAtob, btoa as origBtoa } from './_capture-atob-btoa.js';
import { encodeBase64, decodeBase64, atob, btoa } from '../index.js';
/**
* @param {string} string
* @returns {Uint8Array}
*/
function stringToBytes(string) {
const data = new Uint8Array(string.length);
for (let i = 0; i < string.length; i += 1) {
data[i] = string.charCodeAt(i);
}
return data;
}
function bytesToString(data) {
return String.fromCharCode(...data);
}
test('bytes conversions', t => {
const insouts = [
['', ''],
['f', 'Zg=='],
['fo', 'Zm8='],
['foo', 'Zm9v'],
['foob', 'Zm9vYg=='],
['fooba', 'Zm9vYmE='],
['foobar', 'Zm9vYmFy'],
];
for (const [inp, outp] of insouts) {
t.is(encodeBase64(stringToBytes(inp)), outp, `${inp} encodes`);
t.is(bytesToString(decodeBase64(outp)), inp, `${outp} decodes`);
t.is(btoa(inp), outp, `${inp} encodes with btoa`);
t.is(atob(outp), inp, `${outp} decodes with atob`);
origBtoa && t.is(origBtoa(inp), outp, `${inp} encodes with origBtoa`);
origAtob && t.is(origAtob(outp), inp, `${outp} decodes with origAtob`);
}
const inputs = [
'a',
'ab',
'abc',
'Hello, world!',
'\x0d\x02\x09\xff\xfe',
'other--+iadtedata',
];
for (const str of inputs) {
t.is(
bytesToString(decodeBase64(encodeBase64(stringToBytes(str)))),
str,
`${str} round trips`,
);
origBtoa &&
t.is(atob(origBtoa(str)), str, `${str} round trips with atob(origBtoa)`);
origAtob &&
t.is(origAtob(btoa(str)), str, `${str} round trips with origAtob(btoa)`);
t.is(atob(btoa(str)), str, `${str} round trips with atob(btoa)`);
}
});
test('invalid encodings', t => {
const badInputs = [
['%', /Invalid base64 character %/],
['=', undefined], // this input is bad in multiple ways
['Z%', /Invalid base64 character %/],
['Z', /Missing padding at offset 1/],
['Z=', /Missing padding at offset 2/],
['Z=%', /Missing padding at offset 2/],
['Z==%', /Missing padding at offset 3/],
['Z==m', /Missing padding at offset 3/],
['Zg%', /Invalid base64 character %/],
['Zg', /Missing padding at offset 2/],
['Zg=', /Missing padding at offset 3/],
['Zg=%', /Missing padding at offset 3/],
['Zg==%', /trailing garbage %/],
['Zg==m', /trailing garbage m/],
['Zm8%', /Invalid base64 character %/],
['Zm8', /Missing padding at offset 3/],
// not invalid: 'Zm8='
['Zm8=%', /trailing garbage %/],
['Zm8==%', /trailing garbage =%/],
['Zm8==m', /trailing garbage =m/],
// non-zero padding bits (MAY reject): ['Qf==', ...],
];
for (const [badInput, message] of badInputs) {
t.throws(
// @ts-expect-error intentional error
() => decodeBase64(badInput),
message ? { message } : undefined,
`${badInput} is rejected`,
);
}
});