mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
feat: Add missing password validation at signup (#4441)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
This commit is contained in:
@@ -1,7 +1,24 @@
|
||||
import { shouldBeUrl } from '../Validators';
|
||||
import { isValidPassword } from '../Validators';
|
||||
|
||||
describe('#shouldBeUrl', () => {
|
||||
it('should return correct url', () => {
|
||||
expect(shouldBeUrl('http')).toEqual(true);
|
||||
});
|
||||
});
|
||||
|
||||
describe('#isValidPassword', () => {
|
||||
it('should return correct password', () => {
|
||||
expect(isValidPassword('testPass4!')).toEqual(true);
|
||||
expect(isValidPassword('testPass4-')).toEqual(true);
|
||||
expect(isValidPassword('testPass4\\')).toEqual(true);
|
||||
expect(isValidPassword("testPass4'")).toEqual(true);
|
||||
});
|
||||
|
||||
it('should return wrong password', () => {
|
||||
expect(isValidPassword('testpass4')).toEqual(false);
|
||||
expect(isValidPassword('testPass4')).toEqual(false);
|
||||
expect(isValidPassword('testpass4!')).toEqual(false);
|
||||
expect(isValidPassword('testPass!')).toEqual(false);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user