mirror of
https://github.com/Choices-js/Choices.git
synced 2026-03-16 15:45:46 +01:00
762 lines
28 KiB
TypeScript
762 lines
28 KiB
TypeScript
import { test, expect } from '../bundle-test';
|
|
import { SelectTestSuit } from '../select-test-suit';
|
|
|
|
const { describe } = test;
|
|
// describe.configure({ mode: 'serial', retries: 0 });
|
|
|
|
const testUrl = '/test/select-multiple/index.html';
|
|
describe(`Choices - select multiple`, () => {
|
|
describe('scenarios', () => {
|
|
describe('basic', () => {
|
|
const testId = 'basic';
|
|
const inputValue = 'test';
|
|
|
|
describe('focusing on container', () => {
|
|
describe('pressing enter key', () => {
|
|
test('toggles the dropdown', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.start();
|
|
await suite.wrapper.focus();
|
|
await suite.enterKey();
|
|
await suite.expectVisibleDropdown();
|
|
await suite.enterKey();
|
|
await suite.expectHiddenDropdown();
|
|
});
|
|
});
|
|
|
|
describe('pressing an alpha-numeric key', () => {
|
|
test('opens the dropdown and the input value', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.start();
|
|
await suite.selectByKeyPress(inputValue);
|
|
await expect(suite.input).toHaveValue(inputValue);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('selecting choices', () => {
|
|
const selectedChoiceText = 'Choice 1';
|
|
|
|
test('allows selecting choices from dropdown', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await suite.choices.first().click();
|
|
await expect(suite.itemList.last()).toHaveText(selectedChoiceText);
|
|
});
|
|
|
|
test('does not remove selected choice from dropdown list', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
const choice = suite.choices.first();
|
|
await choice.click();
|
|
await expect(choice).toHaveText(selectedChoiceText);
|
|
await expect(suite.itemList.last()).toHaveText(selectedChoiceText);
|
|
});
|
|
});
|
|
|
|
describe('keys for choice', () => {
|
|
test('up/down arrows for selection', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await suite.input.press('ArrowDown');
|
|
await expect(suite.choices.first()).not.toHaveClass(/is-highlighted/);
|
|
await expect(suite.choices.nth(1)).toHaveClass(/is-highlighted/);
|
|
|
|
await suite.input.press('ArrowUp');
|
|
await expect(suite.choices.first()).toHaveClass(/is-highlighted/);
|
|
await expect(suite.choices.nth(1)).not.toHaveClass(/is-highlighted/);
|
|
});
|
|
|
|
test('page-up/page-down arrows for selection', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await suite.input.press('PageDown');
|
|
await expect(suite.choices.first()).not.toHaveClass(/is-highlighted/);
|
|
await expect(suite.choices.last()).toHaveClass(/is-highlighted/);
|
|
|
|
await suite.input.press('PageUp');
|
|
await expect(suite.choices.first()).toHaveClass(/is-highlighted/);
|
|
await expect(suite.choices.last()).not.toHaveClass(/is-highlighted/);
|
|
});
|
|
});
|
|
|
|
describe('searching choices', () => {
|
|
describe('on input', () => {
|
|
describe('searching by label', () => {
|
|
test('displays choices filtered by inputted value', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText('item2');
|
|
|
|
await suite.expectVisibleDropdown('Choice 2');
|
|
});
|
|
});
|
|
|
|
describe('searching by value', () => {
|
|
test('displays choices filtered by inputted value', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText('find me');
|
|
|
|
await suite.expectVisibleDropdown('Choice 3');
|
|
});
|
|
});
|
|
|
|
describe('no results found', () => {
|
|
test('displays "no results found" prompt', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText('faergge');
|
|
|
|
await suite.expectVisibleDropdown('No results found');
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('disabling', () => {
|
|
describe('on disable', () => {
|
|
test('disables the search input', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.group.locator('button.disable').click();
|
|
await expect(suite.wrapper).toBeDisabled();
|
|
await expect(suite.input).toBeDisabled();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('enabling', () => {
|
|
describe('on enable', () => {
|
|
test('enables the search input', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.group.locator('button.disable').click();
|
|
await suite.group.locator('button.enable').click();
|
|
await expect(suite.wrapper).toBeEnabled();
|
|
await expect(suite.input).toBeEnabled();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('remove button', () => {
|
|
const testId = 'remove-button';
|
|
describe('on click', () => {
|
|
test('removes default', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.start();
|
|
await suite.expectHiddenDropdown();
|
|
|
|
await suite.expectedItemCount(1);
|
|
await suite.expectedValue('Choice 1');
|
|
|
|
await suite.items.getByRole('button', { name: 'Remove item' }).first().click();
|
|
await suite.advanceClock();
|
|
|
|
await suite.expectedItemCount(0);
|
|
await suite.expectedValue('');
|
|
await suite.expectHiddenDropdown();
|
|
});
|
|
|
|
test('removes selected choice', async ({ page, bundle }) => {
|
|
const defaultChoice = 'Choice 1';
|
|
const selectedChoice = 'Choice 4';
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await suite.expectedItemCount(1);
|
|
await suite.expectedValue(defaultChoice);
|
|
|
|
const choice = suite.choices.last();
|
|
await expect(choice).toHaveText(selectedChoice);
|
|
await choice.click();
|
|
|
|
await suite.expectedItemCount(1);
|
|
await suite.expectedValue(selectedChoice);
|
|
|
|
await suite.items.getByRole('button', { name: 'Remove item' }).first().click();
|
|
|
|
await suite.expectedItemCount(0);
|
|
await suite.expectedValue('');
|
|
await suite.expectHiddenDropdown();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('disabled choice', () => {
|
|
const testId = 'disabled-choice';
|
|
const firstChoice = 'Choice 1';
|
|
test('does not change selected choice', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await suite.expectedItemCount(1);
|
|
await suite.expectedValue(firstChoice);
|
|
|
|
const choice = suite.choices.last();
|
|
await expect(choice).toBeDisabled();
|
|
await choice.click({ force: true });
|
|
|
|
await suite.expectedItemCount(1);
|
|
await suite.expectedValue(firstChoice);
|
|
});
|
|
});
|
|
|
|
describe('Disabled first choice by options', () => {
|
|
const testId = 'disabled-first-choice-via-options';
|
|
const firstChoice = 'Choice 2';
|
|
test('does not change selected choice', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await suite.expectedItemCount(1);
|
|
await suite.expectedValue(firstChoice);
|
|
|
|
const choice = suite.choices.first();
|
|
await expect(choice).toBeDisabled();
|
|
await choice.click({ force: true });
|
|
|
|
await suite.expectedItemCount(1);
|
|
await suite.expectedValue(firstChoice);
|
|
});
|
|
});
|
|
|
|
describe('disabled via attribute', () => {
|
|
const testId = 'disabled-via-attr';
|
|
test('disables the search input', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.start();
|
|
await suite.wrapper.click({ force: true });
|
|
|
|
await expect(suite.wrapper).toBeDisabled();
|
|
await suite.expectHiddenDropdown();
|
|
});
|
|
});
|
|
|
|
describe('disabled via fieldset', () => {
|
|
const testId = 'disabled-via-fieldset';
|
|
test('disables the search input', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.start();
|
|
await suite.wrapper.click({ force: true });
|
|
|
|
await expect(suite.wrapper).toBeDisabled();
|
|
await suite.expectHiddenDropdown();
|
|
});
|
|
});
|
|
|
|
describe('prepend/append', () => {
|
|
const testId = 'prepend-append';
|
|
const textInput = 'Choice 1';
|
|
test('prepends and appends value to inputted value', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
const item = suite.items.first();
|
|
await expect(item).toHaveText(textInput);
|
|
await expect(item).toHaveAttribute('data-value', `before-${textInput}-after`);
|
|
});
|
|
});
|
|
|
|
describe('render choice limit', () => {
|
|
const testId = 'render-choice-limit';
|
|
test('only displays given number of choices in the dropdown', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
expect(await suite.choices.count()).toEqual(1);
|
|
});
|
|
});
|
|
|
|
describe('search disabled', () => {
|
|
const testId = 'search-disabled';
|
|
test('does not display a search input', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await expect(suite.input).toHaveCount(0);
|
|
});
|
|
|
|
test('allows selecting choices from dropdown', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
const choice = suite.choices.last();
|
|
const text = await choice.innerText();
|
|
await expect(choice).toBeEnabled();
|
|
await choice.click();
|
|
|
|
await suite.expectedItemCount(1);
|
|
await suite.expectedValue(text);
|
|
await suite.expectHiddenDropdown();
|
|
});
|
|
});
|
|
|
|
describe('search floor', () => {
|
|
const testId = 'search-floor';
|
|
describe('on input', () => {
|
|
describe('search floor not reached', () => {
|
|
test('displays choices not filtered by inputted value', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
const searchTerm = 'item 2';
|
|
await suite.typeText(searchTerm);
|
|
await suite.expectVisibleDropdown();
|
|
await expect(suite.choices.first()).not.toHaveText(searchTerm);
|
|
});
|
|
});
|
|
|
|
describe('search floor reached', () => {
|
|
test('displays choices filtered by inputted value', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
const searchTerm = 'Choice 2';
|
|
|
|
await suite.typeText(searchTerm);
|
|
await suite.expectVisibleDropdown();
|
|
await expect(suite.choices.first()).toHaveText(searchTerm);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
[
|
|
{
|
|
name: 'empty option value',
|
|
testId: 'placeholder-via-option-value',
|
|
},
|
|
{
|
|
name: 'option attribute',
|
|
testId: 'placeholder-via-option-attr',
|
|
},
|
|
{
|
|
name: 'data attribute',
|
|
testId: 'placeholder-via-data-attr',
|
|
},
|
|
].forEach((arg) => {
|
|
const { testId } = arg;
|
|
describe(`Placeholder via ${arg.name}`, () => {
|
|
describe('when no choice has been selected', () => {
|
|
test('displays a placeholder', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await suite.expectedItemCount(0);
|
|
await suite.expectedValue('');
|
|
|
|
const item = suite.itemsWithPlaceholder.first();
|
|
await expect(item).toHaveClass(/choices__placeholder/);
|
|
await expect(item).toHaveText('I am a placeholder');
|
|
});
|
|
});
|
|
|
|
describe('when a choice has been selected', () => {
|
|
test('does not display a placeholder', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
const choice = suite.selectableChoices.first();
|
|
await choice.click();
|
|
|
|
const item = suite.itemsWithPlaceholder.first();
|
|
await expect(item).not.toHaveClass(/choices__placeholder/);
|
|
await expect(item).not.toHaveText('I am a placeholder');
|
|
await suite.expectHiddenDropdown();
|
|
});
|
|
});
|
|
|
|
describe('when choice list is open', () => {
|
|
if (testId === 'placeholder-via-data-attr') {
|
|
test('does not displays the placeholder choice first', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
const choice = suite.choices.first();
|
|
await expect(choice).not.toHaveClass(/choices__placeholder/);
|
|
await expect(choice).not.toHaveText('I am a placeholder');
|
|
});
|
|
} else {
|
|
test('displays the placeholder choice first', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
const choice = suite.choices.first();
|
|
await expect(choice).toHaveClass(/choices__placeholder/);
|
|
await expect(choice).toHaveText('I am a placeholder');
|
|
});
|
|
}
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('remote data', () => {
|
|
const testId = 'remote-data';
|
|
describe('when loading data', () => {
|
|
test('shows a loading message as a placeholder', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.start();
|
|
await suite.expectHiddenDropdown();
|
|
await expect(suite.dropdown).toBeDisabled();
|
|
|
|
const placeholder = suite.itemsWithPlaceholder.first();
|
|
await expect(placeholder).toHaveClass(/choices__placeholder/);
|
|
await expect(placeholder).toHaveText('Loading...');
|
|
});
|
|
});
|
|
|
|
describe('when data has loaded', () => {
|
|
describe('opening the dropdown', () => {
|
|
test('displays the loaded data', async ({ page, bundle }) => {
|
|
const jsonLoad = page.waitForResponse('**/data.json');
|
|
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.start();
|
|
|
|
await jsonLoad;
|
|
await suite.selectByClick();
|
|
|
|
const placeholder = suite.itemsWithPlaceholder.first();
|
|
await expect(placeholder).toHaveClass(/choices__placeholder/);
|
|
await expect(placeholder).toHaveText('I am a placeholder');
|
|
await expect(suite.selectableChoices).toHaveCount(10);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('scrolling dropdown', () => {
|
|
const testId = 'scrolling-dropdown';
|
|
test('shows partial choices list', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await expect(suite.selectableChoices).toHaveCount(15);
|
|
// @todo determine how to assert items
|
|
// await expect(suite.selectableChoices.filter({ has: page.locator(':scope:visible') })).toHaveCount(8);
|
|
});
|
|
});
|
|
|
|
describe('choice groups', () => {
|
|
describe('just groups', () => {
|
|
const testId = 'groups';
|
|
test('displays', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await expect(suite.dropdown.locator('.choices__group[data-group]')).toHaveCount(2);
|
|
});
|
|
});
|
|
|
|
describe('groups and choices', () => {
|
|
const testId = 'mixed-groups';
|
|
test('displays', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await expect(suite.dropdown.locator('.choices__group[data-group]')).toHaveCount(1);
|
|
expect(
|
|
await suite.selectableChoices.filter({ hasNot: page.locator('[data-group-id]') }).count(),
|
|
).toBeGreaterThan(0);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('parent/child', () => {
|
|
const testId = 'parent-child';
|
|
describe('selecting "Parent choice 2"', () => {
|
|
test('enables/disables the child Choices instance', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.start();
|
|
|
|
const parent = suite.group.locator('.choices').nth(0);
|
|
const child = suite.group.locator('.choices').nth(1);
|
|
await expect(parent).toBeEnabled();
|
|
await expect(child).toBeDisabled();
|
|
|
|
await parent.click();
|
|
await expect(suite.dropdown.first()).toBeVisible();
|
|
const parentChoices = parent.locator('.choices__item:not(.choices__placeholder)');
|
|
|
|
await parentChoices.filter({ hasText: 'Parent choice 2' }).click();
|
|
|
|
await expect(child).toBeEnabled();
|
|
|
|
await parent.click();
|
|
await expect(suite.dropdown.first()).toBeVisible();
|
|
const choice = parentChoices.filter({ hasText: 'Parent choice 3' });
|
|
await choice.click();
|
|
|
|
await expect(child).toBeDisabled();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('custom properties via config', () => {
|
|
const testId = 'custom-properties';
|
|
describe('on input', () => {
|
|
[
|
|
{
|
|
country: 'Germany',
|
|
city: 'Berlin',
|
|
},
|
|
{
|
|
country: 'United Kingdom',
|
|
city: 'London',
|
|
},
|
|
{
|
|
country: 'Portugal',
|
|
city: 'Lisbon',
|
|
},
|
|
].forEach(({ country, city }) => {
|
|
test(`filters choices - ${country} = ${city}`, async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText(country);
|
|
await suite.expectVisibleDropdown();
|
|
|
|
const choice = suite.selectableChoices.first();
|
|
await expect(choice).toHaveText(city);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('custom properties via html', () => {
|
|
const testId = 'custom-properties-html';
|
|
describe('on input', () => {
|
|
[
|
|
{
|
|
searchText: 'fantastic',
|
|
label: 'Label Three',
|
|
},
|
|
{
|
|
searchText: 'foo',
|
|
label: 'Label Four',
|
|
},
|
|
].forEach(({ searchText, label }) => {
|
|
test(`filters choices - ${searchText} = ${label}`, async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText(searchText);
|
|
await suite.expectVisibleDropdown();
|
|
|
|
const choice = suite.selectableChoices.first();
|
|
await expect(choice).toHaveText(label);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('non-string values', () => {
|
|
const testId = 'non-string-values';
|
|
test('displays expected amount of choices in dropdown', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await expect(suite.selectableChoices).toHaveCount(4);
|
|
});
|
|
|
|
test('allows selecting choices from dropdown', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
const choice = suite.selectableChoices.first();
|
|
const choiceText = await choice.textContent();
|
|
expect(choiceText).toBeTruthy();
|
|
await choice.click();
|
|
|
|
await expect(suite.items.first()).toHaveText(choiceText as string);
|
|
});
|
|
});
|
|
|
|
describe('within form', () => {
|
|
const testId = 'within-form';
|
|
describe('selecting choice', () => {
|
|
describe('on enter key', () => {
|
|
test('does not submit form', async ({ page, bundle }) => {
|
|
let submit = false;
|
|
await page.route(page.url(), (route) => {
|
|
submit = true;
|
|
|
|
return route.abort();
|
|
});
|
|
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.expectVisibleDropdown();
|
|
|
|
await suite.enterKey();
|
|
await suite.expectHiddenDropdown();
|
|
|
|
await suite.selectByClick();
|
|
await suite.expectVisibleDropdown();
|
|
|
|
const choice = suite.choices.first();
|
|
const text = await choice.innerText();
|
|
await expect(choice).toBeEnabled();
|
|
await choice.click();
|
|
await suite.advanceClock();
|
|
|
|
await suite.expectedItemCount(1);
|
|
await suite.expectedValue(text);
|
|
expect(submit).toEqual(false);
|
|
await suite.expectHiddenDropdown();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('dynamically setting choice by value', () => {
|
|
const dynamicallySelectedChoiceValue = 'Choice 2';
|
|
const testId = 'set-choice-by-value';
|
|
test('selects choice', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await expect(suite.items).toHaveText(dynamicallySelectedChoiceValue);
|
|
});
|
|
|
|
test('does not remove choice from dropdown list', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await expect(suite.choices.filter({ hasText: dynamicallySelectedChoiceValue })).toHaveCount(1);
|
|
});
|
|
|
|
test('updates the value of the original input', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
|
|
await suite.expectedValue(dynamicallySelectedChoiceValue);
|
|
});
|
|
});
|
|
|
|
describe('searching by label only', () => {
|
|
const testId = 'search-by-label';
|
|
test('gets zero results when searching by value', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText('item2');
|
|
|
|
await suite.expectVisibleDropdown('No results found');
|
|
});
|
|
|
|
test('gets a result when searching by label', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText('label1');
|
|
await suite.expectVisibleDropdown();
|
|
await suite.enterKey();
|
|
await suite.expectHiddenDropdown();
|
|
|
|
await expect(suite.items.filter({ hasText: 'label1' })).not.toHaveCount(0);
|
|
});
|
|
});
|
|
|
|
describe('html allowed', () => {
|
|
const textInput = 'testing';
|
|
const htmlInput = `<b>${textInput}</b>`;
|
|
describe('set to undefined', () => {
|
|
const testId = 'allowhtml-undefined';
|
|
test('does not show html', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText(htmlInput);
|
|
await suite.expectVisibleDropdown();
|
|
await suite.enterKey();
|
|
await suite.expectHiddenDropdown();
|
|
|
|
await expect(suite.items.first()).toHaveText(htmlInput);
|
|
});
|
|
});
|
|
|
|
describe('set to true', () => {
|
|
const testId = 'allowhtml-true';
|
|
test('does not show html as text', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText(htmlInput);
|
|
await suite.expectVisibleDropdown();
|
|
await suite.enterKey();
|
|
await suite.expectHiddenDropdown();
|
|
|
|
await expect(suite.items.first()).toHaveText(textInput);
|
|
});
|
|
});
|
|
|
|
describe('set to true - except user input', () => {
|
|
const testId = 'allowhtml-true-userinput-false';
|
|
test('does not show html as text', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText(htmlInput);
|
|
await suite.expectVisibleDropdown();
|
|
await suite.enterKey();
|
|
await suite.expectHiddenDropdown();
|
|
|
|
await expect(suite.items.first()).toHaveText(htmlInput);
|
|
});
|
|
});
|
|
|
|
describe('set to false', () => {
|
|
const testId = 'allowhtml-false';
|
|
test('does not show html as text', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText(htmlInput);
|
|
await suite.expectVisibleDropdown();
|
|
await suite.enterKey();
|
|
await suite.expectHiddenDropdown();
|
|
|
|
await expect(suite.items.first()).toHaveText(htmlInput);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('re-initialising a choices instance', () => {
|
|
const testId = 'new-destroy-init';
|
|
const testvalue = 'Choice 2';
|
|
test('preserves the choices & items lists', async ({ page, bundle }) => {
|
|
let suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText(testvalue);
|
|
await suite.expectVisibleDropdown();
|
|
await suite.enterKey();
|
|
await suite.expectHiddenDropdown();
|
|
|
|
await expect(suite.choices).toHaveCount(3);
|
|
|
|
await suite.group.locator('.destroy').click({ force: true });
|
|
|
|
await expect(suite.group.locator('select > option')).toHaveCount(3);
|
|
|
|
await suite.group.locator('.init').click({ force: true });
|
|
|
|
suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await expect(suite.choices).toHaveCount(3);
|
|
await suite.expectedValue(testvalue);
|
|
});
|
|
|
|
test('preserves the original select element', async ({ page, bundle }) => {
|
|
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
|
|
await suite.startWithClick();
|
|
await suite.typeText(testvalue);
|
|
await suite.expectVisibleDropdown();
|
|
await suite.enterKey();
|
|
await suite.expectHiddenDropdown();
|
|
|
|
await expect(suite.choices).toHaveCount(3);
|
|
|
|
await expect(suite.group.locator('select > option')).toHaveCount(3);
|
|
expect(await suite.getWrappedElement().inputValue()).toEqual(testvalue);
|
|
});
|
|
});
|
|
});
|
|
});
|