forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinaryToBase64-test.js
More file actions
48 lines (35 loc) · 1.32 KB
/
binaryToBase64-test.js
File metadata and controls
48 lines (35 loc) · 1.32 KB
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
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @emails oncall+react_native
*/
'use strict';
const base64 = require('base64-js');
const {TextEncoder, TextDecoder} = require('util');
describe('binaryToBase64', () => {
const binaryToBase64 = require('../binaryToBase64');
it('should encode a Uint8Array', () => {
const input = new TextEncoder().encode('Test string');
expect(base64ToString(binaryToBase64(input))).toEqual('Test string');
});
it('should encode an ArrayBuffer', () => {
const input = new TextEncoder().encode('Test string').buffer;
expect(base64ToString(binaryToBase64(input))).toEqual('Test string');
});
it('should encode a DataView', () => {
const input = new DataView(new TextEncoder().encode('Test string').buffer);
expect(base64ToString(binaryToBase64(input))).toEqual('Test string');
});
it('should not encode a non ArrayBuffer or non typed array', () => {
const input = ['i', 'n', 'v', 'a', 'l', 'i', 'd'];
expect(() => binaryToBase64(input)).toThrowError();
});
});
function base64ToString(base64String) {
const byteArray = base64.toByteArray(base64String);
return new TextDecoder().decode(byteArray);
}