summaryrefslogtreecommitdiff
path: root/date-fns/src/eachMinuteOfInterval/test.ts
blob: c4dab70e65f3f698c5d90d5e78f6dcb154e7dd16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// @flow
/* eslint-env mocha */

import assert from 'power-assert'

import eachMinuteOfInterval from '.'

describe('eachMinuteOfInterval', () => {
  it('should return an array of Date objects containing a Date for each minute between the interval', () => {
    const result = eachMinuteOfInterval({
      start: new Date(2020, 10, 14, 13, 0),
      end: new Date(2020, 10, 14, 13, 5)
    })

    assert.deepEqual(result, [
      new Date(2020, 10, 14, 13, 0),
      new Date(2020, 10, 14, 13, 1),
      new Date(2020, 10, 14, 13, 2),
      new Date(2020, 10, 14, 13, 3),
      new Date(2020, 10, 14, 13, 4),
      new Date(2020, 10, 14, 13, 5)
    ])
  })

  it('should handle all the minutes that are not in the begining', () => {
    const result = eachMinuteOfInterval({
      start: new Date(2020, 10, 14, 13, 0, 33),
      end: new Date(2020, 10, 14, 13, 2)
    })

    assert.deepEqual(result[0], new Date(2020, 10, 14, 13))
    assert.deepEqual(result[2], new Date(2020, 10, 14, 13, 2))
  })

  it('should accept timestamps', () => {
    const start = new Date(2020, 10, 14, 13, 0).getTime()
    const end = new Date(2020, 10, 14, 13, 2).getTime()

    const result = eachMinuteOfInterval({
      start,
      end
    })

    assert.deepEqual(result, [
      new Date(2020, 10, 14, 13, 0),
      new Date(2020, 10, 14, 13, 1),
      new Date(2020, 10, 14, 13, 2)
    ])
  })

  it('throws an exception if the start date is after the end date', () => {
    const block = eachMinuteOfInterval.bind(null, {
      start: new Date(2014, 10, 14, 10),
      end: new Date(2014, 10, 14, 5)
    })
    assert.throws(block, RangeError)
  })

  describe('options.step', () => {
    const interval = {
      start: new Date(2020, 9, 14, 13, 1),
      end: new Date(2020, 9, 14, 13, 7)
    }

    const stepError = /^RangeError: `options.step` must be a number equal or greater than 1$/

    it('returns an array with starts of hours from the hour of the start date to the hour of the end date with the given step', () => {
      const result = eachMinuteOfInterval(interval, { step: 3 })
      assert.deepEqual(result, [
        new Date(2020, 9, 14, 13, 1),
        new Date(2020, 9, 14, 13, 4),
        new Date(2020, 9, 14, 13, 7)
      ])
    })

    it('throws TypeError error if `options.step` is less than 1', () => {
      assert.throws(
        () => eachMinuteOfInterval(interval, { step: 0 }),
        stepError
      )
      assert.throws(
        () => eachMinuteOfInterval(interval, { step: -3 }),
        stepError
      )
    })

    it('throws TypeError error if `options.step` is NaN', () => {
      // $ExpectedMistake
      assert.throws(
        () => eachMinuteOfInterval(interval, { step: 'w' }),
        stepError
      )
      assert.throws(
        () => eachMinuteOfInterval(interval, { step: NaN }),
        stepError
      )
    })
  })
})