File: stringify.test.js

package info (click to toggle)
node-uuid 8.3.2%2B~8.3.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,540 kB
  • sloc: javascript: 2,182; sh: 33; makefile: 30
file content (55 lines) | stat: -rw-r--r-- 1,205 bytes parent folder | download | duplicates (3)
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
import assert from 'assert';
import stringify from '../../src/stringify.js';

const BYTES = [
  0x0f,
  0x5a,
  0xbc,
  0xd1,
  0xc1,
  0x94,
  0x47,
  0xf3,
  0x90,
  0x5b,
  0x2d,
  0xf7,
  0x26,
  0x3a,
  0x08,
  0x4b,
];

describe('stringify', () => {
  test('Stringify Array', () => {
    assert.equal(stringify(BYTES), '0f5abcd1-c194-47f3-905b-2df7263a084b');
  });

  test('Stringify TypedArray', () => {
    assert.equal(stringify(Uint8Array.from(BYTES)), '0f5abcd1-c194-47f3-905b-2df7263a084b');
    assert.equal(stringify(Int32Array.from(BYTES)), '0f5abcd1-c194-47f3-905b-2df7263a084b');
  });

  test('Stringify w/ offset', () => {
    assert.equal(stringify([0, 0, 0, ...BYTES], 3), '0f5abcd1-c194-47f3-905b-2df7263a084b');
  });

  test('Throws on not enough values', () => {
    const bytes = [...BYTES];
    bytes.length = 15;
    assert.throws(() => stringify(bytes));
  });

  test('Throws on undefined value', () => {
    const bytes = [...BYTES];
    delete bytes[3];
    bytes.length = 15;
    assert.throws(() => stringify(bytes));
  });

  test('Throws on invalid value', () => {
    const bytes = [...BYTES];
    bytes[3] = 256;
    assert.throws(() => stringify(bytes));
  });
});