mirror of
https://github.com/github/codeql-action.git
synced 2025-12-31 03:30:14 +08:00
49 lines
1.7 KiB
JavaScript
49 lines
1.7 KiB
JavaScript
import * as assert from 'assert';
|
|
import test, { describe } from 'node:test';
|
|
import parse from '../parse.js';
|
|
import stringify from '../stringify.js';
|
|
import uuidv4 from '../v4.js';
|
|
function splitmix32(a) {
|
|
return function () {
|
|
a |= 0;
|
|
a = (a + 0x9e3779b9) | 0;
|
|
let t = a ^ (a >>> 16);
|
|
t = Math.imul(t, 0x21f0aaad);
|
|
t = t ^ (t >>> 15);
|
|
t = Math.imul(t, 0x735a2d97);
|
|
return ((t = t ^ (t >>> 15)) >>> 0) / 4294967296;
|
|
};
|
|
}
|
|
const rand = splitmix32(0x12345678);
|
|
function rng(bytes = new Uint8Array(16)) {
|
|
for (let i = 0; i < 16; i++) {
|
|
bytes[i] = rand() * 256;
|
|
}
|
|
return bytes;
|
|
}
|
|
describe('parse', () => {
|
|
test('String -> bytes parsing', () => {
|
|
assert.deepStrictEqual(parse('0f5abcd1-c194-47f3-905b-2df7263a084b'), Uint8Array.from([
|
|
0x0f, 0x5a, 0xbc, 0xd1, 0xc1, 0x94, 0x47, 0xf3, 0x90, 0x5b, 0x2d, 0xf7, 0x26, 0x3a, 0x08,
|
|
0x4b,
|
|
]));
|
|
});
|
|
test('String -> bytes -> string symmetry for assorted uuids', () => {
|
|
for (let i = 0; i < 1000; i++) {
|
|
const uuid = uuidv4({ rng });
|
|
assert.equal(stringify(parse(uuid)), uuid);
|
|
}
|
|
});
|
|
test('Case neutrality', () => {
|
|
assert.deepStrictEqual(parse('0f5abcd1-c194-47f3-905b-2df7263a084b'), parse('0f5abcd1-c194-47f3-905b-2df7263a084b'.toUpperCase()));
|
|
});
|
|
test('Null UUID case', () => {
|
|
assert.deepStrictEqual(parse('00000000-0000-0000-0000-000000000000'), Uint8Array.from(new Array(16).fill(0)));
|
|
});
|
|
test('UUID validation', () => {
|
|
assert.throws(() => parse());
|
|
assert.throws(() => parse('invalid uuid'));
|
|
assert.throws(() => parse('zyxwvuts-rqpo-nmlk-jihg-fedcba000000'));
|
|
});
|
|
});
|