2023-03-26 06:03:10 -04:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { randomInt } from "node:crypto";
|
2023-11-21 20:03:03 -05:00
|
|
|
import { assert, assertThrows } from "../../../../test_util/std/assert/mod.ts";
|
2023-03-26 06:03:10 -04:00
|
|
|
|
|
|
|
const between = (x: number, min: number, max: number) => x >= min && x < max;
|
|
|
|
|
|
|
|
Deno.test("[node/crypto.randomInt] One Param: Max", () => {
|
|
|
|
assert(between(randomInt(55), 0, 55));
|
|
|
|
});
|
|
|
|
|
|
|
|
Deno.test("[node/crypto.randomInt] Two Params: Max and Min", () => {
|
|
|
|
assert(between(randomInt(40, 120), 40, 120));
|
|
|
|
});
|
|
|
|
|
|
|
|
Deno.test("[node/crypto.randomInt] Max and Callback", () => {
|
|
|
|
let called = false;
|
|
|
|
randomInt(3, (_err, val) => {
|
|
|
|
called = true;
|
|
|
|
assert(between(val as number, 0, 3));
|
|
|
|
});
|
|
|
|
assert(called);
|
|
|
|
});
|
|
|
|
|
|
|
|
Deno.test("[node/crypto.randomInt] Min, Max and Callback", () => {
|
|
|
|
randomInt(3, 5, (_err, val) => {
|
|
|
|
assert(between(val as number, 3, 5));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
Deno.test("[node/crypto.randomInt] Min is bigger than Max", () => {
|
|
|
|
assertThrows(() => randomInt(45, 34));
|
|
|
|
});
|