/* eslint-env mocha */ import assert from 'assert' import eachQuarterOfInterval from '.' describe('eachQuarterOfInterval', () => { it('returns an array with starts of quarters from the quarter of the start date to the quarter of the end date', () => { const result = eachQuarterOfInterval({ start: new Date(2014, 2 /* Mar */, 6), end: new Date(2014, 7 /* Aug */, 12), }) assert.deepStrictEqual(result, [ new Date(2014, 0 /* Jan */, 1), new Date(2014, 3 /* Apr */, 1), new Date(2014, 6 /* Jul */, 1), ]) }) it('accepts timestamps', () => { const result = eachQuarterOfInterval({ start: new Date(2014, 2 /* Mar */, 6).getTime(), end: new Date(2014, 7 /* Aug */, 12).getTime(), }) assert.deepStrictEqual(result, [ new Date(2014, 0 /* Jan */, 1), new Date(2014, 3 /* Apr */, 1), new Date(2014, 6 /* Jul */, 1), ]) }) it('handles the dates that are not starts of days', () => { const result = eachQuarterOfInterval({ start: new Date(2014, 2 /* Mar */, 6, 6, 35), end: new Date(2014, 7 /* Aug */, 12, 22, 15), }) assert.deepStrictEqual(result, [ new Date(2014, 0 /* Jan */, 1), new Date(2014, 3 /* Apr */, 1), new Date(2014, 6 /* Jul */, 1), ]) }) it('handles the dates that are not containing days', () => { const result = eachQuarterOfInterval({ start: new Date(2014, 2 /* Mar */), end: new Date(2014, 7 /* Oct */), }) assert.deepStrictEqual(result, [ new Date(2014, 0 /* Jan */, 1), new Date(2014, 3 /* Apr */, 1), new Date(2014, 6 /* Jul */, 1), ]) }) it('returns one quarter if the both arguments are on the same quarter', () => { const result = eachQuarterOfInterval({ start: new Date(2014, 0 /* Jan */, 6, 14), end: new Date(2014, 2 /* Feb */, 9, 15), }) assert.deepStrictEqual(result, [new Date(2014, 0 /* Jan */, 1)]) }) it('returns one quarter if the both arguments are the same', () => { const result = eachQuarterOfInterval({ start: new Date(2014, 9 /* Oct */, 6, 14), end: new Date(2014, 9 /* Oct */, 6, 14), }) assert.deepStrictEqual(result, [new Date(2014, 9 /* Oct */, 1)]) }) it('throws an exception if the start date is after the end date', () => { const block = eachQuarterOfInterval.bind(null, { start: new Date(2014, 9 /* Oct */, 12), end: new Date(2014, 9 /* Oct */, 6), }) assert.throws(block, RangeError) }) it('throws an exception if the start date is `Invalid Date`', () => { const block = eachQuarterOfInterval.bind(null, { start: new Date(NaN), end: new Date(2014, 9 /* Oct */, 6), }) assert.throws(block, RangeError) }) it('throws an exception if the end date is `Invalid Date`', () => { const block = eachQuarterOfInterval.bind(null, { start: new Date(2014, 9 /* Oct */, 12), end: new Date(NaN), }) assert.throws(block, RangeError) }) it('throws an exception if the interval is undefined', () => { const block = () => eachQuarterOfInterval( // @ts-expect-error undefined ) assert.throws(block, RangeError) }) it('throws TypeError exception if passed less than 1 argument', () => { // @ts-expect-error assert.throws(eachQuarterOfInterval.bind(null), TypeError) }) })