2021-08-22 20:16:04 +02:00
|
|
|
import { assert, expect } from 'chai'
|
|
|
|
|
2021-09-22 10:39:25 +02:00
|
|
|
import {
|
|
|
|
getCalendarStartAndEnd,
|
|
|
|
incrementDate,
|
2021-10-23 15:44:25 +02:00
|
|
|
getStartDate,
|
2021-09-22 10:39:25 +02:00
|
|
|
formatWorkoutDate,
|
|
|
|
} from '@/utils/dates'
|
2021-08-22 20:16:04 +02:00
|
|
|
|
|
|
|
describe('startDate (week starting Sunday)', () => {
|
|
|
|
const testsParams = [
|
|
|
|
{
|
|
|
|
description: "returns start day for 'month' duration",
|
|
|
|
inputDuration: 'month',
|
|
|
|
inputDate: 'August 21, 2021 20:00:00',
|
|
|
|
expectedDate: 'August 1, 2021 00:00:00',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "returns start day for 'week' duration",
|
|
|
|
inputDuration: 'week',
|
|
|
|
inputDate: 'August 21, 2021 20:00:00',
|
|
|
|
expectedDate: 'August 15, 2021 00:00:00',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "returns start day for 'year' duration",
|
|
|
|
inputDuration: 'year',
|
|
|
|
inputDate: 'August 21, 2021 20:00:00',
|
|
|
|
expectedDate: 'January 1, 2021 00:00:00',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
testsParams.map((testParams) =>
|
|
|
|
it(testParams.description, () => {
|
|
|
|
const day: Date = new Date(testParams.inputDate)
|
|
|
|
const expected: Date = new Date(testParams.expectedDate)
|
|
|
|
assert.deepEqual(
|
2021-10-23 15:44:25 +02:00
|
|
|
getStartDate(testParams.inputDuration, day, false),
|
2021-08-22 20:16:04 +02:00
|
|
|
expected
|
|
|
|
)
|
|
|
|
})
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('startDate (week starting Monday)', () => {
|
|
|
|
const testsParams = [
|
|
|
|
{
|
|
|
|
description: "returns start day for 'month' duration",
|
|
|
|
inputDuration: 'month',
|
|
|
|
inputDate: 'August 21, 2021 20:00:00',
|
|
|
|
expectedDate: 'August 1, 2021 00:00:00',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: 'returns start day for week duration',
|
|
|
|
inputDuration: 'week',
|
|
|
|
inputDate: 'August 21, 2021 20:00:00',
|
|
|
|
expectedDate: 'August 16, 2021 00:00:00',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "returns start day for 'year' duration",
|
|
|
|
inputDuration: 'year',
|
|
|
|
inputDate: 'August 21, 2021 20:00:00',
|
|
|
|
expectedDate: 'January 1, 2021 00:00:00',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
testsParams.map((testParams) =>
|
|
|
|
it(testParams.description, () => {
|
|
|
|
const day: Date = new Date(testParams.inputDate)
|
|
|
|
const expected: Date = new Date(testParams.expectedDate)
|
2021-10-23 15:44:25 +02:00
|
|
|
assert.deepEqual(
|
|
|
|
getStartDate(testParams.inputDuration, day, true),
|
|
|
|
expected
|
|
|
|
)
|
2021-08-22 20:16:04 +02:00
|
|
|
})
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('startDate (week starting Monday)', () => {
|
|
|
|
it('it throws an exception if duration is invalid', () => {
|
|
|
|
const day: Date = new Date('August 21, 2021 20:00:00')
|
2021-10-23 15:44:25 +02:00
|
|
|
expect(() => getStartDate('invalid duration', day, true)).to.throw(
|
2021-08-22 20:16:04 +02:00
|
|
|
'Invalid duration, expected: "week", "month", "year", got: "invalid duration"'
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('dateIncrement', () => {
|
|
|
|
const testsParams = [
|
|
|
|
{
|
|
|
|
description: "returns incremented day for 'month' duration",
|
|
|
|
inputDuration: 'month',
|
|
|
|
inputDate: 'August 21, 2021 20:00:00',
|
|
|
|
expectedDate: 'September 21, 2021 20:00:00',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: 'returns incremented day for week duration',
|
|
|
|
inputDuration: 'week',
|
|
|
|
inputDate: 'August 21, 2021 20:00:00',
|
|
|
|
expectedDate: 'August 28, 2021 20:00:00',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description:
|
|
|
|
'returns incremented day for week duration (February w/ 28 days)',
|
|
|
|
inputDuration: 'week',
|
|
|
|
inputDate: 'February 22, 2021 20:00:00',
|
|
|
|
expectedDate: 'March 1, 2021 20:00:00',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description:
|
|
|
|
'returns incremented day for week duration (February w/ 29 days)',
|
|
|
|
inputDuration: 'week',
|
|
|
|
inputDate: 'February 22, 2020 20:00:00',
|
|
|
|
expectedDate: 'February 29, 2020 20:00:00',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "returns incremented day for 'year' duration",
|
|
|
|
inputDuration: 'year',
|
|
|
|
inputDate: 'August 21, 2021 20:00:00',
|
|
|
|
expectedDate: 'August 21, 2022 20:00:00',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "returns incremented day for 'year' duration (February, 29)",
|
|
|
|
inputDuration: 'year',
|
|
|
|
inputDate: 'February 29, 2020 20:00:00',
|
|
|
|
expectedDate: 'February 28, 2021 20:00:00',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
testsParams.map((testParams) =>
|
|
|
|
it(testParams.description, () => {
|
|
|
|
const day: Date = new Date(testParams.inputDate)
|
|
|
|
const expected: Date = new Date(testParams.expectedDate)
|
|
|
|
assert.deepEqual(incrementDate(testParams.inputDuration, day), expected)
|
|
|
|
})
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('dateIncrement', () => {
|
|
|
|
it('it throws an exception if duration is invalid', () => {
|
|
|
|
const day: Date = new Date('August 21, 2021 20:00:00')
|
|
|
|
expect(() => incrementDate('invalid duration', day)).to.throw(
|
|
|
|
'Invalid duration, expected: "week", "month", "year", got: "invalid duration"'
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
2021-09-05 17:43:14 +02:00
|
|
|
|
|
|
|
describe('getCalendarStartAndEnd', () => {
|
|
|
|
const testsParams = [
|
|
|
|
{
|
2021-10-01 17:40:58 +02:00
|
|
|
description: 'returns start and end dates for calendar',
|
2021-09-05 17:43:14 +02:00
|
|
|
inputDate: 'September 5, 2021 20:00:00',
|
2021-10-01 17:40:58 +02:00
|
|
|
inputWeekStartingMonday: false,
|
2021-09-05 17:43:14 +02:00
|
|
|
expectedStartDate: 'August 29, 2021 00:00:00',
|
|
|
|
expectedEndDate: 'October 2, 2021 23:59:59.999',
|
|
|
|
},
|
2021-10-01 17:40:58 +02:00
|
|
|
{
|
|
|
|
description:
|
|
|
|
'returns start and end dates for calendar when week starts on Monday',
|
|
|
|
inputDate: 'April 1, 2021 20:00:00',
|
|
|
|
inputWeekStartingMonday: true,
|
|
|
|
expectedStartDate: 'March 29, 2021 00:00:00',
|
|
|
|
expectedEndDate: 'May 2, 2021 23:59:59.999',
|
|
|
|
},
|
2021-09-05 17:43:14 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
testsParams.map((testParams) =>
|
|
|
|
it(testParams.description, () => {
|
|
|
|
const date: Date = new Date(testParams.inputDate)
|
2021-10-01 17:40:58 +02:00
|
|
|
const results = getCalendarStartAndEnd(
|
|
|
|
date,
|
|
|
|
testParams.inputWeekStartingMonday
|
|
|
|
)
|
2021-09-05 17:43:14 +02:00
|
|
|
assert.deepEqual(results.start, new Date(testParams.expectedStartDate))
|
|
|
|
assert.deepEqual(results.end, new Date(testParams.expectedEndDate))
|
|
|
|
})
|
|
|
|
)
|
|
|
|
})
|
2021-09-22 10:39:25 +02:00
|
|
|
|
|
|
|
describe('formatWorkoutDate', () => {
|
|
|
|
const testsParams = [
|
|
|
|
{
|
|
|
|
description: 'returns date and time with default format',
|
|
|
|
inputParams: {
|
|
|
|
date: new Date('August 21, 2021 20:00:00'),
|
|
|
|
dateFormat: null,
|
|
|
|
timeFormat: null,
|
|
|
|
},
|
|
|
|
expected: {
|
|
|
|
workout_date: '2021/08/21',
|
|
|
|
workout_time: '20:00',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: 'returns date and time with provided date format',
|
|
|
|
inputParams: {
|
|
|
|
date: new Date('August 21, 2021 20:00:00'),
|
|
|
|
dateFormat: 'dd MM yyyy',
|
|
|
|
timeFormat: null,
|
|
|
|
},
|
|
|
|
expected: {
|
|
|
|
workout_date: '21 08 2021',
|
|
|
|
workout_time: '20:00',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: 'returns date and time with provided time format',
|
|
|
|
inputParams: {
|
|
|
|
date: new Date('August 21, 2021 20:00:00'),
|
|
|
|
dateFormat: null,
|
|
|
|
timeFormat: 'HH:mm:ss',
|
|
|
|
},
|
|
|
|
expected: {
|
|
|
|
workout_date: '2021/08/21',
|
|
|
|
workout_time: '20:00:00',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: 'returns date and time with provided date and time formats',
|
|
|
|
inputParams: {
|
|
|
|
date: new Date('August 21, 2021 20:00:00'),
|
|
|
|
dateFormat: 'dd-MM-yyyy',
|
|
|
|
timeFormat: 'HH:mm:ss',
|
|
|
|
},
|
|
|
|
expected: {
|
|
|
|
workout_date: '21-08-2021',
|
|
|
|
workout_time: '20:00:00',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]
|
|
|
|
testsParams.map((testParams) => {
|
|
|
|
it(testParams.description, () => {
|
|
|
|
assert.deepEqual(
|
|
|
|
formatWorkoutDate(
|
|
|
|
testParams.inputParams.date,
|
|
|
|
testParams.inputParams.dateFormat,
|
|
|
|
testParams.inputParams.timeFormat
|
|
|
|
),
|
|
|
|
testParams.expected
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|