2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2019-01-11 10:26:18 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2020-06-02 15:08:20 +01:00
|
|
|
import { Validator } from '@/utils/validation';
|
2019-01-11 10:26:18 +00:00
|
|
|
|
2020-06-02 15:08:20 +01:00
|
|
|
describe('validation', (): void => {
|
|
|
|
it('email regex works correctly', () => {
|
2019-01-11 10:26:18 +00:00
|
|
|
const testString1 = 'test';
|
|
|
|
const testString2 = ' ';
|
|
|
|
const testString3 = 'test@';
|
|
|
|
const testString4 = 'test.test';
|
|
|
|
const testString5 = 'test1@23.3';
|
|
|
|
const testString6 = '';
|
|
|
|
const testString7 = '@teSTt.1123';
|
|
|
|
|
2020-06-02 15:08:20 +01:00
|
|
|
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);
|
|
|
|
});
|
2019-01-11 10:26:18 +00:00
|
|
|
});
|