Files
twenty/packages/twenty-front/src/utils/__tests__/utils.test.ts
Félix Malfait 042b6c65ed Change favicon/company enrichment urls (#9065)
We're moving favicon/telemetry/company enrichment to a separate url for
better security/monitoring
2024-12-13 18:41:57 +01:00

48 lines
1.5 KiB
TypeScript

import { getLogoUrlFromDomainName, sanitizeURL } from '..';
describe('sanitizeURL', () => {
test('should sanitize the URL correctly', () => {
expect(sanitizeURL('http://example.com/')).toBe('example.com');
expect(sanitizeURL('https://www.example.com/')).toBe('example.com');
expect(sanitizeURL('www.example.com')).toBe('example.com');
expect(sanitizeURL('example.com')).toBe('example.com');
expect(sanitizeURL('example.com/')).toBe('example.com');
});
test('should handle undefined input', () => {
expect(sanitizeURL(undefined)).toBe('');
});
});
describe('getLogoUrlFromDomainName', () => {
test('should return the correct logo URL for a given domain', () => {
expect(getLogoUrlFromDomainName('example.com')).toBe(
'https://twenty-icons.com/example.com',
);
expect(getLogoUrlFromDomainName('http://example.com/')).toBe(
'https://twenty-icons.com/example.com',
);
expect(getLogoUrlFromDomainName('https://www.example.com/')).toBe(
'https://twenty-icons.com/example.com',
);
expect(getLogoUrlFromDomainName('www.example.com')).toBe(
'https://twenty-icons.com/example.com',
);
expect(getLogoUrlFromDomainName('example.com/')).toBe(
'https://twenty-icons.com/example.com',
);
expect(getLogoUrlFromDomainName('apple.com')).toBe(
'https://twenty-icons.com/apple.com',
);
});
test('should handle undefined input', () => {
expect(getLogoUrlFromDomainName(undefined)).toBe(undefined);
});
});