ColorPicker test added

pull/2305/head
Tuğçe Küçükoğlu 2022-03-10 13:33:01 +03:00 committed by Tuğçe Küçükoğlu
parent aa8ff8b4a9
commit ea36f6fcf0
1 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,59 @@
import { mount } from '@vue/test-utils';
import PrimeVue from '@/components/config/PrimeVue';
import ColorPicker from './ColorPicker.vue';
describe('ColorPicker.vue', () => {
let wrapper;
beforeEach(() => {
wrapper = mount(ColorPicker, {
global: {
plugins: [PrimeVue],
stubs: {
teleport: true
}
},
props: {
modelValue: null
}
});
});
it('should exist', () => {
expect(wrapper.find('.p-colorpicker.p-component').exists()).toBe(true);
expect(wrapper.find('.p-colorpicker-preview.p-inputtext').exists()).toBe(true);
});
it('should input click triggered', async() => {
const input = wrapper.find('.p-colorpicker-preview.p-inputtext');
const onInputClick = jest.spyOn(wrapper.vm, 'onInputClick');
await input.trigger('click');
expect(onInputClick).toHaveBeenCalled();
expect(wrapper.find('.p-colorpicker-panel').exists()).toBe(true);
expect(wrapper.find('.p-colorpicker-color-selector').exists()).toBe(true);
expect(wrapper.find('.p-colorpicker-hue').exists()).toBe(true);
});
it('should mouse events triggered', async() => {
const input = wrapper.find('.p-colorpicker-preview.p-inputtext');
await input.trigger('click');
const onColorMousedown = jest.spyOn(wrapper.vm, 'onColorMousedown');
const onHueMousedown = jest.spyOn(wrapper.vm, 'onHueMousedown');
const event = { pageX: 100, pageY: 120, preventDefault: () => {}};
const event2 = { pageX: 70, pageY: 20, preventDefault: () => {}};
wrapper.vm.onColorMousedown(event);
expect(onColorMousedown).toHaveBeenCalled();
expect(wrapper.find('.p-colorpicker-preview.p-inputtext').element.style.backgroundColor).not.toBe('rgb(255, 0, 0)');
wrapper.vm.onHueMousedown(event2);
expect(onHueMousedown).toHaveBeenCalled();
expect(wrapper.find('.p-colorpicker-preview.p-inputtext').element.style.backgroundColor).not.toBe('rgb(255, 0, 0)');
});
});