forked from zoltantothcom/Design-Patterns-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmit.test.js
More file actions
80 lines (72 loc) · 1.8 KB
/
submit.test.js
File metadata and controls
80 lines (72 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import configureMockStore from 'redux-mock-store';
import { submitMiddleware } from '../../src/middleware/submit';
import { SUBMIT } from '../../src/static/constants/actions';
const next = jest.fn();
const mockStore = configureMockStore();
const patterns = [
{
uuid: 'abc123',
name: 'Prototype',
type: 'creational',
codeES5: 'Code ES5',
codeES6: 'Code ES6',
answered: false,
answerId: null,
correct: null
},
{
uuid: 'abc234',
name: 'Singleton',
type: 'creational',
codeES5: 'Code ES5',
codeES6: 'Code ES6',
answered: false,
answerId: null,
correct: null
}
];
describe('Submit middleware', () => {
it('should update the payload upon SUBMIT', () => {
const store = mockStore({
progress: {
answers: [],
remaining: patterns,
current: patterns[0]
}
});
const action = { type: SUBMIT, payload: 'abc123' };
submitMiddleware(store)(next)(action);
expect(next).toHaveBeenCalledWith({
payload: {
currentIndex: 0,
recentlyAnswered: {
answerId: 'abc123',
answered: true,
correct: true,
name: 'Prototype',
type: 'creational',
uuid: 'abc123'
},
remainingPatterns: [
{
answerId: null,
answered: false,
codeES5: 'Code ES5',
codeES6: 'Code ES6',
correct: null,
name: 'Singleton',
type: 'creational',
uuid: 'abc234'
}
]
},
type: SUBMIT
});
});
it('should return _next_ when the action is not SUBMIT', () => {
const store = mockStore({});
const action = { type: 'ERROR' };
submitMiddleware(store)(next)(action);
expect(store.getActions()[0]).toBeFalsy();
});
});