a7211badc2
Change-Id: Ib52b7209bab3fc1cb2f713421ef6bac2125c5f04
61 lines
2.5 KiB
TypeScript
61 lines
2.5 KiB
TypeScript
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import { Validator } from '@/utils/validation';
|
|
|
|
describe('validation', (): void => {
|
|
it('password regex works correctly', (): void => {
|
|
const testString1 = 'test';
|
|
const testString2 = ' '.trim();
|
|
const testString3 = 'test %%%';
|
|
const testString4 = 'testtest';
|
|
const testString5 = 'test1233';
|
|
const testString6 = 'test1';
|
|
const testString7 = 'teSTt1123';
|
|
|
|
expect(Validator.password(testString1)).toBe(false);
|
|
expect(Validator.password(testString2)).toBe(false);
|
|
expect(Validator.password(testString3)).toBe(true);
|
|
expect(Validator.password(testString4)).toBe(true);
|
|
expect(Validator.password(testString5)).toBe(true);
|
|
expect(Validator.password(testString6)).toBe(false);
|
|
expect(Validator.password(testString7)).toBe(true);
|
|
});
|
|
|
|
it('email regex works correctly', () => {
|
|
const testString1 = 'test';
|
|
const testString2 = ' ';
|
|
const testString3 = 'test@';
|
|
const testString4 = 'test.test';
|
|
const testString5 = 'test1@23.3';
|
|
const testString6 = '';
|
|
const testString7 = '@teSTt.1123';
|
|
|
|
expect(Validator.email(testString1)).toBe(false);
|
|
expect(Validator.email(testString2)).toBe(false);
|
|
expect(Validator.email(testString3)).toBe(false);
|
|
expect(Validator.email(testString4)).toBe(false);
|
|
expect(Validator.email(testString5)).toBe(true);
|
|
expect(Validator.email(testString6)).toBe(false);
|
|
expect(Validator.email(testString7)).toBe(true);
|
|
});
|
|
|
|
it('anyCharactersButSlash regex works correctly', () => {
|
|
const testString1 = 'tGDFst/';
|
|
const testString2 = '/ ';
|
|
const testString3 = 'tes/t@';
|
|
const testString4 = 'test./test';
|
|
const testString5 = '3gGD!@#$%^&*()-=+.,';
|
|
const testString6 = ' /';
|
|
const testString7 = '/teSTt1123';
|
|
|
|
expect(Validator.anyCharactersButSlash(testString1)).toBe(false);
|
|
expect(Validator.anyCharactersButSlash(testString2)).toBe(false);
|
|
expect(Validator.anyCharactersButSlash(testString3)).toBe(false);
|
|
expect(Validator.anyCharactersButSlash(testString4)).toBe(false);
|
|
expect(Validator.anyCharactersButSlash(testString5)).toBe(true);
|
|
expect(Validator.anyCharactersButSlash(testString6)).toBe(false);
|
|
expect(Validator.anyCharactersButSlash(testString7)).toBe(false);
|
|
});
|
|
});
|