Add action unit tests

This commit is contained in:
Josh Johnson 2017-10-08 15:48:51 +01:00
parent efc87cc6ce
commit 6f5673a6a3

View file

@ -0,0 +1,175 @@
import { expect } from 'chai';
import * as actions from './actions';
describe('actions', () => {
describe('addItem', () => {
it('returns ADD_ITEM action', () => {
const value = 'test';
const label = 'test';
const id = 'test';
const choiceId = 'test';
const groupId = 'test';
const customProperties = 'test';
const placeholder = 'test';
const keyCode = 'test';
const expectedAction = {
type: 'ADD_ITEM',
value,
label,
id,
choiceId,
groupId,
customProperties,
placeholder,
keyCode,
};
expect(actions.addItem(
value,
label,
id,
choiceId,
groupId,
customProperties,
placeholder,
keyCode,
)).to.eql(expectedAction);
});
});
describe('removeItem', () => {
it('returns REMOVE_ITEM action', () => {
const id = '1234';
const choiceId = '1';
const expectedAction = {
type: 'REMOVE_ITEM',
id,
choiceId,
};
expect(actions.removeItem(id, choiceId)).to.eql(expectedAction);
});
});
describe('highlightItem', () => {
it('returns HIGHLIGHT_ITEM action', () => {
const id = '1234';
const highlighted = true;
const expectedAction = {
type: 'HIGHLIGHT_ITEM',
id,
highlighted,
};
expect(actions.highlightItem(id, highlighted)).to.eql(expectedAction);
});
});
describe('addChoice', () => {
it('returns ADD_CHOICE action', () => {
const value = 'test';
const label = 'test';
const id = 'test';
const groupId = 'test';
const disabled = 'test';
const elementId = 'test';
const customProperties = 'test';
const placeholder = 'test';
const keyCode = 'test';
const expectedAction = {
type: 'ADD_CHOICE',
value,
label,
id,
groupId,
disabled,
elementId,
customProperties,
placeholder,
keyCode,
};
expect(actions.addChoice(
value,
label,
id,
groupId,
disabled,
elementId,
customProperties,
placeholder,
keyCode,
)).to.eql(expectedAction);
});
});
describe('filterChoices', () => {
it('returns FILTER_CHOICES action', () => {
const results = Array(10);
const expectedAction = {
type: 'FILTER_CHOICES',
results,
};
expect(actions.filterChoices(results)).to.eql(expectedAction);
});
});
describe('activateChoices', () => {
it('returns ACTIVATE_CHOICES action', () => {
const active = true;
const expectedAction = {
type: 'ACTIVATE_CHOICES',
active,
};
expect(actions.activateChoices(active)).to.eql(expectedAction);
});
});
describe('clearChoices', () => {
it('returns CLEAR_CHOICES action', () => {
const expectedAction = {
type: 'CLEAR_CHOICES',
};
expect(actions.clearChoices()).to.eql(expectedAction);
});
});
describe('addGroup', () => {
it('returns ADD_GROUP action', () => {
const value = 'test';
const id = 'test';
const active = 'test';
const disabled = 'test';
const expectedAction = {
type: 'ADD_GROUP',
value,
id,
active,
disabled,
};
expect(actions.addGroup(
value,
id,
active,
disabled,
)).to.eql(expectedAction);
});
});
describe('clearAll', () => {
it('returns CLEAR_ALL action', () => {
const expectedAction = {
type: 'CLEAR_ALL',
};
expect(actions.clearAll()).to.eql(expectedAction);
});
});
});