1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2025-01-26 03:52:28 +02:00
uptime-kuma/test/backend.spec.js

45 lines
1.0 KiB
JavaScript
Raw Normal View History

2021-10-16 01:33:44 +08:00
const { genSecret, sleep } = require("../src/util");
2021-10-13 22:16:46 +08:00
2021-10-16 01:33:44 +08:00
describe("Test genSecret", () => {
2021-10-13 02:53:59 +08:00
2021-10-16 01:33:44 +08:00
beforeAll(() => {
2021-10-13 02:53:59 +08:00
2021-10-16 01:33:44 +08:00
});
2021-10-13 22:16:46 +08:00
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-13 02:53:59 +08:00
2021-10-13 22:16:46 +08: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-13 02:53:59 +08:00
2021-10-13 22:16:46 +08:00
it("should contain first and last possible chars", () => {
let secret = genSecret(90000);
expect(secret).toContain("A");
expect(secret).toContain("9");
2021-10-13 02:53:59 +08:00
});
2021-10-16 01:33:44 +08:00
});
describe("Test reset-password", () => {
it("should able to run", async () => {
await require("../extra/reset-password").main();
2021-10-16 14:54:45 +08:00
}, 120000);
2021-10-13 02:53:59 +08:00
});