2018-05-09 12:01:36 +05:30
|
|
|
import $ from 'jquery';
|
2022-07-16 23:28:13 +05:30
|
|
|
import { loadHTMLFixture, resetHTMLFixture } from 'helpers/fixtures';
|
2018-03-17 18:26:18 +05:30
|
|
|
import CreateItemDropdown from '~/create_item_dropdown';
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
const DROPDOWN_ITEM_DATA = [
|
|
|
|
{
|
|
|
|
title: 'one',
|
|
|
|
id: 'one',
|
|
|
|
text: 'one',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'two',
|
|
|
|
id: 'two',
|
|
|
|
text: 'two',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'three',
|
|
|
|
id: 'three',
|
|
|
|
text: 'three',
|
|
|
|
},
|
2022-02-05 19:09:49 +05:30
|
|
|
{
|
|
|
|
title: '<b>four</b>title',
|
|
|
|
id: '<b>four</b>id',
|
|
|
|
text: '<b>four</b>text',
|
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
];
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
describe('CreateItemDropdown', () => {
|
|
|
|
let $wrapperEl;
|
|
|
|
let createItemDropdown;
|
|
|
|
|
|
|
|
function createItemAndClearInput(text) {
|
|
|
|
// Filter for the new item
|
2021-03-08 18:12:59 +05:30
|
|
|
$wrapperEl.find('.dropdown-input-field').val(text).trigger('input');
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
// Create the new item
|
|
|
|
const $createButton = $wrapperEl.find('.js-dropdown-create-new-item');
|
|
|
|
$createButton.click();
|
|
|
|
|
|
|
|
// Clear out the filter
|
2021-03-08 18:12:59 +05:30
|
|
|
$wrapperEl.find('.dropdown-input-field').val('').trigger('input');
|
2018-03-17 18:26:18 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2022-07-16 23:28:13 +05:30
|
|
|
loadHTMLFixture('static/create_item_dropdown.html');
|
2018-03-17 18:26:18 +05:30
|
|
|
$wrapperEl = $('.js-create-item-dropdown-fixture-root');
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
$wrapperEl.remove();
|
2022-07-16 23:28:13 +05:30
|
|
|
resetHTMLFixture();
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
describe('items', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
createItemDropdown = new CreateItemDropdown({
|
|
|
|
$dropdown: $wrapperEl.find('.js-dropdown-menu-toggle'),
|
|
|
|
defaultToggleLabel: 'All variables',
|
|
|
|
fieldName: 'variable[environment]',
|
|
|
|
getData: (term, callback) => {
|
|
|
|
callback(DROPDOWN_ITEM_DATA);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should have a dropdown item for each piece of data', () => {
|
|
|
|
// Get the data in the dropdown
|
|
|
|
$('.js-dropdown-menu-toggle').click();
|
|
|
|
|
|
|
|
const $itemEls = $wrapperEl.find('.js-dropdown-content a');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect($itemEls.length).toEqual(DROPDOWN_ITEM_DATA.length);
|
2022-02-05 19:09:49 +05:30
|
|
|
|
|
|
|
DROPDOWN_ITEM_DATA.forEach((dataItem, i) => {
|
|
|
|
expect($($itemEls[i]).text()).toEqual(dataItem.text);
|
|
|
|
});
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('created items', () => {
|
|
|
|
const NEW_ITEM_TEXT = 'foobarbaz';
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
createItemDropdown = new CreateItemDropdown({
|
|
|
|
$dropdown: $wrapperEl.find('.js-dropdown-menu-toggle'),
|
|
|
|
defaultToggleLabel: 'All variables',
|
|
|
|
fieldName: 'variable[environment]',
|
|
|
|
getData: (term, callback) => {
|
|
|
|
callback(DROPDOWN_ITEM_DATA);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// Open the dropdown
|
|
|
|
$('.js-dropdown-menu-toggle').click();
|
|
|
|
|
|
|
|
// Filter for the new item
|
2021-03-08 18:12:59 +05:30
|
|
|
$wrapperEl.find('.dropdown-input-field').val(NEW_ITEM_TEXT).trigger('input');
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('create new item button should include the filter text', () => {
|
|
|
|
expect($wrapperEl.find('.js-dropdown-create-new-item code').text()).toEqual(NEW_ITEM_TEXT);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should update the dropdown with the newly created item', () => {
|
|
|
|
// Create the new item
|
|
|
|
const $createButton = $wrapperEl.find('.js-dropdown-create-new-item');
|
|
|
|
$createButton.click();
|
|
|
|
|
|
|
|
expect($wrapperEl.find('.dropdown-toggle-text').text()).toEqual(NEW_ITEM_TEXT);
|
|
|
|
expect($wrapperEl.find('input[name="variable[environment]"]').val()).toEqual(NEW_ITEM_TEXT);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should include newly created item in dropdown list', () => {
|
|
|
|
createItemAndClearInput(NEW_ITEM_TEXT);
|
|
|
|
|
|
|
|
const $itemEls = $wrapperEl.find('.js-dropdown-content a');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect($itemEls.length).toEqual(1 + DROPDOWN_ITEM_DATA.length);
|
|
|
|
expect($($itemEls.get(DROPDOWN_ITEM_DATA.length)).text()).toEqual(NEW_ITEM_TEXT);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not duplicate an item when trying to create an existing item', () => {
|
|
|
|
createItemAndClearInput(DROPDOWN_ITEM_DATA[0].text);
|
|
|
|
|
|
|
|
const $itemEls = $wrapperEl.find('.js-dropdown-content a');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect($itemEls.length).toEqual(DROPDOWN_ITEM_DATA.length);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('clearDropdown()', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
createItemDropdown = new CreateItemDropdown({
|
|
|
|
$dropdown: $wrapperEl.find('.js-dropdown-menu-toggle'),
|
|
|
|
defaultToggleLabel: 'All variables',
|
|
|
|
fieldName: 'variable[environment]',
|
|
|
|
getData: (term, callback) => {
|
|
|
|
callback(DROPDOWN_ITEM_DATA);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should clear all data and filter input', () => {
|
|
|
|
const filterInput = $wrapperEl.find('.dropdown-input-field');
|
|
|
|
|
|
|
|
// Get the data in the dropdown
|
|
|
|
$('.js-dropdown-menu-toggle').click();
|
|
|
|
|
|
|
|
// Filter for an item
|
2018-12-13 13:39:08 +05:30
|
|
|
filterInput.val('one').trigger('input');
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
const $itemElsAfterFilter = $wrapperEl.find('.js-dropdown-content a');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect($itemElsAfterFilter.length).toEqual(1);
|
|
|
|
|
|
|
|
createItemDropdown.clearDropdown();
|
|
|
|
|
|
|
|
const $itemElsAfterClear = $wrapperEl.find('.js-dropdown-content a');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect($itemElsAfterClear.length).toEqual(0);
|
|
|
|
expect(filterInput.val()).toEqual('');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('createNewItemFromValue option', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
createItemDropdown = new CreateItemDropdown({
|
|
|
|
$dropdown: $wrapperEl.find('.js-dropdown-menu-toggle'),
|
|
|
|
defaultToggleLabel: 'All variables',
|
|
|
|
fieldName: 'variable[environment]',
|
|
|
|
getData: (term, callback) => {
|
|
|
|
callback(DROPDOWN_ITEM_DATA);
|
|
|
|
},
|
2021-03-08 18:12:59 +05:30
|
|
|
createNewItemFromValue: (newValue) => ({
|
2018-03-17 18:26:18 +05:30
|
|
|
title: `${newValue}-title`,
|
|
|
|
id: `${newValue}-id`,
|
|
|
|
text: `${newValue}-text`,
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('all items go through createNewItemFromValue', () => {
|
|
|
|
// Get the data in the dropdown
|
|
|
|
$('.js-dropdown-menu-toggle').click();
|
|
|
|
|
|
|
|
createItemAndClearInput('new-item');
|
|
|
|
|
|
|
|
const $itemEls = $wrapperEl.find('.js-dropdown-content a');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect($itemEls.length).toEqual(1 + DROPDOWN_ITEM_DATA.length);
|
2022-02-05 19:09:49 +05:30
|
|
|
expect($($itemEls[DROPDOWN_ITEM_DATA.length]).text()).toEqual('new-item-text');
|
2018-03-17 18:26:18 +05:30
|
|
|
expect($wrapperEl.find('.dropdown-toggle-text').text()).toEqual('new-item-title');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|