mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00
36 lines
1.8 KiB
TypeScript
36 lines
1.8 KiB
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import { checkPasswordRule } from '@fastgpt/global/common/string/password';
|
|
|
|
describe('PasswordRule', () => {
|
|
it('should be a valid password', () => {
|
|
// Small password
|
|
expect(checkPasswordRule('123ABC')).toBe(false);
|
|
expect(checkPasswordRule('@ga2123')).toBe(false);
|
|
|
|
// Test single type characters
|
|
expect(checkPasswordRule('123456')).toBe(false);
|
|
expect(checkPasswordRule('abcdef')).toBe(false); // only lowercase
|
|
expect(checkPasswordRule('ABCDEF')).toBe(false); // only uppercase
|
|
expect(checkPasswordRule('!@#$%^')).toBe(false); // only special chars
|
|
|
|
// Test two types combination
|
|
expect(checkPasswordRule('abcd1234')).toBe(true); // lowercase + numbers
|
|
expect(checkPasswordRule('abcdABCD')).toBe(true); // lowercase + uppercase
|
|
expect(checkPasswordRule('abcd!@#$')).toBe(true); // lowercase + special chars
|
|
expect(checkPasswordRule('ABCD!@#$')).toBe(true); // uppercase + special chars
|
|
expect(checkPasswordRule('ABCD1234')).toBe(true); // uppercase + numbers
|
|
expect(checkPasswordRule('1234!@#$')).toBe(true); // numbers + special chars
|
|
expect(checkPasswordRule('!@123fab')).toBe(true); // numbers + special chars
|
|
expect(checkPasswordRule('+2222()222')).toBe(true); // special chars + numbers
|
|
expect(checkPasswordRule('_2222()-+=22')).toBe(true); // special chars + numbers
|
|
|
|
// Test three types combination
|
|
expect(checkPasswordRule('abcABC123')).toBe(true); // lower + upper + numbers
|
|
expect(checkPasswordRule('abc123!@#')).toBe(true); // lower + numbers + special
|
|
expect(checkPasswordRule('abc!@#123')).toBe(true); // lower + special + numbers
|
|
|
|
// Test all four types
|
|
expect(checkPasswordRule('abcABC123!@#')).toBe(true); // all types
|
|
});
|
|
});
|