2020-01-21 10:01:55 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-07-03 11:13:22 -04:00
|
|
|
import { assert } from "../../../testing/asserts.ts";
|
2019-12-23 04:36:25 -05:00
|
|
|
import { generate, validate } from "../../v4.ts";
|
2019-07-03 11:13:22 -04:00
|
|
|
|
2020-02-11 11:24:27 -05:00
|
|
|
Deno.test({
|
2019-07-03 11:13:22 -04:00
|
|
|
name: "[UUID] is_valid_uuid_v4",
|
|
|
|
fn(): void {
|
|
|
|
const u = generate();
|
|
|
|
const t = "84fb7824-b951-490e-8afd-0c13228a8282";
|
|
|
|
const n = "84fb7824-b951-490g-8afd-0c13228a8282";
|
|
|
|
|
|
|
|
assert(validate(u), `generated ${u} should be valid`);
|
|
|
|
assert(validate(t), `${t} should be valid`);
|
|
|
|
assert(!validate(n), `${n} should not be valid`);
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2019-07-03 11:13:22 -04:00
|
|
|
});
|