mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-03-13 10:30:18 +08:00
37 lines
1.8 KiB
JavaScript
37 lines
1.8 KiB
JavaScript
const utils = require('../../lib/utils/common-utils');
|
|
|
|
describe('common-utils', () => {
|
|
it('toTitleCase', () => {
|
|
expect(utils.toTitleCase('RSSHub IS AS aweSOme aS henry')).toBe('Rsshub Is as Awesome as Henry');
|
|
});
|
|
|
|
it('convertDateToISO8601', () => {
|
|
expect(utils.convertDateToISO8601('')).toBe('');
|
|
expect(utils.convertDateToISO8601(null)).toBe(null);
|
|
expect(utils.convertDateToISO8601(undefined)).toBe(undefined);
|
|
|
|
const date = new Date('2019-01-01');
|
|
const expected = date.toISOString();
|
|
expect(utils.convertDateToISO8601(date)).toBe(expected);
|
|
expect(utils.convertDateToISO8601(date.toISOString())).toBe(expected);
|
|
expect(utils.convertDateToISO8601(date.toUTCString())).toBe(expected);
|
|
expect(utils.convertDateToISO8601(date.toLocaleString())).toBe(expected);
|
|
expect(utils.convertDateToISO8601('Tue, 01 Jan 2019 08:00:00 UTC+8')).toBe(expected);
|
|
|
|
expect(utils.convertDateToISO8601('Tue, 01 Jan 2019 00:00:00')).toBe(new Date(date.getTime() + new Date().getTimezoneOffset() * 60 * 1000).toISOString());
|
|
// need to pass a function in order to use `toThrow`
|
|
expect(() => {
|
|
utils.convertDateToISO8601('something invalid');
|
|
}).toThrow(RangeError);
|
|
});
|
|
|
|
it('collapseWhitespace', () => {
|
|
expect(utils.collapseWhitespace('')).toBe('');
|
|
expect(utils.collapseWhitespace(null)).toBe(null);
|
|
expect(utils.collapseWhitespace(undefined)).toBe(undefined);
|
|
expect(utils.collapseWhitespace(' \n\n\n ')).toBe('');
|
|
expect(utils.collapseWhitespace('a string already collapsed')).toBe('a string already collapsed');
|
|
expect(utils.collapseWhitespace(' \n a lot of whitespaces and \n\n\n\n linebreaks \n\n ')).toBe('a lot of whitespaces and linebreaks');
|
|
});
|
|
});
|