aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-01 08:32:55 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-10-01 08:32:55 +0900
commit40cc5b9175f08f66c9c6a9d6efad59bf47cea307 (patch)
tree6336e6681bb5707c94a866129694473a4dfc4924 /test
parent567b696cecbec870c36f5a07dd02fb5d9f9efb9b (diff)
add tests for completion and fix
Diffstat (limited to 'test')
-rw-r--r--test/actions/completion.test.js27
-rw-r--r--test/reducers/completion.test.js90
2 files changed, 117 insertions, 0 deletions
diff --git a/test/actions/completion.test.js b/test/actions/completion.test.js
new file mode 100644
index 0000000..da88f53
--- /dev/null
+++ b/test/actions/completion.test.js
@@ -0,0 +1,27 @@
+import { expect } from "chai";
+import actions from '../../src/actions';
+import * as completionActions from '../../src/actions/completion';
+
+describe("completion actions", () => {
+ describe('setItems', () => {
+ it('create COMPLETION_SET_ITEMS action', () => {
+ let action = completionActions.setItems([1, 2, 3]);
+ expect(action.type).to.equal(actions.COMPLETION_SET_ITEMS);
+ expect(action.groups).to.deep.equal([1, 2, 3]);
+ });
+ });
+
+ describe('selectNext', () => {
+ it('create COMPLETION_SELECT_NEXT action', () => {
+ let action = completionActions.selectNext();
+ expect(action.type).to.equal(actions.COMPLETION_SELECT_NEXT);
+ });
+ });
+
+ describe('selectPrev', () => {
+ it('create COMPLETION_SELECT_PREV action', () => {
+ let action = completionActions.selectPrev();
+ expect(action.type).to.equal(actions.COMPLETION_SELECT_PREV);
+ });
+ });
+});
diff --git a/test/reducers/completion.test.js b/test/reducers/completion.test.js
new file mode 100644
index 0000000..79163bf
--- /dev/null
+++ b/test/reducers/completion.test.js
@@ -0,0 +1,90 @@
+import { expect } from "chai";
+import actions from '../../src/actions';
+import completionReducer from '../../src/reducers/completion';
+
+describe("completion reducer", () => {
+ it ('return the initial state', () => {
+ let state = completionReducer(undefined, {});
+ expect(state).to.have.property('groupSelection', -1);
+ expect(state).to.have.property('itemSelection', -1);
+ expect(state).to.have.deep.property('groups', []);
+ });
+
+ it ('return next state for COMPLETION_SET_ITEMS', () => {
+ let state = {
+ groupSelection: 0,
+ itemSelection: 0,
+ groups: [],
+ }
+ let action = {
+ type: actions.COMPLETION_SET_ITEMS,
+ groups: [{
+ name: 'Apple',
+ items: [1, 2, 3]
+ }, {
+ name: 'Banana',
+ items: [4, 5, 6]
+ }]
+ }
+ state = completionReducer(state, action);
+ expect(state).to.have.property('groups', action.groups);
+ expect(state).to.have.property('groupSelection', -1);
+ expect(state).to.have.property('itemSelection', -1);
+ });
+
+ it ('return next state for COMPLETION_SELECT_NEXT', () => {
+ let action = { type: actions.COMPLETION_SELECT_NEXT };
+ let state = {
+ groupSelection: -1,
+ itemSelection: -1,
+ groups: [{
+ name: 'Apple',
+ items: [1, 2]
+ }, {
+ name: 'Banana',
+ items: [3]
+ }]
+ };
+
+ state = completionReducer(state, action);
+ expect(state).to.have.property('groupSelection', 0);
+ expect(state).to.have.property('itemSelection', 0);
+
+ state = completionReducer(state, action);
+ expect(state).to.have.property('groupSelection', 0);
+ expect(state).to.have.property('itemSelection', 1);
+
+ state = completionReducer(state, action);
+ state = completionReducer(state, action);
+ expect(state).to.have.property('groupSelection', -1);
+ expect(state).to.have.property('itemSelection', -1);
+ });
+
+ it ('return next state for COMPLETION_SELECT_PREV', () => {
+ let action = { type: actions.COMPLETION_SELECT_PREV };
+ let state = {
+ groupSelection: -1,
+ itemSelection: -1,
+ groups: [{
+ name: 'Apple',
+ items: [1, 2]
+ }, {
+ name: 'Banana',
+ items: [3]
+ }]
+ };
+
+ state = completionReducer(state, action);
+ expect(state).to.have.property('groupSelection', 1);
+ expect(state).to.have.property('itemSelection', 0);
+
+ state = completionReducer(state, action);
+ expect(state).to.have.property('groupSelection', 0);
+ expect(state).to.have.property('itemSelection', 1);
+
+ state = completionReducer(state, action);
+ state = completionReducer(state, action);
+ expect(state).to.have.property('groupSelection', -1);
+ expect(state).to.have.property('itemSelection', -1);
+ });
+});