import { beforeEach, describe, expect, it, vi } from 'vitest'
import { defineComponent } from 'vue'
import { shallowMount } from '@vue/test-utils'
import type { VueWrapper } from '@vue/test-utils'
import TimepickerMixin from '@utils/TimepickerMixin'
const AM = 'AM'
const PM = 'PM'
const component = defineComponent({
mixins: [TimepickerMixin],
template: '
'
})
let wrapper: VueWrapper>
describe('TimepickerMixin', () => {
HTMLElement.prototype.insertAdjacentElement = vi.fn()
beforeEach(() => {
wrapper = shallowMount(component, {
attachTo: document.body
})
})
it('should set dateSelected and emit input event when setting computedValue', async () => {
const date = new Date()
wrapper.vm.computedValue = date
await wrapper.vm.$nextTick()
expect(wrapper.vm.dateSelected).toEqual(date)
expect(wrapper.emitted()['update:modelValue']).toBeTruthy()
})
it('should return correct value for meridiens', () => {
expect(wrapper.vm.meridiens).toEqual([AM, PM])
})
it('should call updateDateSelected on onSecondsChange', async () => {
wrapper.vm.updateDateSelected = vi.fn()
wrapper.vm.onSecondsChange('0')
await wrapper.vm.$nextTick()
expect(wrapper.vm.updateDateSelected).toHaveBeenCalledTimes(1)
})
it('should update internal state with passed value on updateInternalState', async () => {
const date = new Date()
wrapper.vm.updateInternalState(date)
await wrapper.vm.$nextTick()
expect(wrapper.vm.hoursSelected).toEqual(date.getHours())
expect(wrapper.vm.minutesSelected).toEqual(date.getMinutes())
expect(wrapper.vm.secondsSelected).toEqual(date.getSeconds())
})
it('should update internal state on updateInternalState', async () => {
wrapper.vm.updateInternalState()
await wrapper.vm.$nextTick()
expect(wrapper.vm.hoursSelected).toBeNull()
expect(wrapper.vm.minutesSelected).toBeNull()
expect(wrapper.vm.secondsSelected).toBeNull()
expect(wrapper.vm.meridienSelected).toEqual(AM)
})
it('should call onFocus on handleOnFocus', async () => {
wrapper.vm.onFocus = vi.fn()
wrapper.vm.handleOnFocus()
await wrapper.vm.$nextTick()
expect(wrapper.vm.onFocus).toHaveBeenCalledTimes(1)
})
it('should call toggle on close', async () => {
wrapper.vm.toggle = vi.fn()
wrapper.vm.close()
await wrapper.vm.$nextTick()
expect(wrapper.vm.toggle).toHaveBeenCalledTimes(1)
})
})