2021-04-08 04:41:57 -06:00
|
|
|
import {
|
2023-08-30 20:46:44 -06:00
|
|
|
basename, extname, isObject, stripTags, parseIssueHref,
|
2023-04-03 10:58:09 -06:00
|
|
|
parseUrl, translateMonth, translateDay, blobToDataURI,
|
2024-06-27 03:31:49 -06:00
|
|
|
toAbsoluteUrl, encodeURLEncodedBase64, decodeURLEncodedBase64, isImageFile, isVideoFile,
|
2024-07-07 09:32:30 -06:00
|
|
|
} from './utils.ts';
|
2021-04-08 04:41:57 -06:00
|
|
|
|
|
|
|
test('basename', () => {
|
|
|
|
expect(basename('/path/to/file.js')).toEqual('file.js');
|
|
|
|
expect(basename('/path/to/file')).toEqual('file');
|
|
|
|
expect(basename('file.js')).toEqual('file.js');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('extname', () => {
|
|
|
|
expect(extname('/path/to/file.js')).toEqual('.js');
|
|
|
|
expect(extname('/path/')).toEqual('');
|
|
|
|
expect(extname('/path')).toEqual('');
|
|
|
|
expect(extname('file.js')).toEqual('.js');
|
2024-06-27 03:31:49 -06:00
|
|
|
expect(extname('/my.path/file')).toEqual('');
|
2021-04-08 04:41:57 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
test('isObject', () => {
|
2022-10-14 07:36:16 -06:00
|
|
|
expect(isObject({})).toBeTruthy();
|
|
|
|
expect(isObject([])).toBeFalsy();
|
2021-04-08 04:41:57 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
test('stripTags', () => {
|
|
|
|
expect(stripTags('<a>test</a>')).toEqual('test');
|
|
|
|
});
|
2021-10-22 08:34:01 -06:00
|
|
|
|
|
|
|
test('parseIssueHref', () => {
|
|
|
|
expect(parseIssueHref('/owner/repo/issues/1')).toEqual({owner: 'owner', repo: 'repo', type: 'issues', index: '1'});
|
|
|
|
expect(parseIssueHref('/owner/repo/pulls/1?query')).toEqual({owner: 'owner', repo: 'repo', type: 'pulls', index: '1'});
|
|
|
|
expect(parseIssueHref('/owner/repo/issues/1#hash')).toEqual({owner: 'owner', repo: 'repo', type: 'issues', index: '1'});
|
|
|
|
expect(parseIssueHref('/sub/owner/repo/issues/1')).toEqual({owner: 'owner', repo: 'repo', type: 'issues', index: '1'});
|
|
|
|
expect(parseIssueHref('/sub/sub2/owner/repo/pulls/1')).toEqual({owner: 'owner', repo: 'repo', type: 'pulls', index: '1'});
|
|
|
|
expect(parseIssueHref('/sub/sub2/owner/repo/issues/1?query')).toEqual({owner: 'owner', repo: 'repo', type: 'issues', index: '1'});
|
|
|
|
expect(parseIssueHref('/sub/sub2/owner/repo/issues/1#hash')).toEqual({owner: 'owner', repo: 'repo', type: 'issues', index: '1'});
|
|
|
|
expect(parseIssueHref('https://example.com/owner/repo/issues/1')).toEqual({owner: 'owner', repo: 'repo', type: 'issues', index: '1'});
|
|
|
|
expect(parseIssueHref('https://example.com/owner/repo/pulls/1?query')).toEqual({owner: 'owner', repo: 'repo', type: 'pulls', index: '1'});
|
|
|
|
expect(parseIssueHref('https://example.com/owner/repo/issues/1#hash')).toEqual({owner: 'owner', repo: 'repo', type: 'issues', index: '1'});
|
|
|
|
expect(parseIssueHref('https://example.com/sub/owner/repo/issues/1')).toEqual({owner: 'owner', repo: 'repo', type: 'issues', index: '1'});
|
|
|
|
expect(parseIssueHref('https://example.com/sub/sub2/owner/repo/pulls/1')).toEqual({owner: 'owner', repo: 'repo', type: 'pulls', index: '1'});
|
|
|
|
expect(parseIssueHref('https://example.com/sub/sub2/owner/repo/issues/1?query')).toEqual({owner: 'owner', repo: 'repo', type: 'issues', index: '1'});
|
|
|
|
expect(parseIssueHref('https://example.com/sub/sub2/owner/repo/issues/1#hash')).toEqual({owner: 'owner', repo: 'repo', type: 'issues', index: '1'});
|
|
|
|
expect(parseIssueHref('')).toEqual({owner: undefined, repo: undefined, type: undefined, index: undefined});
|
|
|
|
});
|
2022-06-09 05:15:08 -06:00
|
|
|
|
2022-08-23 06:58:04 -06:00
|
|
|
test('parseUrl', () => {
|
|
|
|
expect(parseUrl('').pathname).toEqual('/');
|
|
|
|
expect(parseUrl('/path').pathname).toEqual('/path');
|
|
|
|
expect(parseUrl('/path?search').pathname).toEqual('/path');
|
|
|
|
expect(parseUrl('/path?search').search).toEqual('?search');
|
|
|
|
expect(parseUrl('/path?search#hash').hash).toEqual('#hash');
|
|
|
|
expect(parseUrl('https://localhost/path').pathname).toEqual('/path');
|
|
|
|
expect(parseUrl('https://localhost/path?search').pathname).toEqual('/path');
|
|
|
|
expect(parseUrl('https://localhost/path?search').search).toEqual('?search');
|
|
|
|
expect(parseUrl('https://localhost/path?search#hash').hash).toEqual('#hash');
|
|
|
|
});
|
2022-10-28 07:48:24 -06:00
|
|
|
|
|
|
|
test('translateMonth', () => {
|
|
|
|
const originalLang = document.documentElement.lang;
|
|
|
|
document.documentElement.lang = 'en-US';
|
|
|
|
expect(translateMonth(0)).toEqual('Jan');
|
|
|
|
expect(translateMonth(4)).toEqual('May');
|
|
|
|
document.documentElement.lang = 'es-ES';
|
|
|
|
expect(translateMonth(5)).toEqual('jun');
|
|
|
|
expect(translateMonth(6)).toEqual('jul');
|
|
|
|
document.documentElement.lang = originalLang;
|
|
|
|
});
|
|
|
|
|
|
|
|
test('translateDay', () => {
|
|
|
|
const originalLang = document.documentElement.lang;
|
|
|
|
document.documentElement.lang = 'fr-FR';
|
|
|
|
expect(translateDay(1)).toEqual('lun.');
|
|
|
|
expect(translateDay(5)).toEqual('ven.');
|
|
|
|
document.documentElement.lang = 'pl-PL';
|
|
|
|
expect(translateDay(1)).toEqual('pon.');
|
|
|
|
expect(translateDay(5)).toEqual('pt.');
|
|
|
|
document.documentElement.lang = originalLang;
|
|
|
|
});
|
2022-11-21 02:59:42 -07:00
|
|
|
|
|
|
|
test('blobToDataURI', async () => {
|
|
|
|
const blob = new Blob([JSON.stringify({test: true})], {type: 'application/json'});
|
|
|
|
expect(await blobToDataURI(blob)).toEqual('data:application/json;base64,eyJ0ZXN0Ijp0cnVlfQ==');
|
|
|
|
});
|
2023-02-06 11:09:18 -07:00
|
|
|
|
|
|
|
test('toAbsoluteUrl', () => {
|
2023-02-07 09:08:44 -07:00
|
|
|
expect(toAbsoluteUrl('//host/dir')).toEqual('http://host/dir');
|
|
|
|
expect(toAbsoluteUrl('https://host/dir')).toEqual('https://host/dir');
|
|
|
|
|
2023-02-06 11:09:18 -07:00
|
|
|
expect(toAbsoluteUrl('')).toEqual('http://localhost:3000');
|
|
|
|
expect(toAbsoluteUrl('/user/repo')).toEqual('http://localhost:3000/user/repo');
|
2023-02-07 09:08:44 -07:00
|
|
|
|
|
|
|
expect(() => toAbsoluteUrl('path')).toThrowError('unsupported');
|
2023-02-06 11:09:18 -07:00
|
|
|
});
|
2023-06-05 23:29:37 -06:00
|
|
|
|
|
|
|
test('encodeURLEncodedBase64, decodeURLEncodedBase64', () => {
|
2023-08-29 19:56:44 -06:00
|
|
|
// TextEncoder is Node.js API while Uint8Array is jsdom API and their outputs are not
|
|
|
|
// structurally comparable, so we convert to array to compare. The conversion can be
|
|
|
|
// removed once https://github.com/jsdom/jsdom/issues/2524 is resolved.
|
|
|
|
const encoder = new TextEncoder();
|
|
|
|
const uint8array = encoder.encode.bind(encoder);
|
|
|
|
|
2023-06-07 05:20:18 -06:00
|
|
|
expect(encodeURLEncodedBase64(uint8array('AA?'))).toEqual('QUE_'); // standard base64: "QUE/"
|
|
|
|
expect(encodeURLEncodedBase64(uint8array('AA~'))).toEqual('QUF-'); // standard base64: "QUF+"
|
|
|
|
|
2023-08-29 19:56:44 -06:00
|
|
|
expect(Array.from(decodeURLEncodedBase64('QUE/'))).toEqual(Array.from(uint8array('AA?')));
|
|
|
|
expect(Array.from(decodeURLEncodedBase64('QUF+'))).toEqual(Array.from(uint8array('AA~')));
|
|
|
|
expect(Array.from(decodeURLEncodedBase64('QUE_'))).toEqual(Array.from(uint8array('AA?')));
|
|
|
|
expect(Array.from(decodeURLEncodedBase64('QUF-'))).toEqual(Array.from(uint8array('AA~')));
|
2023-06-07 05:20:18 -06:00
|
|
|
|
|
|
|
expect(encodeURLEncodedBase64(uint8array('a'))).toEqual('YQ'); // standard base64: "YQ=="
|
2023-08-29 19:56:44 -06:00
|
|
|
expect(Array.from(decodeURLEncodedBase64('YQ'))).toEqual(Array.from(uint8array('a')));
|
|
|
|
expect(Array.from(decodeURLEncodedBase64('YQ=='))).toEqual(Array.from(uint8array('a')));
|
2023-06-05 23:29:37 -06:00
|
|
|
});
|
2024-06-27 03:31:49 -06:00
|
|
|
|
|
|
|
test('file detection', () => {
|
|
|
|
for (const name of ['a.jpg', '/a.jpeg', '.file.png', '.webp', 'file.svg']) {
|
|
|
|
expect(isImageFile({name})).toBeTruthy();
|
|
|
|
}
|
|
|
|
for (const name of ['', 'a.jpg.x', '/path.png/x', 'webp']) {
|
|
|
|
expect(isImageFile({name})).toBeFalsy();
|
|
|
|
}
|
|
|
|
for (const name of ['a.mpg', '/a.mpeg', '.file.mp4', '.webm', 'file.mkv']) {
|
|
|
|
expect(isVideoFile({name})).toBeTruthy();
|
|
|
|
}
|
|
|
|
for (const name of ['', 'a.mpg.x', '/path.mp4/x', 'webm']) {
|
|
|
|
expect(isVideoFile({name})).toBeFalsy();
|
|
|
|
}
|
|
|
|
});
|