mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 05:50:44 -05:00
This started as a small update. This pull request includes updates to the `RandomUtil` class to improve the security and accuracy of random number generation by utilizing the `node:crypto` module. Additionally, it enhances the documentation and refactors several methods for clarity and performance. Includes tests, both before and after the changes. The only *possible* breaking change is that now the `getKey`, `getKeyValue`, and `drawRandomFromDict` methods are typed with generics instead of `any`. I tried to keep them as *generic* as possible, but we should probably include this in a BE to ensure it doesn't break anything. No further changes are planned--Saved as a draft because it's late and I still want to review. --------- Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
664 lines
23 KiB
TypeScript
664 lines
23 KiB
TypeScript
import "reflect-metadata";
|
|
import { RandomUtil } from "@spt/utils/RandomUtil";
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
describe("RandomUtil", () => {
|
|
let randomUtil: RandomUtil;
|
|
let mockCloner: any;
|
|
let mockLogger: any;
|
|
|
|
beforeEach(() => {
|
|
mockCloner = {
|
|
clone: vi.fn((obj) => JSON.parse(JSON.stringify(obj))),
|
|
};
|
|
mockLogger = {
|
|
warning: vi.fn(),
|
|
info: vi.fn(),
|
|
};
|
|
randomUtil = new RandomUtil(mockCloner, mockLogger);
|
|
});
|
|
|
|
afterEach(() => {
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
describe("getInt", () => {
|
|
it("should return an integer between min and max inclusive when min < max", () => {
|
|
const min = 1;
|
|
const max = 5;
|
|
const result = randomUtil.getInt(min, max);
|
|
|
|
expect(result).toBeGreaterThanOrEqual(Math.ceil(min));
|
|
expect(result).toBeLessThanOrEqual(Math.floor(max));
|
|
expect(Number.isInteger(result)).toBe(true);
|
|
});
|
|
|
|
it("should handle floating-point min and max values", () => {
|
|
const min = 1.2;
|
|
const max = 5.8;
|
|
const result = randomUtil.getInt(min, max);
|
|
|
|
expect(result).toBeGreaterThanOrEqual(Math.ceil(min)); // 2
|
|
expect(result).toBeLessThanOrEqual(Math.floor(max)); // 5
|
|
expect(Number.isInteger(result)).toBe(true);
|
|
});
|
|
|
|
it("should return min when min and max are equal", () => {
|
|
const min = 3;
|
|
const max = 3;
|
|
const result = randomUtil.getInt(min, max);
|
|
|
|
expect(result).toBe(Math.ceil(min));
|
|
expect(Number.isInteger(result)).toBe(true);
|
|
});
|
|
|
|
it("should return min when max is less than min", () => {
|
|
const min = 5;
|
|
const max = 3;
|
|
const result = randomUtil.getInt(min, max);
|
|
|
|
expect(result).toBe(Math.ceil(min));
|
|
expect(Number.isInteger(result)).toBe(true);
|
|
});
|
|
|
|
it("should handle negative min and max values", () => {
|
|
const min = -5;
|
|
const max = -1;
|
|
const result = randomUtil.getInt(min, max);
|
|
|
|
expect(result).toBeGreaterThanOrEqual(Math.ceil(min));
|
|
expect(result).toBeLessThanOrEqual(Math.floor(max));
|
|
expect(Number.isInteger(result)).toBe(true);
|
|
});
|
|
});
|
|
|
|
describe("getIntEx", () => {
|
|
it("should return an integer between 1 and max - 2 inclusive when max > 1", () => {
|
|
const max = 10;
|
|
const result = randomUtil.getIntEx(max);
|
|
|
|
expect(result).toBeGreaterThanOrEqual(1);
|
|
expect(result).toBeLessThanOrEqual(max - 2);
|
|
expect(Number.isInteger(result)).toBe(true);
|
|
});
|
|
|
|
it("should return 1 when max is less than or equal to 1", () => {
|
|
const maxValues = [1, 0, -5];
|
|
for (const max of maxValues) {
|
|
const result = randomUtil.getIntEx(max);
|
|
expect(result).toBe(1);
|
|
}
|
|
});
|
|
|
|
it("should handle edge case when max is 2", () => {
|
|
const max = 2;
|
|
const result = randomUtil.getIntEx(max);
|
|
|
|
expect(result).toBe(1);
|
|
});
|
|
});
|
|
|
|
describe("getFloat", () => {
|
|
it("should return a float between min and max", () => {
|
|
const min = 1.5;
|
|
const max = 5.5;
|
|
const result = randomUtil.getFloat(min, max);
|
|
|
|
expect(result).toBeGreaterThanOrEqual(min);
|
|
expect(result).toBeLessThan(max);
|
|
});
|
|
|
|
it("should handle negative min and max values", () => {
|
|
const min = -5.5;
|
|
const max = -1.1;
|
|
const result = randomUtil.getFloat(min, max);
|
|
|
|
expect(result).toBeGreaterThanOrEqual(min);
|
|
expect(result).toBeLessThan(max);
|
|
});
|
|
|
|
it("should return min when min equals max", () => {
|
|
const min = 3.3;
|
|
const max = 3.3;
|
|
const result = randomUtil.getFloat(min, max);
|
|
|
|
expect(result).toBe(min);
|
|
});
|
|
});
|
|
|
|
describe("getBool", () => {
|
|
it("should return a boolean value", () => {
|
|
const result = randomUtil.getBool();
|
|
expect(typeof result).toBe("boolean");
|
|
});
|
|
|
|
it("should return true when Math.random is less than 0.5", () => {
|
|
vi.spyOn(randomUtil as any, "getSecureRandomNumber").mockReturnValue(0.4);
|
|
const result = randomUtil.getBool();
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return false when getSecureRandomNumber returns 0.5", () => {
|
|
vi.spyOn(randomUtil as any, "getSecureRandomNumber").mockReturnValue(0.5);
|
|
const result = randomUtil.getBool();
|
|
expect(result).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe("getPercentOfValue", () => {
|
|
it("should calculate the correct percentage of a number", () => {
|
|
const percent = 25;
|
|
const number = 200;
|
|
const result = randomUtil.getPercentOfValue(percent, number);
|
|
|
|
expect(result).toBe(50.0);
|
|
});
|
|
|
|
it("should handle decimal percentages and numbers", () => {
|
|
const percent = 12.5;
|
|
const number = 80.4;
|
|
const result = randomUtil.getPercentOfValue(percent, number);
|
|
|
|
expect(result).toBeCloseTo(10.05, 2);
|
|
});
|
|
|
|
it("should respect the toFixed parameter", () => {
|
|
const percent = 33.3333;
|
|
const number = 100;
|
|
const result = randomUtil.getPercentOfValue(percent, number, 4);
|
|
|
|
expect(result).toBe(33.3333);
|
|
});
|
|
});
|
|
|
|
describe("reduceValueByPercent", () => {
|
|
it("should reduce the value by the given percentage", () => {
|
|
const number = 200;
|
|
const percentage = 25;
|
|
const result = randomUtil.reduceValueByPercent(number, percentage);
|
|
|
|
expect(result).toBe(150);
|
|
});
|
|
|
|
it("should handle decimal percentages", () => {
|
|
const number = 100;
|
|
const percentage = 12.5;
|
|
const result = randomUtil.reduceValueByPercent(number, percentage);
|
|
|
|
expect(result).toBe(87.5);
|
|
});
|
|
|
|
it("should return the same number when percentage is 0", () => {
|
|
const number = 100;
|
|
const percentage = 0;
|
|
const result = randomUtil.reduceValueByPercent(number, percentage);
|
|
|
|
expect(result).toBe(100);
|
|
});
|
|
});
|
|
|
|
describe("getChance100", () => {
|
|
it("should return true if random number is less than or equal to chancePercent", () => {
|
|
vi.spyOn(randomUtil, "getIntEx").mockReturnValue(50);
|
|
|
|
const chancePercent = 60;
|
|
const result = randomUtil.getChance100(chancePercent);
|
|
|
|
expect(result).toBe(true);
|
|
expect(randomUtil.getIntEx).toHaveBeenCalledWith(100);
|
|
});
|
|
|
|
it("should return false if random number is greater than chancePercent", () => {
|
|
vi.spyOn(randomUtil, "getIntEx").mockReturnValue(70);
|
|
|
|
const chancePercent = 60;
|
|
const result = randomUtil.getChance100(chancePercent);
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe("getStringArrayValue", () => {
|
|
it("should return a value from the array", () => {
|
|
const arr = ["apple", "banana", "cherry"];
|
|
const result = randomUtil.getStringArrayValue(arr);
|
|
|
|
expect(arr).toContain(result);
|
|
});
|
|
|
|
it("should handle single-element arrays", () => {
|
|
const arr = ["only"];
|
|
const result = randomUtil.getStringArrayValue(arr);
|
|
|
|
expect(result).toBe("only");
|
|
});
|
|
|
|
it("should return predictable value when getInt is mocked", () => {
|
|
vi.spyOn(randomUtil, "getInt").mockReturnValue(1);
|
|
|
|
const arr = ["first", "second", "third"];
|
|
const result = randomUtil.getStringArrayValue(arr);
|
|
|
|
expect(result).toBe("second");
|
|
});
|
|
});
|
|
|
|
describe("getArrayValue", () => {
|
|
it("should return a value from the array of numbers", () => {
|
|
const arr = [10, 20, 30, 40];
|
|
const result = randomUtil.getArrayValue(arr);
|
|
|
|
expect(arr).toContain(result);
|
|
});
|
|
|
|
it("should return a value from the array of objects", () => {
|
|
const arr = [{ id: 1 }, { id: 2 }, { id: 3 }];
|
|
const result = randomUtil.getArrayValue(arr);
|
|
|
|
expect(arr).toContain(result);
|
|
});
|
|
|
|
it("should return predictable value when getInt is mocked", () => {
|
|
vi.spyOn(randomUtil, "getInt").mockReturnValue(2);
|
|
|
|
const arr = ["a", "b", "c", "d"];
|
|
const result = randomUtil.getArrayValue(arr);
|
|
|
|
expect(result).toBe("c");
|
|
});
|
|
});
|
|
|
|
describe("getKey", () => {
|
|
it("should return a key from the object", () => {
|
|
const obj = { a: 1, b: 2, c: 3 };
|
|
const result = randomUtil.getKey(obj);
|
|
|
|
expect(Object.keys(obj)).toContain(result);
|
|
});
|
|
|
|
it("should handle single-key objects", () => {
|
|
const obj = { onlyKey: "value" };
|
|
const result = randomUtil.getKey(obj);
|
|
|
|
expect(result).toBe("onlyKey");
|
|
});
|
|
|
|
it("should handle empty objects", () => {
|
|
const obj = {};
|
|
const result = randomUtil.getKey(obj);
|
|
|
|
expect(result).toBeUndefined();
|
|
});
|
|
|
|
it("should handle objects with integer keys", () => {
|
|
const obj = { 1: "a", 2: "b", 3: "c" };
|
|
const result = randomUtil.getKey(obj);
|
|
|
|
expect(Object.keys(obj)).toContain(result);
|
|
});
|
|
|
|
it("should return predictable key when getArrayValue is mocked", () => {
|
|
vi.spyOn(randomUtil, "getArrayValue").mockReturnValue("b");
|
|
|
|
const obj = { a: 1, b: 2, c: 3 };
|
|
const result = randomUtil.getKey(obj);
|
|
|
|
expect(result).toBe("b");
|
|
});
|
|
});
|
|
|
|
describe("getKeyValue", () => {
|
|
it("should return a value from the object", () => {
|
|
vi.spyOn(randomUtil, "getKey").mockReturnValue("b");
|
|
|
|
const obj = { a: 1, b: 2, c: 3 };
|
|
const result = randomUtil.getKeyValue(obj);
|
|
|
|
expect(result).toBe(2);
|
|
});
|
|
|
|
it("should handle objects with complex values", () => {
|
|
vi.spyOn(randomUtil, "getKey").mockReturnValue("key2");
|
|
|
|
const obj = { key1: "value1", key2: { nested: true }, key3: [1, 2, 3] };
|
|
const result = randomUtil.getKeyValue(obj);
|
|
|
|
expect(result).toEqual({ nested: true });
|
|
});
|
|
});
|
|
|
|
describe("getNormallyDistributedRandomNumber", () => {
|
|
it("should return a number close to the mean", () => {
|
|
const mean = 50;
|
|
const sigma = 5;
|
|
const result = randomUtil.getNormallyDistributedRandomNumber(mean, sigma);
|
|
|
|
expect(result).toBeGreaterThanOrEqual(0);
|
|
expect(typeof result).toBe("number");
|
|
});
|
|
|
|
it("should not return negative numbers", () => {
|
|
const mean = 5;
|
|
const sigma = 10;
|
|
const result = randomUtil.getNormallyDistributedRandomNumber(mean, sigma);
|
|
|
|
expect(result).toBeGreaterThanOrEqual(0);
|
|
});
|
|
|
|
it("should handle high attempt counts", () => {
|
|
let callCount = 0;
|
|
vi.spyOn(randomUtil as any, "getSecureRandomNumber").mockImplementation(() => {
|
|
callCount++;
|
|
// Alternate between u and v
|
|
if (callCount % 2 === 1) {
|
|
// u values
|
|
return 0.00001;
|
|
}
|
|
// v values
|
|
return 0.5;
|
|
});
|
|
|
|
const mean = 5;
|
|
const sigma = 2;
|
|
const result = randomUtil.getNormallyDistributedRandomNumber(mean, sigma);
|
|
|
|
// Each attempt increases callCount by 2 (once for u, once for v)
|
|
const attempts = callCount / 2;
|
|
|
|
// Ensure that the method attempted multiple times
|
|
expect(attempts).toBeGreaterThan(100);
|
|
|
|
// The result should be from the fallback value
|
|
expect(result).toBeGreaterThanOrEqual(0.01);
|
|
expect(result).toBeLessThanOrEqual(mean * 2);
|
|
});
|
|
|
|
it("should return a fallback value after many attempts", () => {
|
|
let callCount = 0;
|
|
vi.spyOn(randomUtil as any, "getSecureRandomNumber").mockImplementation(() => {
|
|
// Alternate between u and v
|
|
const value = callCount % 2 === 0 ? 0.0000001 : 0.5;
|
|
callCount++;
|
|
return value;
|
|
});
|
|
|
|
// Mock getFloat to return a predictable value
|
|
vi.spyOn(randomUtil, "getFloat").mockReturnValue(7.77);
|
|
|
|
const mean = 5;
|
|
const sigma = 2;
|
|
const result = randomUtil.getNormallyDistributedRandomNumber(mean, sigma, 101);
|
|
|
|
expect(result).toBe(7.77);
|
|
});
|
|
});
|
|
|
|
describe("randInt", () => {
|
|
it("should return an integer between low and high - 1", () => {
|
|
const low = 5;
|
|
const high = 10;
|
|
const result = randomUtil.randInt(low, high);
|
|
|
|
expect(result).toBeGreaterThanOrEqual(low);
|
|
expect(result).toBeLessThan(high);
|
|
expect(Number.isInteger(result)).toBe(true);
|
|
});
|
|
|
|
it("should return an integer between 0 and low - 1 when high is not provided", () => {
|
|
const low = 5;
|
|
const result = randomUtil.randInt(low);
|
|
|
|
expect(result).toBeGreaterThanOrEqual(0);
|
|
expect(result).toBeLessThan(low);
|
|
expect(Number.isInteger(result)).toBe(true);
|
|
});
|
|
|
|
it("should handle negative values", () => {
|
|
const low = -10;
|
|
const high = -5;
|
|
const result = randomUtil.randInt(low, high);
|
|
|
|
expect(result).toBeGreaterThanOrEqual(low);
|
|
expect(result).toBeLessThan(high);
|
|
});
|
|
});
|
|
|
|
describe("drawRandomFromList", () => {
|
|
it("should draw elements with replacement", () => {
|
|
const list = [1, 2, 3, 4, 5];
|
|
const count = 3;
|
|
const result = randomUtil.drawRandomFromList(list, count, true);
|
|
|
|
expect(result.length).toBe(count);
|
|
for (const item of result) {
|
|
expect(list).toContain(item);
|
|
}
|
|
});
|
|
|
|
it("should draw elements without replacement", () => {
|
|
mockCloner.clone.mockImplementation((obj) => [...obj]);
|
|
|
|
const list = [1, 2, 3, 4, 5];
|
|
const count = 3;
|
|
const result = randomUtil.drawRandomFromList(list, count, false);
|
|
|
|
expect(result.length).toBe(count);
|
|
expect(new Set(result).size).toBe(count);
|
|
});
|
|
|
|
it("should clone the original list when drawing without replacement", () => {
|
|
const list = [1, 2, 3];
|
|
randomUtil.drawRandomFromList(list, 2, false);
|
|
|
|
expect(mockCloner.clone).toHaveBeenCalledWith(list);
|
|
});
|
|
|
|
it("should handle count greater than list length without replacement", () => {
|
|
const list = [1, 2, 3];
|
|
const count = 5;
|
|
const result = randomUtil.drawRandomFromList(list, count, false);
|
|
|
|
expect(result.length).toBe(3);
|
|
});
|
|
|
|
it("should adjust count when count exceeds list length without replacement", () => {
|
|
const list = [10, 20, 30];
|
|
const count = 4; // Count exceeds list length
|
|
const result = randomUtil.drawRandomFromList(list, count, false);
|
|
|
|
// The result should contain all elements from the list without duplicates
|
|
expect(result.length).toBe(3); // Should be adjusted to list length
|
|
expect(new Set(result).size).toBe(3);
|
|
|
|
// Ensure that the result contains all elements from the original list
|
|
expect(result.sort()).toEqual(list.sort());
|
|
});
|
|
});
|
|
|
|
describe("drawRandomFromDict", () => {
|
|
it("should draw keys from the dictionary with replacement", () => {
|
|
const dict = { a: 1, b: 2, c: 3 };
|
|
const count = 2;
|
|
const result = randomUtil.drawRandomFromDict(dict, count, true);
|
|
|
|
expect(result.length).toBe(count);
|
|
for (const key of result) {
|
|
expect(Object.keys(dict)).toContain(key);
|
|
}
|
|
});
|
|
|
|
it("should draw keys without replacement", () => {
|
|
const dict = { a: 1, b: 2, c: 3 };
|
|
const count = 2;
|
|
const result = randomUtil.drawRandomFromDict(dict, count, false);
|
|
|
|
expect(result.length).toBe(count);
|
|
expect(new Set(result).size).toBe(count);
|
|
});
|
|
|
|
it("should handle single-key dictionaries", () => {
|
|
const dict = { onlyKey: 1 };
|
|
const count = 2;
|
|
const result = randomUtil.drawRandomFromDict(dict, count, false);
|
|
|
|
expect(result.length).toBe(1);
|
|
expect(result).toEqual(["onlyKey"]);
|
|
});
|
|
|
|
it("should handle dictionaries with integer keys", () => {
|
|
const dict = { 1: "a", 2: "b", 3: "c" };
|
|
const count = 2;
|
|
const result = randomUtil.drawRandomFromDict(dict, count, false);
|
|
|
|
expect(result.length).toBe(count);
|
|
for (const key of result) {
|
|
expect(Object.keys(dict)).toContain(key);
|
|
}
|
|
});
|
|
|
|
it("should handle count greater than number of keys without replacement", () => {
|
|
const dict = { a: 1, b: 2 };
|
|
const count = 3;
|
|
const result = randomUtil.drawRandomFromDict(dict, count, false);
|
|
|
|
expect(result.length).toBe(2);
|
|
});
|
|
|
|
it("should adjust count when count exceeds number of keys without replacement", () => {
|
|
const dict = { a: 1, b: 2, c: 3 };
|
|
const count = 5; // Count exceeds number of keys
|
|
const result = randomUtil.drawRandomFromDict(dict, count, false);
|
|
|
|
// The result should contain all keys without duplicates
|
|
expect(result.length).toBe(3); // Should be adjusted to number of keys
|
|
expect(new Set(result).size).toBe(3);
|
|
|
|
// Ensure that the result contains all keys from the dictionary
|
|
const dictKeys = Object.keys(dict);
|
|
expect(result.sort()).toEqual(dictKeys.sort());
|
|
});
|
|
});
|
|
|
|
describe("getBiasedRandomNumber", () => {
|
|
it("should return a number within the range", () => {
|
|
const min = 1;
|
|
const max = 10;
|
|
const shift = 2;
|
|
const n = 2;
|
|
const result = randomUtil.getBiasedRandomNumber(min, max, shift, n);
|
|
|
|
expect(result).toBeGreaterThanOrEqual(min);
|
|
expect(result).toBeLessThanOrEqual(max);
|
|
});
|
|
|
|
it("should throw error when max < min", () => {
|
|
expect(() => randomUtil.getBiasedRandomNumber(10, 5, 0, 2)).toThrowError(
|
|
"Bounded random number generation max is smaller than min (5 < 10)",
|
|
);
|
|
});
|
|
|
|
it("should throw error when n < 1", () => {
|
|
expect(() => randomUtil.getBiasedRandomNumber(1, 10, 0, 0)).toThrowError(
|
|
"'n' must be 1 or greater (received 0)",
|
|
);
|
|
});
|
|
|
|
it("should log warning when shift is greater than range", () => {
|
|
const min = 1;
|
|
const max = 5;
|
|
const shift = 10;
|
|
const n = 2;
|
|
randomUtil.getBiasedRandomNumber(min, max, shift, n);
|
|
|
|
expect(mockLogger.warning).toHaveBeenCalled();
|
|
expect(mockLogger.info).toHaveBeenCalledWith(`min -> ${min}; max -> ${max}; shift -> ${shift}`);
|
|
});
|
|
|
|
it("should return predictable result when getSecureRandomNumber is mocked", () => {
|
|
vi.spyOn(randomUtil as any, "getSecureRandomNumber").mockReturnValue(0.5);
|
|
|
|
const min = 1;
|
|
const max = 10;
|
|
const shift = 0;
|
|
const n = 2; // n affects how many times getSecureRandomNumber is summed/averaged
|
|
|
|
// With getSecureRandomNumber always returning 0.5,
|
|
// gaussianRandom(n) = 0.5 no matter what
|
|
// boundedGaussian(start, end, n) = round(start + 0.5 * (end - start + 1))
|
|
|
|
// For shift = 0:
|
|
// biasedMin = min = 1
|
|
// biasedMax = max = 10
|
|
// boundedGaussian(1, 10, 2) = round(1 + 0.5*(10 - 1 + 1)) = round(1 + 0.5*10) = round(1+5) = 6
|
|
|
|
// The loop ensures num is within [min, max], and since 6 is within [1,10], it returns 6 immediately.
|
|
const result = randomUtil.getBiasedRandomNumber(min, max, shift, n);
|
|
|
|
expect(result).toBe(6);
|
|
});
|
|
});
|
|
|
|
describe("shuffle", () => {
|
|
it("should shuffle the array", () => {
|
|
const array = [1, 2, 3, 4, 5];
|
|
const shuffled = randomUtil.shuffle([...array]);
|
|
|
|
expect(shuffled).toHaveLength(array.length);
|
|
expect(shuffled).not.toEqual(array);
|
|
expect(shuffled.sort()).toEqual(array.sort());
|
|
});
|
|
|
|
it("should handle empty arrays", () => {
|
|
const array: any[] = [];
|
|
const shuffled = randomUtil.shuffle(array);
|
|
|
|
expect(shuffled).toEqual([]);
|
|
});
|
|
|
|
it("should return the same array when array length is 1", () => {
|
|
const array = [1];
|
|
const shuffled = randomUtil.shuffle(array);
|
|
|
|
expect(shuffled).toEqual([1]);
|
|
});
|
|
});
|
|
|
|
describe("rollForChanceProbability", () => {
|
|
it("should return true when rolled chance is less than or equal to probabilityChance", () => {
|
|
vi.spyOn(randomUtil as any, "getSecureRandomNumber").mockReturnValue(0.5);
|
|
|
|
const probabilityChance = 0.6;
|
|
const result = randomUtil.rollForChanceProbability(probabilityChance);
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
it("should return false when rolled chance is greater than probabilityChance", () => {
|
|
vi.spyOn(randomUtil as any, "getSecureRandomNumber").mockReturnValue(0.7);
|
|
|
|
const probabilityChance = 0.6;
|
|
const result = randomUtil.rollForChanceProbability(probabilityChance);
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
it("should handle probabilityChance of 0", () => {
|
|
vi.spyOn(randomUtil as any, "getSecureRandomNumber").mockReturnValue(0.1);
|
|
|
|
const probabilityChance = 0;
|
|
const result = randomUtil.rollForChanceProbability(probabilityChance);
|
|
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
it("should handle probabilityChance of 1", () => {
|
|
vi.spyOn(randomUtil as any, "getSecureRandomNumber").mockReturnValue(0.99);
|
|
|
|
const probabilityChance = 1;
|
|
const result = randomUtil.rollForChanceProbability(probabilityChance);
|
|
|
|
expect(result).toBe(true);
|
|
});
|
|
});
|
|
});
|