summaryrefslogtreecommitdiff
path: root/date-fns/src/subISOWeekYears/test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'date-fns/src/subISOWeekYears/test.ts')
-rw-r--r--date-fns/src/subISOWeekYears/test.ts62
1 files changed, 62 insertions, 0 deletions
diff --git a/date-fns/src/subISOWeekYears/test.ts b/date-fns/src/subISOWeekYears/test.ts
new file mode 100644
index 0000000..dbb4213
--- /dev/null
+++ b/date-fns/src/subISOWeekYears/test.ts
@@ -0,0 +1,62 @@
+// @flow
+/* eslint-env mocha */
+
+import assert from 'power-assert'
+import subISOWeekYears from '.'
+
+describe('subISOWeekYears', function() {
+ it('subtracts the given number of ISO week-numbering years', function() {
+ const result = subISOWeekYears(new Date(2014, 8 /* Sep */, 1), 5)
+ assert.deepEqual(result, new Date(2009, 7 /* Aug */, 31))
+ })
+
+ it('accepts a timestamp', function() {
+ const result = subISOWeekYears(new Date(2014, 8 /* Sep */, 1).getTime(), 12)
+ assert.deepEqual(result, new Date(2002, 8 /* Sep */, 2))
+ })
+
+ it('converts a fractional number to an integer', function() {
+ const result = subISOWeekYears(new Date(2014, 8 /* Sep */, 1), 5.555)
+ assert.deepEqual(result, new Date(2009, 7 /* Aug */, 31))
+ })
+
+ it('implicitly converts number arguments', function() {
+ // $ExpectedMistake
+ const result = subISOWeekYears(new Date(2014, 8 /* Sep */, 1), '5')
+ assert.deepEqual(result, new Date(2009, 7 /* Aug */, 31))
+ })
+
+ it('does not mutate the original date', function() {
+ const date = new Date(2014, 8 /* Sep */, 1)
+ subISOWeekYears(date, 12)
+ assert.deepEqual(date, new Date(2014, 8 /* Sep */, 1))
+ })
+
+ it('handles dates before 100 AD', function() {
+ const initialDate = new Date(0)
+ initialDate.setFullYear(15, 5 /* Jun */, 26)
+ initialDate.setHours(0, 0, 0, 0)
+ const expectedResult = new Date(0)
+ expectedResult.setFullYear(10, 6 /* Jul */, 2)
+ expectedResult.setHours(0, 0, 0, 0)
+ const result = subISOWeekYears(initialDate, 5)
+ assert.deepEqual(result, expectedResult)
+ })
+
+ it('returns `Invalid Date` if the given date is invalid', function() {
+ const result = subISOWeekYears(new Date(NaN), 5)
+ // @ts-expect-error
+ assert(result instanceof Date && isNaN(result))
+ })
+
+ it('returns `Invalid Date` if the given amount is NaN', function() {
+ const result = subISOWeekYears(new Date(2014, 8 /* Sep */, 1), NaN)
+ // @ts-expect-error
+ assert(result instanceof Date && isNaN(result))
+ })
+
+ it('throws TypeError exception if passed less than 2 arguments', function() {
+ assert.throws(subISOWeekYears.bind(null), TypeError)
+ assert.throws(subISOWeekYears.bind(null, 1), TypeError)
+ })
+})