summaryrefslogtreecommitdiff
path: root/std/uuid/tests/v5/generate.ts
blob: c869ef505c0930d84c69cc3811b7b65bf5c2041a (plain)
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
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { assert, assertEquals } from "../../../testing/asserts.ts";
const { test } = Deno;
import { generate, validate } from "../../v5.ts";
const NAMESPACE = "1b671a64-40d5-491e-99b0-da01ff1f3341";
test({
  name: "[UUID] test_uuid_v5",
  fn(): void {
    const u = generate({ value: "", namespace: NAMESPACE });
    assertEquals(typeof u, "string", "returns a string");
    assert(u !== "", "return string is not empty");
  },
});

test({
  name: "[UUID] test_uuid_v5_format",
  fn(): void {
    for (let i = 0; i < 10000; i++) {
      const u = generate({ value: String(i), namespace: NAMESPACE }) as string;
      assert(validate(u), `${u} is not a valid uuid v5`);
    }
  },
});

test({
  name: "[UUID] test_uuid_v5_option",
  fn(): void {
    const v5Options = {
      value: "Hello, World",
      namespace: NAMESPACE,
    };
    const u = generate(v5Options);
    assertEquals(u, "4b4f2adc-5b27-57b5-8e3a-c4c4bcf94f05");
  },
});

test({
  name: "[UUID] test_uuid_v5_buf_offset",
  fn(): void {
    const buf = [
      75,
      79,
      42,
      220,
      91,
      39,
      87,
      181,
      142,
      58,
      196,
      196,
      188,
      249,
      79,
      5,
    ];
    const origin = JSON.parse(JSON.stringify(buf));
    generate({ value: "Hello, World", namespace: NAMESPACE }, buf);
    assertEquals(origin, buf);

    generate({ value: "Hello, World", namespace: NAMESPACE }, buf, 3);
    assertEquals(origin.slice(0, 3), buf.slice(0, 3));
    assertEquals(origin, buf.slice(3));
  },
});