forked from mirrors/homebox
chore: cleanup (#27)
* implement password score UI and functions * update strings tests to use `test`instead of `it` * update typing * refactor login/register UI+Logic * fix width on switches to properly display * fetch and store self in store * (WIP) unify card styles * update labels page * bump nuxt * use form area * use text area for description * unify confirm API * unify UI around pages * change header background height
This commit is contained in:
parent
b34cb2bbeb
commit
2e82398e5c
24 changed files with 1313 additions and 1934 deletions
30
frontend/lib/passwords/index.test.ts
Normal file
30
frontend/lib/passwords/index.test.ts
Normal file
|
@ -0,0 +1,30 @@
|
|||
import { describe, test, expect } from "vitest";
|
||||
import { scorePassword } from ".";
|
||||
|
||||
describe("scorePassword tests", () => {
|
||||
test("flagged words should return negative number", () => {
|
||||
const flaggedWords = ["password", "homebox", "admin", "qwerty", "login"];
|
||||
|
||||
for (const word of flaggedWords) {
|
||||
expect(scorePassword(word)).toBe(0);
|
||||
}
|
||||
});
|
||||
|
||||
test("should return 0 for empty string", () => {
|
||||
expect(scorePassword("")).toBe(0);
|
||||
});
|
||||
|
||||
test("should return 0 for strings less than 6", () => {
|
||||
expect(scorePassword("12345")).toBe(0);
|
||||
});
|
||||
|
||||
test("should return positive number for long string", () => {
|
||||
const result = expect(scorePassword("123456"));
|
||||
result.toBeGreaterThan(0);
|
||||
result.toBeLessThan(31);
|
||||
});
|
||||
|
||||
test("should return max number for long string with all variations", () => {
|
||||
expect(scorePassword("3bYWcfYOwqxljqeOmQXTLlBwkrH6HV")).toBe(100);
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue