Choices/src/scripts/reducers/items.test.ts
Josh Johnson 68313da412
Convert to typescript (#795)
* Typescript config setup

* Add type annotations to components

* Further type additions

* And more...

* Add types to actions

* Add types to templates

* Further type checks

* Further type additons

* Install fuse latest

* Housekeeping

* Remove old type definitions

* Fix remaning type issues

* Fix some failing tests

* Remove types workflow

* Fix failing unit tests

* Resolve back space event regression

* Convert cypress files to .ts

* Fix eslint issues

* Remove cachebusting urls

* Resolve delete button bug

* Resolve regression bugs

* Fix lint script

* Fix lint workflow

* Pass args instead of object to keyboard handlers

* Flatten misc reducer

* Resolve keyboad action test failures

* Use Pick instead of Partial

* Use interfaces in action tests

* Update firefox image

* Incorporate #791

* Incorporate #788
2019-12-23 18:22:54 +00:00

183 lines
4.3 KiB
TypeScript

import { expect } from 'chai';
import items, { defaultState } from './items';
import { RemoveItemAction } from '../actions/items';
describe('reducers/items', () => {
it('should return same state when no action matches', () => {
expect(items(defaultState, {} as any)).to.equal(defaultState);
});
describe('when items do not exist', () => {
describe('ADD_ITEM', () => {
const value = 'Item one';
const label = 'Item one';
const id = 1234;
const choiceId = 5678;
const groupId = 1;
const customProperties = {
property: 'value',
};
const placeholder = true;
const keyCode = 10;
describe('passing expected values', () => {
let actualResponse;
beforeEach(() => {
actualResponse = items(undefined, {
type: 'ADD_ITEM',
value,
label,
id,
choiceId,
groupId,
customProperties,
placeholder,
keyCode,
});
});
it('adds item', () => {
const expectedResponse = [
{
id,
choiceId,
groupId,
value,
label,
active: true,
highlighted: false,
customProperties,
placeholder,
keyCode: null,
},
];
expect(actualResponse).to.eql(expectedResponse);
});
it('unhighlights all highlighted items', () => {
actualResponse.forEach(item => {
expect(item.highlighted).to.equal(false);
});
});
});
describe('fallback values', () => {
describe('passing no placeholder value', () => {
it('adds item with placeholder set to false', () => {
const expectedResponse = [
{
id,
choiceId,
groupId,
value,
label,
active: true,
highlighted: false,
customProperties,
placeholder: false,
keyCode: null,
},
];
const actualResponse = items(undefined, {
type: 'ADD_ITEM',
value,
label,
id,
choiceId,
groupId,
customProperties,
placeholder: undefined,
keyCode,
});
expect(actualResponse).to.eql(expectedResponse);
});
});
});
});
});
describe('when items exist', () => {
let state;
beforeEach(() => {
state = [
{
id: 1,
choiceId: 1,
groupId: -1,
value: 'Item one',
label: 'Item one',
active: false,
highlighted: false,
customProperties: null,
placeholder: false,
keyCode: null,
},
{
id: 2,
choiceId: 2,
groupId: -1,
value: 'Item one',
label: 'Item one',
active: true,
highlighted: false,
customProperties: null,
placeholder: false,
keyCode: null,
},
];
});
describe('REMOVE_ITEM', () => {
it('sets an item to be inactive based on passed ID', () => {
const clonedState = state.slice(0);
const id = 2;
const expectedResponse = [
{
...state[0],
},
{
...state[1],
active: false,
},
];
const actualResponse = items(clonedState, {
type: 'REMOVE_ITEM',
id,
} as RemoveItemAction);
expect(actualResponse).to.eql(expectedResponse);
});
});
describe('HIGHLIGHT_ITEM', () => {
it('sets an item to be inactive based on passed ID', () => {
const clonedState = state.slice(0);
const id = 2;
const expectedResponse = [
{
...state[0],
},
{
...state[1],
highlighted: true,
},
];
const actualResponse = items(clonedState, {
type: 'HIGHLIGHT_ITEM',
id,
highlighted: true,
});
expect(actualResponse).to.eql(expectedResponse);
});
});
});
});