0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-24 02:37:28 +01:00
uptime-kuma/test/backend.spec.js

38 lines
877 B
JavaScript
Raw Normal View History

2021-10-13 16:16:46 +02:00
const { genSecret } = require("../src/util");
2021-10-12 20:53:59 +02:00
beforeAll(() => {
});
2021-10-13 16:16:46 +02:00
describe("Test genSecret", () => {
it("should be correct length", () => {
let secret = genSecret(-1);
expect(secret).toEqual("");
secret = genSecret(0);
expect(secret).toEqual("");
secret = genSecret(1);
expect(secret.length).toEqual(1);
2021-10-12 20:53:59 +02:00
2021-10-13 16:16:46 +02:00
secret = genSecret(2);
expect(secret.length).toEqual(2);
secret = genSecret(64);
expect(secret.length).toEqual(64);
secret = genSecret(9000);
expect(secret.length).toEqual(9000);
secret = genSecret(90000);
expect(secret.length).toEqual(90000);
});
2021-10-12 20:53:59 +02:00
2021-10-13 16:16:46 +02:00
it("should contain first and last possible chars", () => {
let secret = genSecret(90000);
expect(secret).toContain("A");
expect(secret).toContain("9");
2021-10-12 20:53:59 +02:00
});
});