-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest.js
145 lines (126 loc) · 2.57 KB
/
test.js
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import tap, { test } from 'tap';
import { createStore, applyMiddleware } from 'redux';
import { Schema, arrayOf } from 'normalizr';
import normalizrMiddleware from './index';
function mergeReducer(state = {}, action) {
return action.payload;
}
// from the normalizr readme
const article = new Schema('articles');
const user = new Schema('users');
const collection = new Schema('collections');
article.define({
author: user,
collections: arrayOf(collection)
});
collection.define({
curator: user
});
const schema = {
articles: arrayOf(article)
};
const response = {
articles: [{
id: 1,
title: 'Some Article',
author: {
id: 7,
name: 'Dan'
}
}, {
id: 2,
title: 'Another Article',
author: {
id: 9,
name: 'Will'
}
}]
};
const expected = {
result: {
articles: [1, 2]
},
entities: {
articles: {
1: {
id: 1,
title: 'Some Article',
author: 7,
},
2: {
id: 2,
title: 'Another Article',
author: 9,
}
},
users: {
7: {
id: 7,
name: 'Dan'
},
9: {
id: 9,
name: 'Will'
}
}
}
};
test('normalizes payload with FSA defaults', t => {
const createStoreWithNormalizr =
applyMiddleware(normalizrMiddleware())(createStore);
const store = createStoreWithNormalizr(mergeReducer);
store.dispatch({
type: 'FOO',
payload: response,
meta: {
schema
}
})
tap.deepEqual(store.getState(), expected);
t.done();
})
test('action is unmodified before middleware', t => {
const toDispatch = {
type: 'FOO',
payload: response,
meta: {
schema
}
};
const beforeMiddleware = store => next => action => {
tap.equal(action, toDispatch);
next(action);
t.done()
}
const store =
applyMiddleware(
beforeMiddleware,
normalizrMiddleware()
)(createStore)(mergeReducer);
store.dispatch(toDispatch)
})
test('preserves other action properties when normalizing', t => {
const toDispatch = {
type: 'FOO',
payload: response,
meta: {
schema,
some: 'other',
meta: 'data'
}
};
const afterMiddleware = store => next => action => {
tap.notEqual(action, toDispatch);
tap.notEqual(action.payload, toDispatch.payload);
tap.equal(action.type, toDispatch.type);
tap.equal(action.meta, toDispatch.meta);
next(action);
t.done()
}
const store =
applyMiddleware(
normalizrMiddleware(),
afterMiddleware
)(createStore)(mergeReducer);
store.dispatch(toDispatch)
})