forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-crypto-randomuuidv7.js
More file actions
112 lines (93 loc) Β· 2.96 KB
/
test-crypto-randomuuidv7.js
File metadata and controls
112 lines (93 loc) Β· 2.96 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const assert = require('assert');
const {
randomUUIDv7,
} = require('crypto');
{
const uuid = randomUUIDv7();
assert.strictEqual(typeof uuid, 'string');
assert.strictEqual(uuid.length, 36);
// UUIDv7 format: xxxxxxxx-xxxx-7xxx-[89ab]xxx-xxxxxxxxxxxx
assert.match(
uuid,
/^[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/,
);
}
{
const uuid = randomUUIDv7();
assert.strictEqual(
Buffer.from(uuid.slice(14, 16), 'hex')[0] & 0xf0, 0x70,
);
assert.strictEqual(
Buffer.from(uuid.slice(19, 21), 'hex')[0] & 0b1100_0000, 0b1000_0000,
);
}
{
const seen = new Set();
for (let i = 0; i < 1000; i++) {
const uuid = randomUUIDv7();
assert(!seen.has(uuid), `Duplicate UUID generated: ${uuid}`);
seen.add(uuid);
}
}
// Timestamp: the embedded timestamp should approximate Date.now().
{
const before = Date.now();
const uuid = randomUUIDv7();
const after = Date.now();
// Extract the 48-bit timestamp from the UUID.
// Bytes 0-3 (chars 0-8) and bytes 4-5 (chars 9-13, skipping the dash).
const hex = uuid.replace(/-/g, '');
const timestampHex = hex.slice(0, 12); // first 48 bits = 12 hex chars
const timestamp = parseInt(timestampHex, 16);
assert(timestamp >= before, `Timestamp ${timestamp} < before ${before}`);
assert(timestamp <= after, `Timestamp ${timestamp} > after ${after}`);
}
{
let prev = randomUUIDv7();
for (let i = 0; i < 100; i++) {
const curr = randomUUIDv7();
// UUIDs with later timestamps must sort after earlier ones.
// Within the same millisecond, ordering depends on random bits,
// so we only assert >= on the timestamp portion.
const prevTs = parseInt(prev.replace(/-/g, '').slice(0, 12), 16);
const currTs = parseInt(curr.replace(/-/g, '').slice(0, 12), 16);
assert(currTs >= prevTs,
`Timestamp went backwards: ${currTs} < ${prevTs}`);
prev = curr;
}
}
// Ensure randomUUIDv7 takes no arguments (or ignores them gracefully).
{
const uuid = randomUUIDv7();
assert.match(
uuid,
/^[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/,
);
}
{
const uuidv7Regex =
/^[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/;
assert.match(randomUUIDv7({ disableEntropyCache: true }), uuidv7Regex);
assert.match(randomUUIDv7({ disableEntropyCache: true }), uuidv7Regex);
assert.match(randomUUIDv7({ disableEntropyCache: true }), uuidv7Regex);
assert.match(randomUUIDv7({ disableEntropyCache: true }), uuidv7Regex);
assert.throws(() => randomUUIDv7(1), {
code: 'ERR_INVALID_ARG_TYPE',
});
assert.throws(() => randomUUIDv7({ disableEntropyCache: '' }), {
code: 'ERR_INVALID_ARG_TYPE',
});
}
{
for (let n = 0; n < 130; n++) {
const uuid = randomUUIDv7();
assert.match(
uuid,
/^[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/,
);
}
}