THANASOFT-DV/calendar/tests/javascript/unit/fullcalendar/timezones/vtimezoneNamedTimezoneImpl.failing-test.js
2024-12-16 17:24:37 +03:00

167 lines
5.7 KiB
JavaScript

/**
* @copyright Copyright (c) 2019 Georg Ehrke
*
* @author Georg Ehrke <oc.list@georgehrke.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
// TODO - fix me later
// import {
// createPlugin,
// } from '@fullcalendar/core'
// import getTimezoneManager from '../../../../../src/services/timezoneDataProviderService.js'
// import '../../../../../src/fullcalendar/timezones/vtimezoneNamedTimezoneImpl.js'
// jest.mock('../../../../../src/services/timezoneDataProviderService.js')
// jest.mock('@fullcalendar/core')
//
//
// describe('fullcalendar/vtimezoneNamedTimezoneImpl test suite', () => {
//
// beforeEach(() => {
// getTimezoneManager.mockClear()
// })
//
// it('should properly register a plugin for full-calendar', () => {
// expect(createPlugin).toHaveBeenCalledTimes(1)
// expect(createPlugin).toHaveBeenNthCalledWith(1, {
// namedTimeZonedImpl: expect.any(Function)
// })
// })
//
// it('should properly implement the offsetForArray method', () => {
// const timezone = {
// calendarJsTimezone: true,
// tzid: 'America/New_York',
// offsetForArray: jest.fn().mockReturnValue(1337 * 60)
// }
//
// const getTimezoneForId = jest.fn()
// .mockReturnValue(timezone)
//
// getTimezoneManager
// .mockReturnValue({
// getTimezoneForId
// })
//
// const VTimezoneNamedTimezone = createPlugin.mock.calls[0][0].namedTimeZonedImpl
// const instance = new VTimezoneNamedTimezone('America/New_York')
// instance.timeZoneName = 'America/New_York'
//
// const result = instance.offsetForArray([2019, 0, 1, 14, 30, 0])
//
// expect(result).toEqual(1337)
//
// expect(getTimezoneForId).toHaveBeenCalledTimes(1)
// expect(getTimezoneForId).toHaveBeenNthCalledWith(1, 'America/New_York')
// expect(timezone.offsetForArray).toHaveBeenCalledTimes(1)
// expect(timezone.offsetForArray).toHaveBeenNthCalledWith(1, 2019, 1, 1, 14, 30, 0)
// })
//
// it('should properly implement the offsetForArray method - unknown timezone', () => {
// const timezone = {
// calendarJsTimezone: true,
// tzid: 'UTC',
// offsetForArray: jest.fn().mockReturnValue(1337 * 60)
// }
//
// const getTimezoneForId = jest.fn()
// .mockReturnValueOnce(null)
// .mockReturnValue(timezone)
//
// getTimezoneManager
// .mockReturnValue({
// getTimezoneForId
// })
//
// const VTimezoneNamedTimezone = createPlugin.mock.calls[0][0].namedTimeZonedImpl
// const instance = new VTimezoneNamedTimezone('America/New_York')
// instance.timeZoneName = 'America/New_York'
//
// const result = instance.offsetForArray([2019, 0, 1, 14, 30, 0])
//
// expect(result).toEqual(1337)
//
// expect(getTimezoneForId).toHaveBeenCalledTimes(2)
// expect(getTimezoneForId).toHaveBeenNthCalledWith(1, 'America/New_York')
// expect(getTimezoneForId).toHaveBeenNthCalledWith(2, 'UTC')
// expect(timezone.offsetForArray).toHaveBeenCalledTimes(1)
// expect(timezone.offsetForArray).toHaveBeenNthCalledWith(1, 2019, 1, 1, 14, 30, 0)
// })
//
// it('should properly implement the timestampToArray method', () => {
// const timezone = {
// calendarJsTimezone: true,
// tzid: 'America/New_York',
// timestampToArray: jest.fn().mockReturnValue([2019, 1, 1, 14, 30, 0])
// }
//
// const getTimezoneForId = jest.fn()
// .mockReturnValue(timezone)
//
// getTimezoneManager
// .mockReturnValue({
// getTimezoneForId
// })
//
// const VTimezoneNamedTimezone = createPlugin.mock.calls[0][0].namedTimeZonedImpl
// const instance = new VTimezoneNamedTimezone('America/New_York')
// instance.timeZoneName = 'America/New_York'
//
// const result = instance.timestampToArray(1337)
//
// expect(result).toEqual([2019, 0, 1, 14, 30, 0])
//
// expect(getTimezoneForId).toHaveBeenCalledTimes(1)
// expect(getTimezoneForId).toHaveBeenNthCalledWith(1, 'America/New_York')
// expect(timezone.timestampToArray).toHaveBeenCalledTimes(1)
// expect(timezone.timestampToArray).toHaveBeenNthCalledWith(1, 1337)
// })
//
// it('should properly implement the timestampToArray method - unknown timezone', () => {
// const timezone = {
// calendarJsTimezone: true,
// tzid: 'America/New_York',
// timestampToArray: jest.fn().mockReturnValue([2019, 1, 1, 14, 30, 0])
// }
//
// const getTimezoneForId = jest.fn()
// .mockReturnValueOnce(null)
// .mockReturnValue(timezone)
//
// getTimezoneManager
// .mockReturnValue({
// getTimezoneForId
// })
//
// const VTimezoneNamedTimezone = createPlugin.mock.calls[0][0].namedTimeZonedImpl
// const instance = new VTimezoneNamedTimezone('America/New_York')
// instance.timeZoneName = 'America/New_York'
//
// const result = instance.timestampToArray(1337)
//
// expect(result).toEqual([2019, 0, 1, 14, 30, 0])
//
// expect(getTimezoneForId).toHaveBeenCalledTimes(2)
// expect(getTimezoneForId).toHaveBeenNthCalledWith(1, 'America/New_York')
// expect(getTimezoneForId).toHaveBeenNthCalledWith(2, 'UTC')
// expect(timezone.timestampToArray).toHaveBeenCalledTimes(1)
// expect(timezone.timestampToArray).toHaveBeenNthCalledWith(1, 1337)
// })
//
// })