mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 12:18:02 +03:00
27 lines
722 B
TypeScript
27 lines
722 B
TypeScript
import { isValidUrl, isValidAccount } from '../utils/validators';
|
|
|
|
describe('test url validation', () => {
|
|
const validURL = 'https://example.com';
|
|
const invalidURL = 'example.jfks';
|
|
|
|
test('should succeed', () => {
|
|
expect(isValidUrl(validURL)).toBe(true);
|
|
});
|
|
|
|
test('should fail', () => {
|
|
expect(isValidUrl(invalidURL)).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe('test xmpp account validation', () => {
|
|
const validAccount = 'xmpp:something@test.biz';
|
|
const invalidAccount = 'something.invalid@something';
|
|
|
|
test('should succeed', () => {
|
|
expect(isValidAccount(validAccount, 'xmpp')).toBe(true);
|
|
});
|
|
|
|
test('should fail', () => {
|
|
expect(isValidAccount(invalidAccount, 'xmpp')).toBe(false);
|
|
});
|
|
});
|