Choices/cypress/integration/select-multiple.spec.js

655 lines
20 KiB
JavaScript
Raw Normal View History

2018-10-14 17:00:46 +02:00
describe('Choices - select multiple', () => {
2018-10-13 17:38:51 +02:00
beforeEach(() => {
cy.visit('/select-multiple.html');
});
2018-10-27 17:25:46 +02:00
describe('scenarios', () => {
describe('basic setup', () => {
2018-10-17 23:36:37 +02:00
beforeEach(() => {
cy.get('[data-test-hook=basic]')
.find('.choices__input--cloned')
.focus();
});
2018-10-13 17:38:51 +02:00
describe('focusing on text input', () => {
it('displays a dropdown of choices', () => {
cy.get('[data-test-hook=basic]')
.find('.choices__list--dropdown')
.should('be.visible');
cy.get('[data-test-hook=basic]')
.find('.choices__list--dropdown .choices__list')
.children()
.should('have.length', 4)
.each(($choice, index) => {
expect($choice.text().trim()).to.equal(`Choice ${index + 1}`);
});
});
2018-10-13 17:38:51 +02:00
describe('pressing escape', () => {
beforeEach(() => {
2018-10-13 17:38:51 +02:00
cy.get('[data-test-hook=basic]')
.find('.choices__input--cloned')
.type('{esc}');
});
2018-10-13 17:38:51 +02:00
it('closes the dropdown', () => {
2018-10-13 17:38:51 +02:00
cy.get('[data-test-hook=basic]')
.find('.choices__list--dropdown')
.should('not.be.visible');
2018-10-13 17:38:51 +02:00
});
describe('typing more into the input', () => {
it('re-opens the dropdown', () => {
cy.get('[data-test-hook=basic]')
.find('.choices__input--cloned')
.type('test');
cy.get('[data-test-hook=basic]')
.find('.choices__list--dropdown')
.should('be.visible');
});
});
});
});
describe('selecting choices', () => {
describe('selecting a single choice', () => {
let selectedChoiceText;
beforeEach(() => {
2018-10-13 17:38:51 +02:00
cy.get('[data-test-hook=basic]')
.find('.choices__list--dropdown .choices__list')
.children()
.first()
.then($choice => {
selectedChoiceText = $choice.text().trim();
})
2018-10-13 17:38:51 +02:00
.click();
});
2018-10-13 17:38:51 +02:00
it('allows me select choices from a dropdown', () => {
2018-10-13 17:38:51 +02:00
cy.get('[data-test-hook=basic]')
.find('.choices__list--multiple .choices__item')
.last()
.should($item => {
expect($item).to.contain(selectedChoiceText);
});
});
it('updates the value of the original input', () => {
cy.get('[data-test-hook=basic]')
.find('.choices__input.is-hidden')
.should($select => {
expect($select.val()).to.contain(selectedChoiceText);
});
2018-10-13 17:38:51 +02:00
});
2018-10-14 17:00:46 +02:00
it('removes selected choice from dropdown list', () => {
2018-10-13 17:38:51 +02:00
cy.get('[data-test-hook=basic]')
.find('.choices__list--dropdown .choices__list')
.children()
.each($choice => {
expect($choice.text().trim()).to.not.equal(selectedChoiceText);
});
});
});
2018-10-13 17:38:51 +02:00
describe('selecting all available choices', () => {
beforeEach(() => {
for (let index = 0; index <= 4; index++) {
2018-10-13 17:38:51 +02:00
cy.get('[data-test-hook=basic]')
.find('.choices__input--cloned')
.focus();
2018-10-13 17:38:51 +02:00
cy.get('[data-test-hook=basic]')
.find('.choices__list--dropdown .choices__list')
.children()
.first()
.click();
}
});
2018-10-13 17:38:51 +02:00
it('displays "no choices to choose" prompt', () => {
cy.get('[data-test-hook=basic]')
.find('.choices__list--dropdown')
.should('be.visible')
.should($dropdown => {
const dropdownText = $dropdown.text().trim();
expect(dropdownText).to.equal('No choices to choose from');
2018-10-13 17:38:51 +02:00
});
});
});
});
describe('removing choices', () => {
let removedChoiceText;
2018-10-13 17:38:51 +02:00
beforeEach(() => {
cy.get('[data-test-hook=basic]')
.find('.choices__list--dropdown .choices__list')
.children()
.last()
.then($choice => {
removedChoiceText = $choice.text().trim();
})
2018-10-13 17:38:51 +02:00
.click();
cy.get('[data-test-hook=basic]')
.find('.choices__input--cloned')
.type('{backspace}');
2018-10-13 17:38:51 +02:00
});
2018-10-17 23:36:37 +02:00
describe('on backspace', () => {
2018-10-13 17:38:51 +02:00
it('removes last choice', () => {
cy.get('[data-test-hook=basic]')
.find('.choices__list--multiple')
.children()
.should('have.length', 0);
});
it('updates the value of the original input', () => {
cy.get('[data-test-hook=basic]')
.find('.choices__input.is-hidden')
.should($select => {
const val = $select.val() || [];
expect(val).to.not.contain(removedChoiceText);
});
});
2018-10-13 17:38:51 +02:00
});
2018-10-17 23:36:37 +02:00
});
2018-10-13 17:38:51 +02:00
2018-10-17 23:36:37 +02:00
describe('searching choices', () => {
describe('on input', () => {
describe('searching by label', () => {
2018-10-18 00:13:24 +02:00
it('displays choices filtered by inputted value', () => {
2018-10-17 23:36:37 +02:00
cy.get('[data-test-hook=basic]')
.find('.choices__input--cloned')
.type('item 2');
2018-10-13 17:38:51 +02:00
2018-10-17 23:36:37 +02:00
cy.get('[data-test-hook=basic]')
.find('.choices__list--dropdown .choices__list')
.children()
.first()
.should($choice => {
expect($choice.text().trim()).to.equal('Choice 2');
2018-10-17 23:36:37 +02:00
});
});
2018-10-13 17:38:51 +02:00
});
2018-10-17 23:36:37 +02:00
describe('searching by value', () => {
2018-10-18 00:13:24 +02:00
it('displays choices filtered by inputted value', () => {
2018-10-17 23:36:37 +02:00
cy.get('[data-test-hook=basic]')
.find('.choices__input--cloned')
.type('find me');
cy.get('[data-test-hook=basic]')
.find('.choices__list--dropdown .choices__list')
.children()
.first()
.should($choice => {
expect($choice.text().trim()).to.equal('Choice 3');
2018-10-17 23:36:37 +02:00
});
});
});
describe('no results found', () => {
it('displays "no results found" prompt', () => {
cy.get('[data-test-hook=basic]')
.find('.choices__input--cloned')
.type('faergge');
cy.get('[data-test-hook=basic]')
.find('.choices__list--dropdown')
.should('be.visible')
.should($dropdown => {
const dropdownText = $dropdown.text().trim();
expect(dropdownText).to.equal('No results found');
});
});
});
});
});
});
describe('remove button', () => {
2018-10-18 00:13:24 +02:00
/*
{
removeItemButton: true,
};
*/
2018-10-17 23:36:37 +02:00
beforeEach(() => {
cy.get('[data-test-hook=remove-button]')
.find('.choices__input--cloned')
.focus();
cy.get('[data-test-hook=remove-button]')
.find('.choices__list--dropdown .choices__list')
.children()
.last()
.click();
});
describe('on click', () => {
it('removes respective choice', () => {
cy.get('[data-test-hook=remove-button]')
.find('.choices__list--multiple .choices__item')
.last()
.find('.choices__button')
.focus()
.click();
cy.get('[data-test-hook=remove-button]')
.find('.choices__list--multiple')
.children()
.should('have.length', 0);
2018-10-13 17:38:51 +02:00
});
});
});
describe('disabled choice', () => {
describe('selecting a disabled choice', () => {
beforeEach(() => {
cy.get('[data-test-hook=disabled-choice]')
.find('.choices__input--cloned')
.focus();
cy.get('[data-test-hook=disabled-choice]')
.find('.choices__list--dropdown .choices__item--disabled')
.click();
});
it('does not select choice', () => {
cy.get('[data-test-hook=disabled-choice]')
.find('.choices__list--multiple .choices__item')
.should('have.length', 0);
});
it('keeps choice dropdown open', () => {
cy.get('[data-test-hook=disabled-choice]')
.find('.choices__list--dropdown')
.should('be.visible');
});
});
});
2018-10-14 17:00:46 +02:00
2018-10-21 20:26:19 +02:00
describe('adding items disabled', () => {
/*
{
addItems: false,
}
*/
beforeEach(() => {
cy.get('[data-test-hook=add-items-disabled]')
.find('.choices')
.click();
});
it('disables the search input', () => {
cy.get('[data-test-hook=add-items-disabled]')
.find('.choices__input--cloned')
.should('be.disabled');
});
describe('on click', () => {
it('opens choice dropdown', () => {
cy.get('[data-test-hook=add-items-disabled]')
.find('.choices__list--dropdown')
.should('be.visible');
});
});
describe('attempting to select choice', () => {
let selectedChoice;
it('does not select choice', () => {
cy.get('[data-test-hook=add-items-disabled]')
.find('.choices__list--dropdown .choices__item')
.last()
.then($lastChoice => {
selectedChoice = $lastChoice;
})
.click();
cy.get('[data-test-hook=add-items-disabled]')
.find('.choices__list--multiple .choices__item')
.last()
.should($item => {
expect($item.text()).to.not.contain(selectedChoice.text());
});
});
});
});
2018-10-14 17:00:46 +02:00
describe('selection limit', () => {
2018-10-18 00:13:24 +02:00
/*
{
maxItemCount: 5,
2018-10-21 20:26:19 +02:00
}
2018-10-18 00:13:24 +02:00
*/
2018-10-14 17:00:46 +02:00
const selectionLimit = 5;
beforeEach(() => {
for (let index = 0; index < selectionLimit; index++) {
cy.get('[data-test-hook=selection-limit]')
.find('.choices__input--cloned')
.focus();
cy.get('[data-test-hook=selection-limit]')
.find('.choices__list--dropdown .choices__list')
.children()
.first()
.click();
}
});
2018-10-17 23:36:37 +02:00
it('displays "limit reached" prompt', () => {
2018-10-14 17:00:46 +02:00
cy.get('[data-test-hook=selection-limit]')
.find('.choices__list--dropdown')
.should('be.visible')
.should($dropdown => {
const dropdownText = $dropdown.text().trim();
expect(dropdownText).to.equal(
`Only ${selectionLimit} values can be added`,
);
});
});
});
describe('prepend/append', () => {
2018-10-18 00:13:24 +02:00
/*
{
prependValue: 'before-',
appendValue: '-after',
2018-10-21 20:26:19 +02:00
}
2018-10-18 00:13:24 +02:00
*/
2018-10-14 17:00:46 +02:00
let selectedChoiceText;
beforeEach(() => {
cy.get('[data-test-hook=prepend-append]')
.find('.choices__input--cloned')
.focus();
cy.get('[data-test-hook=prepend-append]')
.find('.choices__list--dropdown .choices__list')
.children()
.last()
.then($choice => {
selectedChoiceText = $choice.text().trim();
})
.click();
});
it('prepends and appends value to inputted value', () => {
cy.get('[data-test-hook=prepend-append]')
.find('.choices__list--multiple .choices__item')
.last()
.should($choice => {
expect($choice.data('value')).to.equal(
`before-${selectedChoiceText}-after`,
);
});
});
it('displays just the inputted value to the user', () => {
cy.get('[data-test-hook=prepend-append]')
.find('.choices__list--multiple .choices__item')
.last()
.should($choice => {
expect($choice.text()).to.not.contain(
`before-${selectedChoiceText}-after`,
);
expect($choice.text()).to.contain(selectedChoiceText);
});
});
});
2018-10-17 23:36:37 +02:00
2018-10-18 00:13:24 +02:00
describe('render choice limit', () => {
/*
{
renderChoiceLimit: 1,
2018-10-21 20:26:19 +02:00
}
2018-10-18 00:13:24 +02:00
*/
it('only displays given number of choices in the dropdown', () => {
cy.get('[data-test-hook=render-choice-limit]')
.find('.choices__list--dropdown .choices__list')
.children()
.should('have.length', 1);
});
});
describe('search floor', () => {
/*
{
searchFloor: 10,
2018-10-21 20:26:19 +02:00
}
2018-10-18 00:13:24 +02:00
*/
describe('on input', () => {
describe('search floor not reached', () => {
it('displays choices not filtered by inputted value', () => {
const searchTerm = 'item 2';
cy.get('[data-test-hook=search-floor]')
.find('.choices__input--cloned')
.type(searchTerm);
cy.get('[data-test-hook=search-floor]')
.find('.choices__list--dropdown .choices__list')
.children()
.first()
.should($choice => {
expect($choice.text().trim()).to.not.contain(searchTerm);
});
});
});
describe('search floor reached', () => {
it('displays choices filtered by inputted value', () => {
const searchTerm = 'Choice 2';
2018-10-18 00:13:24 +02:00
cy.get('[data-test-hook=search-floor]')
.find('.choices__input--cloned')
.type(searchTerm);
cy.get('[data-test-hook=search-floor]')
.find('.choices__list--dropdown .choices__list')
.children()
.first()
.should($choice => {
expect($choice.text().trim()).to.contain(searchTerm);
});
});
});
});
2018-10-17 23:36:37 +02:00
});
2018-10-18 23:18:17 +02:00
describe('placeholder', () => {
/*
{
placeholder: true,
placeholderValue: 'I am a placeholder',
}
*/
describe('when no value has been inputted', () => {
it('displays a placeholder', () => {
cy.get('[data-test-hook=placeholder]')
.find('.choices__input--cloned')
.should('have.attr', 'placeholder', 'I am a placeholder');
});
});
});
2018-10-20 14:32:58 +02:00
describe('remote data', () => {
beforeEach(() => {
cy.reload(true);
});
describe('when loading data', () => {
it('shows a loading message as a placeholder', () => {
cy.get('[data-test-hook=remote-data]')
.find('.choices__input--cloned')
.should('have.attr', 'placeholder', 'Loading...');
});
describe('opening the dropdown', () => {
it('displays "no choices to choose" prompt', () => {
cy.get('[data-test-hook=remote-data]').click();
cy.get('[data-test-hook=remote-data]')
.find('.choices__list--dropdown')
.should('be.visible')
.should($dropdown => {
const dropdownText = $dropdown.text().trim();
expect(dropdownText).to.equal('No choices to choose from');
});
});
});
});
describe('when data has loaded', () => {
describe('opening the dropdown', () => {
it('displays the loaded data', () => {
cy.wait(2000);
cy.get('[data-test-hook=remote-data]')
.find('.choices__list--dropdown .choices__list')
.children()
.should('have.length', 50)
.each(($choice, index) => {
expect($choice.text().trim()).to.equal(`Label ${index + 1}`);
expect($choice.data('value')).to.equal(`Value ${index + 1}`);
});
});
});
});
});
2018-10-27 17:25:46 +02:00
describe('dropdown scrolling', () => {
let choicesCount;
beforeEach(() => {
cy.get('[data-test-hook=scrolling-dropdown]')
.find('.choices__list--dropdown .choices__list .choices__item')
.then($choices => {
choicesCount = $choices.length;
});
cy.get('[data-test-hook=scrolling-dropdown]')
.find('.choices__input--cloned')
.focus();
});
it('highlights first choice on dropdown open', () => {
cy.get('[data-test-hook=scrolling-dropdown]')
.find('.choices__list--dropdown .choices__list .is-highlighted')
.should($choice => {
expect($choice.text().trim()).to.equal('Choice 1');
2018-10-27 17:25:46 +02:00
});
});
it('scrolls to next choice on down arrow', () => {
for (let index = 0; index < choicesCount; index++) {
cy.get('[data-test-hook=scrolling-dropdown]')
.find('.choices__list--dropdown .choices__list .is-highlighted')
.should($choice => {
expect($choice.text().trim()).to.equal(`Choice ${index + 1}`);
2018-10-27 17:25:46 +02:00
});
cy.get('[data-test-hook=scrolling-dropdown]')
.find('.choices__input--cloned')
.type('{downarrow}');
}
});
it('scrolls up to previous choice on up arrow', () => {
// scroll to last choice
for (let index = 0; index < choicesCount; index++) {
cy.get('[data-test-hook=scrolling-dropdown]')
.find('.choices__input--cloned')
.type('{downarrow}');
}
// scroll up to first choice
for (let index = choicesCount; index > 0; index--) {
cy.wait(100); // allow for dropdown animation to finish
cy.get('[data-test-hook=scrolling-dropdown]')
.find('.choices__list--dropdown .choices__list .is-highlighted')
.should($choice => {
expect($choice.text().trim()).to.equal(`Choice ${index}`);
2018-10-27 17:25:46 +02:00
});
cy.get('[data-test-hook=scrolling-dropdown]')
.find('.choices__input--cloned')
.type('{uparrow}');
}
});
});
2018-10-27 19:12:15 +02:00
describe('choice groups', () => {
const choicesInGroup = 3;
let groupValue;
beforeEach(() => {
cy.get('[data-test-hook=groups]')
.find('.choices__list--dropdown .choices__list .choices__group')
.first()
.then($group => {
groupValue = $group.text().trim();
});
});
describe('selecting all choices in group', () => {
it('removes group from dropdown', () => {
for (let index = 0; index < choicesInGroup; index++) {
cy.get('[data-test-hook=groups]')
.find('.choices__input--cloned')
.focus();
cy.get('[data-test-hook=groups]')
.find('.choices__list--dropdown .choices__list .choices__item')
.first()
.click();
}
cy.get('[data-test-hook=groups]')
.find('.choices__list--dropdown .choices__list .choices__group')
.first()
.should($group => {
expect($group.text().trim()).to.not.equal(groupValue);
});
});
});
describe('deselecting all choices in group', () => {
beforeEach(() => {
for (let index = 0; index < choicesInGroup; index++) {
cy.get('[data-test-hook=groups]')
.find('.choices__input--cloned')
.focus();
cy.get('[data-test-hook=groups]')
.find('.choices__list--dropdown .choices__list .choices__item')
.first()
.click();
}
});
it('shows group in dropdown', () => {
for (let index = 0; index < choicesInGroup; index++) {
cy.get('[data-test-hook=groups]')
.find('.choices__input--cloned')
.focus()
.type('{backspace}');
}
cy.get('[data-test-hook=groups]')
.find('.choices__list--dropdown .choices__list .choices__group')
.first()
.should($group => {
expect($group.text().trim()).to.equal(groupValue);
});
});
});
});
2018-10-17 23:36:37 +02:00
});
2018-10-13 17:38:51 +02:00
});