forked from robinvdvleuten/vuex-persistedstate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
288 lines (212 loc) · 7.67 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
import Vue from 'vue';
import Vuex from 'vuex';
import Storage from 'dom-storage';
import createPersistedState from './index';
// Do not show the production tip while running tests.
Vue.config.productionTip = false;
Vue.use(Vuex);
it('can be created with the default options', () => {
window.localStorage = new Storage();
expect(() => createPersistedState()).not.toThrow();
});
it("replaces store's state and subscribes to changes when initializing", () => {
const storage = new Storage();
storage.setItem('vuex', JSON.stringify({ persisted: 'json' }));
const store = new Vuex.Store({ state: { original: 'state' } });
store.replaceState = jest.fn();
store.subscribe = jest.fn();
const plugin = createPersistedState({ storage });
plugin(store);
expect(store.replaceState).toBeCalledWith({
original: 'state',
persisted: 'json'
});
expect(store.subscribe).toBeCalled();
});
it("does not replaces store's state when receiving invalid JSON", () => {
const storage = new Storage();
storage.setItem('vuex', '<invalid JSON>');
const store = new Vuex.Store({ state: { nested: { original: 'state' } } });
store.replaceState = jest.fn();
store.subscribe = jest.fn();
const plugin = createPersistedState({ storage });
plugin(store);
expect(store.replaceState).not.toBeCalled();
expect(store.subscribe).toBeCalled();
});
it("does not replaces store's state when receiving null", () => {
const storage = new Storage();
storage.setItem('vuex', JSON.stringify(null));
const store = new Vuex.Store({ state: { nested: { original: 'state' } } });
store.replaceState = jest.fn();
store.subscribe = jest.fn();
const plugin = createPersistedState({ storage });
plugin(store);
expect(store.replaceState).not.toBeCalled();
expect(store.subscribe).toBeCalled();
});
it("respects nested values when it replaces store's state on initializing", () => {
const storage = new Storage();
storage.setItem('vuex', JSON.stringify({ persisted: 'json' }));
const store = new Vuex.Store({ state: { original: 'state' } });
store.replaceState = jest.fn();
store.subscribe = jest.fn();
const plugin = createPersistedState({ storage });
plugin(store);
expect(store.replaceState).toBeCalledWith({
original: 'state',
persisted: 'json'
});
expect(store.subscribe).toBeCalled();
});
it('should persist the changed parial state back to serialized JSON', () => {
const storage = new Storage();
const store = new Vuex.Store({ state: {} });
const plugin = createPersistedState({ storage, paths: ['changed'] });
plugin(store);
store._subscribers[0]('mutation', { changed: 'state' });
expect(storage.getItem('vuex')).toBe(JSON.stringify({ changed: 'state' }));
});
it('persist the changed partial state back to serialized JSON under a configured key', () => {
const storage = new Storage();
const store = new Vuex.Store({ state: {} });
const plugin = createPersistedState({
storage,
key: 'custom',
paths: ['changed']
});
plugin(store);
store._subscribers[0]('mutation', { changed: 'state' });
expect(storage.getItem('custom')).toBe(JSON.stringify({ changed: 'state' }));
});
it('persist the changed full state back to serialized JSON when no paths are given', () => {
const storage = new Storage();
const store = new Vuex.Store({ state: {} });
const plugin = createPersistedState({ storage });
plugin(store);
store._subscribers[0]('mutation', { changed: 'state' });
expect(storage.getItem('vuex')).toBe(JSON.stringify({ changed: 'state' }));
});
it('persist the changed partial state back to serialized JSON under a nested path', () => {
const storage = new Storage();
const store = new Vuex.Store({ state: {} });
const plugin = createPersistedState({
storage,
paths: ['foo.bar', 'bar']
});
plugin(store);
store._subscribers[0]('mutation', { foo: { bar: 'baz' }, bar: 'baz' });
expect(storage.getItem('vuex')).toBe(
JSON.stringify({ foo: { bar: 'baz' }, bar: 'baz' })
);
});
it('should not persist null values', () => {
const storage = new Storage();
const store = new Vuex.Store({
state: { alpha: { name: null, bravo: { name: null } } }
});
const plugin = createPersistedState({
storage,
paths: ['alpha.name', 'alpha.bravo.name']
});
plugin(store);
store._subscribers[0]('mutation', { charlie: { name: 'charlie' } });
expect(storage.getItem('vuex')).toBe(
JSON.stringify({ alpha: { bravo: {} } })
);
});
it('should not merge array values when rehydrating by default', () => {
const storage = new Storage();
storage.setItem('vuex', JSON.stringify({ persisted: ['json'] }));
const store = new Vuex.Store({ state: { persisted: ['state'] } });
store.replaceState = jest.fn();
store.subscribe = jest.fn();
const plugin = createPersistedState({ storage });
plugin(store);
expect(store.replaceState).toBeCalledWith({
persisted: ['json'],
});
expect(store.subscribe).toBeCalled();
});
it('should not clone circular objects when rehydrating', () => {
const circular = { foo: 'bar' };
circular.foo = circular;
const storage = new Storage();
storage.setItem('vuex', JSON.stringify({ persisted: 'baz' }));
const store = new Vuex.Store({ state: { circular } });
store.replaceState = jest.fn();
store.subscribe = jest.fn();
const plugin = createPersistedState({ storage });
plugin(store);
expect(store.replaceState).toBeCalledWith({
circular,
persisted: 'baz',
});
expect(store.subscribe).toBeCalled();
});
it('should apply a custom arrayMerger function', () => {
const storage = new Storage();
storage.setItem('vuex', JSON.stringify({ persisted: [1, 2] }));
const store = new Vuex.Store({ state: { persisted: [1, 2, 3] } });
store.replaceState = jest.fn();
store.subscribe = jest.fn();
const plugin = createPersistedState({
storage,
arrayMerger: function (store, saved) { return ['hello!'] },
});
plugin(store);
expect(store.replaceState).toBeCalledWith({
persisted: ['hello!'],
});
expect(store.subscribe).toBeCalled();
});
it("rehydrates store's state through the configured getter", () => {
const storage = new Storage();
const store = new Vuex.Store({ state: {} });
store.replaceState = jest.fn();
const plugin = createPersistedState({
storage,
getState: () => ({ getter: 'item' })
});
plugin(store);
expect(store.replaceState).toBeCalledWith({ getter: 'item' });
});
it('persist the changed state back through the configured setter', () => {
expect.assertions(1);
const storage = new Storage();
const store = new Vuex.Store({ state: {} });
const plugin = createPersistedState({
storage,
setState: (key, state) => {
expect(state).toEqual({ setter: 'item' });
}
});
plugin(store);
store._subscribers[0]('mutation', { setter: 'item' });
});
it('uses the configured reducer when persisting the state', () => {
const storage = new Storage();
const store = new Vuex.Store({ state: {} });
const customReducer = jest.fn();
const plugin = createPersistedState({
storage,
paths: ['custom'],
reducer: customReducer
});
plugin(store);
store._subscribers[0]('mutation', { custom: 'value' });
expect(customReducer).toBeCalledWith({ custom: 'value' }, ['custom']);
});
it('filters to specific mutations', () => {
const storage = new Storage();
const store = new Vuex.Store({ state: {} });
const plugin = createPersistedState({
storage,
filter: mutation => ['filter'].indexOf(mutation) !== -1
});
plugin(store);
store._subscribers[0]('mutation', { changed: 'state' });
expect(storage.getItem('vuex')).toBeNull();
store._subscribers[0]('filter', { changed: 'state' });
expect(storage.getItem('vuex')).toBe(JSON.stringify({ changed: 'state' }));
});