Moves out the tests for getCycleDayNumber and organises them

This commit is contained in:
Sofiya Tepikin
2020-03-03 22:13:53 +01:00
parent 9ce7dbf6b6
commit 0e0e00948f
2 changed files with 59 additions and 89 deletions
-89
View File
@@ -5,95 +5,6 @@ import cycleModule from '../lib/cycle'
const expect = chai.expect
chai.use(dirtyChai)
describe('getCycleDayNumber', () => {
it('works for a simple example', () => {
const cycleStarts = [{
date: '2018-05-09',
isCycleStart: true,
bleeding: {
value: 2
}
}, {
date: '2018-05-03',
isCycleStart: true,
bleeding: { value: 2 }
}]
const getCycleDayNumber = cycleModule({
cycleStartsSortedByDate: cycleStarts
}).getCycleDayNumber
const targetDate = '2018-05-17'
const result = getCycleDayNumber(targetDate)
expect(result).to.eql(9)
})
it('gets the correct number if the target day is not in the current cycle', () => {
const cycleStarts = [{
date: '2018-05-13',
isCycleStart: true,
bleeding: {
value: 2
}
}, {
date: '2018-04-10',
isCycleStart: true,
bleeding: { value: 2 }
}]
const targetDate = '2018-04-27'
const getCycleDayNumber = cycleModule({
cycleStartsSortedByDate: cycleStarts
}).getCycleDayNumber
const result = getCycleDayNumber(targetDate)
expect(result).to.eql(18)
})
it('gets the correct number if the target day is the only bleeding day', () => {
const cycleStarts = [{
date: '2018-05-13',
isCycleStart: true,
bleeding: { value: 2 }
}]
const targetDate = '2018-05-13'
const getCycleDayNumber = cycleModule({
cycleStartsSortedByDate: cycleStarts
}).getCycleDayNumber
const result = getCycleDayNumber(targetDate)
expect(result).to.eql(1)
})
it('returns null if there are no bleeding days', function () {
const cycleStarts = []
const targetDate = '2018-05-17'
const getCycleDayNumber = cycleModule({
cycleStartsSortedByDate: cycleStarts
}).getCycleDayNumber
const result = getCycleDayNumber(targetDate)
expect(result).to.be.null()
})
it('returns null if the cycle is longer than the max', function () {
const cycleStarts = [{
date: '2018-05-09',
isCycleStart: true,
bleeding: {
value: 2
}
}, {
date: '2018-05-03',
isCycleStart: true,
bleeding: { value: 2 }
}]
// we use the default 99 days max length
const getCycleDayNumber = cycleModule({
cycleStartsSortedByDate: cycleStarts
}).getCycleDayNumber
const targetDate = '2018-08-16'
const result = getCycleDayNumber(targetDate)
expect(result).to.be.null()
})
})
describe('getPreviousCycle', () => {
it('gets previous cycle', () => {
const cycleDaysSortedByDate = [