/* eslint-env mocha */ import assert from 'assert' import differenceInSeconds from '.' describe('differenceInSeconds', () => { it('returns the number of seconds between the given dates with `trunc` as a default rounding method', () => { const result = differenceInSeconds( new Date(2014, 6 /* Jul */, 2, 12, 30, 6, 29), new Date(2014, 6 /* Jul */, 2, 12, 30, 20, 28.777) ) assert(result === -13) }) it('returns the number of seconds between the given dates', () => { const result = differenceInSeconds( new Date(2014, 6 /* Jul */, 2, 12, 30, 20), new Date(2014, 6 /* Jul */, 2, 12, 30, 6) ) assert(result === 14) }) it('returns a negative number if the time value of the first date is smaller', () => { const result = differenceInSeconds( new Date(2014, 6 /* Jul */, 2, 12, 30, 6), new Date(2014, 6 /* Jul */, 2, 12, 30, 20) ) assert(result === -14) }) it('returns a 0, not a negative 0 - issue #2555 ', () => { const result = differenceInSeconds( new Date(2021, 6 /* Jul */, 22, 6, 1, 28.973), new Date(2021, 6 /* Jul */, 22, 6, 1, 28.976) ) assert(result === 0) }) it('returns 1 with `round` passed in as a rounding method', () => { const result = differenceInSeconds( new Date(2021, 6 /* Jul */, 22, 6, 1, 29.973), new Date(2021, 6 /* Jul */, 22, 6, 1, 28.976), { roundingMethod: 'round' } ) assert(result === 1) }) it('returns a -1 with `round` passed in as a rounding method', () => { const result = differenceInSeconds( new Date(2021, 6 /* Jul */, 22, 6, 1, 27.976), new Date(2021, 6 /* Jul */, 22, 6, 1, 28.973), { roundingMethod: 'round' } ) assert(result === -1) }) it('returns a -2 with `ceil` passed in as a rounding method', () => { const result = differenceInSeconds( new Date(2021, 6 /* Jul */, 22, 6, 1, 27.976), new Date(2021, 6 /* Jul */, 22, 6, 1, 29.973), { roundingMethod: 'ceil' } ) assert(result === -2) }) it('returns a 2 with `ceil` passed in as a rounding method', () => { const result = differenceInSeconds( new Date(2021, 6 /* Jul */, 22, 6, 1, 29.973), new Date(2021, 6 /* Jul */, 22, 6, 1, 27.976), { roundingMethod: 'ceil' } ) assert(result === 2) }) it('accepts timestamps', () => { const result = differenceInSeconds( new Date(2014, 8 /* Sep */, 5, 18, 30, 45).getTime(), new Date(2014, 8 /* Sep */, 5, 18, 30, 15).getTime() ) assert(result === 30) }) describe('edge cases', () => { it('the difference is less than a second, but the given dates are in different calendar seconds', () => { const result = differenceInSeconds( new Date(2014, 8 /* Sep */, 5, 12, 30, 12), new Date(2014, 8 /* Sep */, 5, 12, 30, 11, 999) ) assert(result === 0) }) it('the same for the swapped dates but a different result as a resulf of the default rounding method `trunc`', () => { const result = differenceInSeconds( new Date(2014, 8 /* Sep */, 5, 12, 30, 11, 999), new Date(2014, 8 /* Sep */, 5, 12, 30, 12) ) assert(result === 0) }) it('the difference is an integral number of seconds', () => { const result = differenceInSeconds( new Date(2014, 8 /* Sep */, 5, 12, 30, 25), new Date(2014, 8 /* Sep */, 5, 12, 30, 15) ) assert(result === 10) }) it('the given dates are the same', () => { const result = differenceInSeconds( new Date(2014, 8 /* Sep */, 5, 0, 0), new Date(2014, 8 /* Sep */, 5, 0, 0) ) assert(result === 0) }) it('does not return -0 when the given dates are the same', () => { function isNegativeZero(x: number): boolean { return x === 0 && 1 / x < 0 } const result = differenceInSeconds( new Date(2014, 8 /* Sep */, 5, 0, 0), new Date(2014, 8 /* Sep */, 5, 0, 0) ) const resultIsNegative = isNegativeZero(result) assert(resultIsNegative === false) }) }) it('returns NaN if the first date is `Invalid Date`', () => { const result = differenceInSeconds( new Date(NaN), new Date(2017, 0 /* Jan */, 1) ) assert(isNaN(result)) }) it('returns NaN if the second date is `Invalid Date`', () => { const result = differenceInSeconds( new Date(2017, 0 /* Jan */, 1), new Date(NaN) ) assert(isNaN(result)) }) it('returns NaN if the both dates are `Invalid Date`', () => { const result = differenceInSeconds(new Date(NaN), new Date(NaN)) assert(isNaN(result)) }) it('throws TypeError exception if passed less than 2 arguments', () => { // @ts-expect-error assert.throws(differenceInSeconds.bind(null), TypeError) // @ts-expect-error assert.throws(differenceInSeconds.bind(null, 1), TypeError) }) })