2016-09-13 19:22:27 +00:00
|
|
|
import assert from 'assert';
|
2016-09-01 16:28:39 +00:00
|
|
|
|
|
|
|
import {
|
|
|
|
default as cleanDatePublished,
|
|
|
|
cleanDateString,
|
2016-09-13 19:22:27 +00:00
|
|
|
} from './date-published';
|
2016-09-01 16:28:39 +00:00
|
|
|
|
|
|
|
describe('cleanDatePublished(dateString)', () => {
|
|
|
|
it('returns a date object', () => {
|
2016-09-13 19:22:27 +00:00
|
|
|
const datePublished = cleanDatePublished('published: 1/1/2020');
|
2016-09-01 16:28:39 +00:00
|
|
|
|
|
|
|
assert.equal(
|
2016-09-08 23:29:57 +00:00
|
|
|
datePublished,
|
2016-09-01 16:28:39 +00:00
|
|
|
new Date('1/1/2020').toISOString()
|
2016-09-13 19:22:27 +00:00
|
|
|
);
|
|
|
|
});
|
2016-09-01 16:28:39 +00:00
|
|
|
|
|
|
|
it('returns null if date is invalid', () => {
|
2016-09-13 19:22:27 +00:00
|
|
|
const datePublished = cleanDatePublished('blargh');
|
2016-09-01 16:28:39 +00:00
|
|
|
|
2016-09-13 19:22:27 +00:00
|
|
|
assert.equal(datePublished, null);
|
|
|
|
});
|
|
|
|
});
|
2016-09-01 16:28:39 +00:00
|
|
|
|
|
|
|
describe('cleanDateString(dateString)', () => {
|
|
|
|
it('removes "published" text from an datePublished string', () => {
|
2016-09-13 19:22:27 +00:00
|
|
|
const datePublished = cleanDateString('published: 1/1/2020');
|
2016-09-01 16:28:39 +00:00
|
|
|
|
2016-09-13 19:22:27 +00:00
|
|
|
assert.equal(datePublished, '1/1/2020');
|
|
|
|
});
|
2016-09-01 16:28:39 +00:00
|
|
|
|
|
|
|
it('trims whitespace', () => {
|
2016-09-13 19:22:27 +00:00
|
|
|
const datePublished = cleanDateString(' 1/1/2020 ');
|
2016-09-01 16:28:39 +00:00
|
|
|
|
2016-09-13 19:22:27 +00:00
|
|
|
assert.equal(datePublished, '1/1/2020');
|
|
|
|
});
|
2016-09-01 16:28:39 +00:00
|
|
|
|
|
|
|
it('puts a space b/w a time and am/pm', () => {
|
|
|
|
// The JS date parser is forgiving, but
|
|
|
|
// it needs am/pm separated from a time
|
2016-09-13 19:22:27 +00:00
|
|
|
const date1 = cleanDateString('1/1/2020 8:30am');
|
|
|
|
assert.equal(date1, '1/1/2020 8:30 am');
|
2016-09-01 16:28:39 +00:00
|
|
|
|
2016-09-13 19:22:27 +00:00
|
|
|
const date2 = cleanDateString('8:30PM 1/1/2020');
|
|
|
|
assert.equal(date2, '8:30 PM 1/1/2020');
|
|
|
|
});
|
2016-09-01 16:28:39 +00:00
|
|
|
|
2016-09-09 13:58:27 +00:00
|
|
|
it('cleans the dots from a.m. or p.m.', () => {
|
|
|
|
// The JS date parser is forgiving, but
|
|
|
|
// it needs a.m./p.m. without dots
|
2016-09-13 19:22:27 +00:00
|
|
|
const date1 = cleanDateString('1/1/2020 8:30 a.m.');
|
|
|
|
assert.equal(date1, '1/1/2020 8:30 am');
|
|
|
|
});
|
2016-09-09 13:58:27 +00:00
|
|
|
|
2016-09-08 23:29:57 +00:00
|
|
|
it('can handle some tough timestamps', () => {
|
|
|
|
// The JS date parser is forgiving, but
|
|
|
|
// it needs am/pm separated from a time
|
2016-09-13 19:22:27 +00:00
|
|
|
const date1 = cleanDateString('This page was last modified on 15 April 2016, at 10:59.');
|
|
|
|
assert.equal(date1, '15 Apr 2016 10:59');
|
|
|
|
});
|
|
|
|
});
|