aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2017-03-13 16:55:57 +0100
committerGitHub <noreply@github.com>2017-03-13 16:55:57 +0100
commitc853091a85d253f765993429dc4df165616c4687 (patch)
tree547c6bdeefbd904192e340e82c003d01d9a6ab66 /web/src/js
parent647d7601b281f2d7e12ff9073618a81d99046aad (diff)
parent9ce92b1f4318a7a283c54d2ff4e46605654fbff4 (diff)
downloadmitmproxy-c853091a85d253f765993429dc4df165616c4687.tar.gz
mitmproxy-c853091a85d253f765993429dc4df165616c4687.tar.bz2
mitmproxy-c853091a85d253f765993429dc4df165616c4687.zip
Merge pull request #2137 from MatthewShao/jest-dev
[web] Add tests for ducks/utils/store.js
Diffstat (limited to 'web/src/js')
-rw-r--r--web/src/js/__tests__/ducks/utils/storeSpec.js86
1 files changed, 86 insertions, 0 deletions
diff --git a/web/src/js/__tests__/ducks/utils/storeSpec.js b/web/src/js/__tests__/ducks/utils/storeSpec.js
new file mode 100644
index 00000000..6bfea2c7
--- /dev/null
+++ b/web/src/js/__tests__/ducks/utils/storeSpec.js
@@ -0,0 +1,86 @@
+jest.unmock('../../../ducks/utils/store')
+
+import reduceStore, * as storeActions from '../../../ducks/utils/store'
+
+describe('store reducer', () => {
+ it('should return initial state', () => {
+ expect(reduceStore(undefined, {})).toEqual({
+ byId: {},
+ list: [],
+ listIndex: {},
+ view: [],
+ viewIndex: {},
+ })
+ })
+
+ it('should handle add action', () => {
+ let a = {id: 1},
+ b = {id: 9},
+ state = reduceStore(undefined, {})
+ expect(state = reduceStore(state, storeActions.add(a))).toEqual({
+ byId: { 1: a },
+ listIndex: { 1: 0 },
+ list: [ a ],
+ view: [ a ],
+ viewIndex: { 1: 0 },
+ })
+
+ expect(reduceStore(state, storeActions.add(b))).toEqual({
+ byId: { 1: a, 9: b },
+ listIndex: { 1: 0, 9: 1 },
+ list: [ a, b ],
+ view: [ a, b ],
+ viewIndex: { 1: 0, 9: 1 },
+ })
+ })
+
+ it('should not add the item with duplicated id', () => {
+ let a = {id: 1},
+ state = reduceStore(undefined, storeActions.add(a))
+ expect(reduceStore(state, storeActions.add(a))).toEqual(state)
+ })
+
+ it('should handle update action', () => {
+ let a = {id: 1, foo: "foo"},
+ updated = {...a, foo: "bar"},
+ state = reduceStore(undefined, storeActions.add(a))
+ expect(reduceStore(state, storeActions.update(updated))).toEqual({
+ byId: { 1: updated },
+ list: [ updated ],
+ listIndex: { 1: 0 },
+ view: [ updated ],
+ viewIndex: { 1: 0 },
+ })
+ })
+
+ it('should handle update action with filter', () => {
+ let a = {id: 0},
+ b = {id: 1},
+ state = reduceStore(undefined, storeActions.add(a))
+ state = reduceStore(state, storeActions.add(b))
+ expect(reduceStore(state, storeActions.update(b,
+ item => {return item.id < 1}))).toEqual({
+ byId: { 0: a, 1: b },
+ list: [ a, b ],
+ listIndex: { 0: 0, 1: 1 },
+ view: [ a ],
+ viewIndex: { 0: 0 }
+ })
+ })
+
+ it('should handle update action with sort', () => {
+ let a = {id: 2},
+ b = {id: 3},
+ state = reduceStore(undefined, storeActions.add(a))
+ state = reduceStore(state, storeActions.add(b))
+ expect(reduceStore(state, storeActions.update(a, undefined,
+ (a, b) => {return b.id - a.id}))).toEqual({
+ // sort by id in descending order
+ byId: { 2: a, 3: b },
+ list: [ a, b ],
+ listIndex: {2: 0, 3: 1},
+ view: [ b, a ],
+ viewIndex: { 2: 1, 3: 0 },
+ })
+ })
+})