From e1c70769ea235a78da463ab21de40582381bec78 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Mon, 6 Nov 2017 22:03:53 +0900 Subject: add find action and reducer --- test/content/actions/find.test.js | 19 +++++++++++++++++++ test/content/reducers/find.test.js | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 test/content/actions/find.test.js create mode 100644 test/content/reducers/find.test.js (limited to 'test') diff --git a/test/content/actions/find.test.js b/test/content/actions/find.test.js new file mode 100644 index 0000000..676e105 --- /dev/null +++ b/test/content/actions/find.test.js @@ -0,0 +1,19 @@ +import { expect } from "chai"; +import actions from 'content/actions'; +import * as findActions from 'content/actions/find'; + +describe("find actions", () => { + describe("show", () => { + it('create FIND_SHOW action', () => { + let action = findActions.show(); + expect(action.type).to.equal(actions.FIND_SHOW); + }); + }); + + describe("hide", () => { + it('create FIND_HIDE action', () => { + let action = findActions.hide(); + expect(action.type).to.equal(actions.FIND_HIDE); + }); + }); +}); diff --git a/test/content/reducers/find.test.js b/test/content/reducers/find.test.js new file mode 100644 index 0000000..3aacbd9 --- /dev/null +++ b/test/content/reducers/find.test.js @@ -0,0 +1,36 @@ +import { expect } from "chai"; +import actions from 'content/actions'; +import findReducer from 'content/reducers/find'; + +describe("find reducer", () => { + it('return the initial state', () => { + let state = findReducer(undefined, {}); + expect(state).to.have.property('enabled', false); + expect(state).to.have.property('keyword', ''); + }); + + it('return next state for FIND_SHOW', () => { + let action = { type: actions.FIND_SHOW }; + let prev = { enabled: false }; + let state = findReducer(prev, action); + + expect(state.enabled).is.equal(true); + }); + + it('return next state for FIND_HIDE', () => { + let action = { type: actions.FIND_HIDE }; + let prev = { enabled: true }; + let state = findReducer(prev, action); + + expect(state.enabled).is.equal(false); + }); + + it('return next state for FIND_SET_KEYWORD', () => { + let action = { type: actions.FIND_SET_KEYWORD, keyword: 'my-search' }; + let state = { enabled: true, keyword: '' }; + + state = findReducer(state, action); + + expect(state.keyword).is.equal('my-search'); + }); +}); -- cgit v1.2.3