primevue-mirror/components/dropdown/Dropdown.spec.js

362 lines
12 KiB
JavaScript
Raw Normal View History

2022-09-06 12:03:37 +00:00
import { mount } from '@vue/test-utils';
2022-12-08 11:04:25 +00:00
import PrimeVue from 'primevue/config';
2022-12-08 14:13:16 +00:00
import { h } from 'vue';
import Dropdown from './Dropdown.vue';
2022-09-06 12:03:37 +00:00
describe('Dropdown.vue', () => {
2022-09-14 11:26:01 +00:00
let wrapper;
2022-09-06 12:03:37 +00:00
beforeEach(async () => {
wrapper = mount(Dropdown, {
global: {
plugins: [PrimeVue],
stubs: {
teleport: true
}
}
});
await wrapper.trigger('click');
});
it('should Dropdown exist', () => {
expect(wrapper.find('.p-dropdown.p-component').exists()).toBe(true);
expect(wrapper.find('.p-dropdown-panel').exists()).toBe(true);
2022-12-08 11:04:25 +00:00
expect(wrapper.find('.p-dropdown-empty-message').exists()).toBe(true);
2022-09-06 12:03:37 +00:00
expect(wrapper.find('.p-inputwrapper-filled').exists()).toBe(false);
2022-09-14 14:26:41 +00:00
expect(wrapper.find('.p-inputwrapper-focus').exists()).toBe(true);
2022-09-14 11:26:01 +00:00
});
2022-09-06 12:03:37 +00:00
});
describe('option checks', () => {
let wrapper;
2022-09-14 11:26:01 +00:00
beforeEach(async () => {
2022-09-06 12:03:37 +00:00
wrapper = mount(Dropdown, {
global: {
plugins: [PrimeVue],
stubs: {
teleport: true
}
},
props: {
options: [
2022-09-14 11:26:01 +00:00
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
{ name: 'London', code: 'LDN' },
{ name: 'Istanbul', code: 'IST' },
{ name: 'Paris', code: 'PRS' }
2022-09-06 12:03:37 +00:00
],
optionLabel: 'name',
optionValue: 'code',
placeholder: 'Select a City'
}
});
await wrapper.trigger('click');
});
it('should show the options', () => {
expect(wrapper.find('.p-dropdown-label.p-placeholder').text()).toBe('Select a City');
expect(wrapper.find('.p-dropdown-items-wrapper > .p-dropdown-items').exists()).toBe(true);
expect(wrapper.find('.p-dropdown-item').exists()).toBe(true);
expect(wrapper.findAll('.p-dropdown-item').length).toBe(5);
expect(wrapper.findAll('.p-dropdown-item')[0].text()).toBe('New York');
});
});
2022-12-08 11:04:25 +00:00
describe('clear checks', () => {
let wrapper;
beforeEach(async () => {
wrapper = mount(Dropdown, {
global: {
plugins: [PrimeVue],
stubs: {
teleport: true
}
},
props: {
clearIcon: 'pi pi-discord',
modelValue: 'value',
showClear: true
}
});
await wrapper.trigger('click');
});
it('should have correct icon', () => {
expect(wrapper.find('.p-dropdown-clear-icon').classes()).toContain('pi-discord');
});
});
2022-09-06 12:03:37 +00:00
describe('editable checks', () => {
let wrapper;
2022-09-14 11:26:01 +00:00
beforeEach(async () => {
2022-09-06 12:03:37 +00:00
wrapper = mount(Dropdown, {
global: {
plugins: [PrimeVue],
stubs: {
teleport: true
}
},
props: {
options: [
2022-09-14 11:26:01 +00:00
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
{ name: 'London', code: 'LDN' },
{ name: 'Istanbul', code: 'IST' },
{ name: 'Paris', code: 'PRS' }
2022-09-06 12:03:37 +00:00
],
optionLabel: 'name',
optionValue: 'code',
placeholder: 'Select a City',
editable: true
}
});
await wrapper.trigger('click');
});
it('should show the options', () => {
expect(wrapper.find('.p-dropdown-label.p-placeholder').exists()).toBe(false);
expect(wrapper.find('.p-dropdown-label.p-inputtext').exists()).toBe(true);
});
});
describe('option groups checks', () => {
let wrapper;
2022-09-14 11:26:01 +00:00
beforeEach(async () => {
2022-09-06 12:03:37 +00:00
wrapper = mount(Dropdown, {
global: {
plugins: [PrimeVue],
stubs: {
teleport: true
}
},
props: {
options: [
{
2022-09-14 11:26:01 +00:00
label: 'Germany',
code: 'DE',
2022-09-06 12:03:37 +00:00
items: [
2022-09-14 11:26:01 +00:00
{ label: 'Berlin', value: 'Berlin' },
{ label: 'Frankfurt', value: 'Frankfurt' },
{ label: 'Hamburg', value: 'Hamburg' },
{ label: 'Munich', value: 'Munich' }
2022-09-06 12:03:37 +00:00
]
},
{
2022-09-14 11:26:01 +00:00
label: 'USA',
code: 'US',
2022-09-06 12:03:37 +00:00
items: [
2022-09-14 11:26:01 +00:00
{ label: 'Chicago', value: 'Chicago' },
{ label: 'Los Angeles', value: 'Los Angeles' },
{ label: 'New York', value: 'New York' },
{ label: 'San Francisco', value: 'San Francisco' }
2022-09-06 12:03:37 +00:00
]
},
{
2022-09-14 11:26:01 +00:00
label: 'Japan',
code: 'JP',
2022-09-06 12:03:37 +00:00
items: [
2022-09-14 11:26:01 +00:00
{ label: 'Kyoto', value: 'Kyoto' },
{ label: 'Osaka', value: 'Osaka' },
{ label: 'Tokyo', value: 'Tokyo' },
{ label: 'Yokohama', value: 'Yokohama' }
2022-09-06 12:03:37 +00:00
]
}
],
optionLabel: 'label',
optionGroupLabel: 'label',
optionGroupChildren: 'items'
}
});
await wrapper.trigger('click');
});
it('should show the option groups', () => {
expect(wrapper.findAll('.p-dropdown-item-group').length).toBe(3);
expect(wrapper.findAll('.p-dropdown-item-group')[0].text()).toBe('Germany');
});
});
describe('templating checks', () => {
let wrapper;
2022-09-14 11:26:01 +00:00
beforeEach(async () => {
2022-09-06 12:03:37 +00:00
wrapper = mount(Dropdown, {
global: {
plugins: [PrimeVue],
stubs: {
teleport: true
}
},
slots: {
2022-09-14 11:26:01 +00:00
header: h('span', { class: 'header-slot' }, 'Header slot'),
footer: h('span', { class: 'footer-slot' }, 'Footer slot'),
option: h('span', { class: 'option-slot' }, 'Option slot'),
optiongroup: h('span', { class: 'optiongroup-slot' }, 'OptionGroup slot'),
emptyfilter: h('span', { class: 'emptyfilter-slot' }, 'Empty filter slot')
2022-09-06 12:03:37 +00:00
},
props: {
options: [
{
2022-09-14 11:26:01 +00:00
label: 'Germany',
code: 'DE',
2022-09-06 12:03:37 +00:00
items: [
2022-09-14 11:26:01 +00:00
{ label: 'Berlin', value: 'Berlin' },
{ label: 'Frankfurt', value: 'Frankfurt' },
{ label: 'Hamburg', value: 'Hamburg' },
{ label: 'Munich', value: 'Munich' }
2022-09-06 12:03:37 +00:00
]
}
],
optionLabel: 'label',
optionGroupLabel: 'label',
optionGroupChildren: 'items'
}
});
await wrapper.trigger('click');
});
it('should see header and footer slots', () => {
expect(wrapper.find('.header-slot').exists()).toBe(true);
expect(wrapper.find('.header-slot').text()).toBe('Header slot');
expect(wrapper.find('.footer-slot').exists()).toBe(true);
expect(wrapper.find('.footer-slot').text()).toBe('Footer slot');
expect(wrapper.find('.option-slot').exists()).toBe(true);
expect(wrapper.find('.option-slot').text()).toBe('Option slot');
expect(wrapper.find('.optiongroup-slot').exists()).toBe(true);
expect(wrapper.find('.optiongroup-slot').text()).toBe('OptionGroup slot');
});
});
describe('empty templating checks', () => {
let wrapper;
2022-09-14 11:26:01 +00:00
beforeEach(async () => {
2022-09-06 12:03:37 +00:00
wrapper = mount(Dropdown, {
global: {
plugins: [PrimeVue],
stubs: {
teleport: true
}
},
props: {
options: [],
optionLabel: 'label',
optionGroupLabel: 'label',
optionGroupChildren: 'items',
emptyMessage: 'Need options prop',
filterValue: 'xd'
}
});
await wrapper.trigger('click');
});
it('should see empty slots', () => {
expect(wrapper.find('.p-dropdown-empty-message').exists()).toBe(true);
expect(wrapper.find('.p-dropdown-empty-message').text()).toBe('Need options prop');
});
});
describe('loader checks', () => {
let wrapper;
2022-09-14 11:26:01 +00:00
beforeEach(async () => {
2022-09-06 12:03:37 +00:00
wrapper = mount(Dropdown, {
global: {
plugins: [PrimeVue],
stubs: {
teleport: true
}
},
props: {
loading: true,
loadingIcon: 'pi pi-discord',
options: [
2022-09-14 11:26:01 +00:00
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
{ name: 'London', code: 'LDN' },
{ name: 'Istanbul', code: 'IST' },
{ name: 'Paris', code: 'PRS' }
2022-09-06 12:03:37 +00:00
],
optionLabel: 'name',
optionValue: 'code',
placeholder: 'Select a City'
}
});
await wrapper.trigger('click');
});
it('should show the loader', async () => {
expect(wrapper.find('.p-dropdown-trigger-icon').classes()).toContain('pi-discord');
await wrapper.setProps({ loading: false });
expect(wrapper.find('.p-dropdown-trigger-icon').classes()).not.toContain('pi-discord');
});
});
describe('filter checks', () => {
let wrapper;
2022-09-14 11:26:01 +00:00
beforeEach(async () => {
2022-09-06 12:03:37 +00:00
wrapper = mount(Dropdown, {
global: {
plugins: [PrimeVue],
stubs: {
teleport: true
}
},
props: {
filter: true,
2022-12-08 11:04:25 +00:00
filterIcon: 'pi pi-discord',
2022-09-06 12:03:37 +00:00
options: [
2022-09-14 11:26:01 +00:00
{ name: 'Australia', code: 'AU' },
{ name: 'Brazil', code: 'BR' },
{ name: 'China', code: 'CN' },
{ name: 'Egypt', code: 'EG' },
{ name: 'France', code: 'FR' },
{ name: 'Germany', code: 'DE' },
{ name: 'India', code: 'IN' },
{ name: 'Japan', code: 'JP' },
{ name: 'Spain', code: 'ES' },
{ name: 'United States', code: 'US' }
2022-09-06 12:03:37 +00:00
],
optionLabel: 'name'
}
});
await wrapper.trigger('click');
});
it('should make filtering', async () => {
const filterInput = wrapper.find('.p-dropdown-filter');
2022-12-08 11:04:25 +00:00
const filterIcon = wrapper.find('.p-dropdown-filter-icon');
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
expect(filterInput.exists()).toBe(true);
2022-12-08 11:04:25 +00:00
expect(filterIcon.classes()).toContain('pi-discord');
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
const event = { target: { value: 'c' } };
2022-12-08 14:13:16 +00:00
const onFilterChange = vi.spyOn(wrapper.vm, 'onFilterChange');
2022-09-06 12:03:37 +00:00
wrapper.vm.onFilterChange(event);
await wrapper.vm.$nextTick();
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
expect(onFilterChange).toHaveBeenCalled();
2022-09-14 11:26:01 +00:00
await wrapper.setData({ filterValue: 'c' });
2022-09-06 12:03:37 +00:00
expect(wrapper.findAll('.p-dropdown-item').length).toBe(2);
});
2022-09-14 11:26:01 +00:00
});