forked from immerjs/immer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap-set.js
365 lines (332 loc) · 7.19 KB
/
map-set.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
"use strict"
import {
Immer,
nothing,
original,
isDraft,
immerable,
enablePatches,
enableMapSet
} from "../src/immer"
import {each, shallowCopy, isEnumerable, DRAFT_STATE} from "../src/utils/common"
enableMapSet()
enablePatches()
jest.setTimeout(1000)
runBaseTest("proxy (no freeze)", true, false)
runBaseTest("proxy (autofreeze)", true, true)
runBaseTest("proxy (autofreeze)(patch listener)", true, true, true)
function runBaseTest(name, autoFreeze, useListener) {
const listener = useListener ? function() {} : undefined
const {produce, produceWithPatches} = createPatchedImmer({
autoFreeze
})
// When `useListener` is true, append a function to the arguments of every
// uncurried `produce` call in every test. This makes tests easier to read.
function createPatchedImmer(options) {
const immer = new Immer(options)
const {produce} = immer
immer.produce = function(...args) {
return typeof args[1] === "function" && args.length < 3
? produce(...args, listener)
: produce(...args)
}
return immer
}
describe("map issues " + name, () => {
test("#472 ", () => {
const project = produce(new Map(), draft => {
draft.set("bar1", {blocked: false})
draft.set("bar2", {blocked: false})
})
// Read before write -- no error
produce(project, draft => {
const bar1 = draft.get("bar1")
const bar2 = draft.get("bar2")
bar1.blocked = true
bar2.blocked = true
})
// Read/write interleaved -- error
produce(project, draft => {
const bar1 = draft.get("bar1")
bar1.blocked = true
const bar2 = draft.get("bar2")
bar2.blocked = true // TypeError: "blocked" is read-only
})
})
test("#466 - setNoPatches", () => {
const obj = {
set: new Set()
}
const result = produceWithPatches(obj, draft => {
draft.set.add("abc")
})
expect(result).toEqual([
{set: new Set(["abc"])},
[{op: "add", path: ["set", 0], value: "abc"}],
[{op: "remove", path: ["set", 0], value: "abc"}]
])
})
test("#466 - mapChangeBug ", () => {
const obj = {
map: new Map([
[
"a",
new Map([
["b", true],
["c", true],
["d", true]
])
],
["b", new Map([["a", true]])],
["c", new Map([["a", true]])],
["d", new Map([["a", true]])]
])
}
const result = produceWithPatches(obj, draft => {
const aMap = draft.map.get("a")
aMap.forEach((_, other) => {
const otherMap = draft.map.get(other)
otherMap.delete("a")
})
})
expect(result).toEqual([
{
map: new Map([
[
"a",
new Map([
["b", true],
["c", true],
["d", true]
])
],
["b", new Map()],
["c", new Map()],
["d", new Map()]
])
},
[
{
op: "remove",
path: ["map", "b", "a"]
},
{
op: "remove",
path: ["map", "c", "a"]
},
{
op: "remove",
path: ["map", "d", "a"]
}
],
[
{
op: "add",
path: ["map", "b", "a"],
value: true
},
{
op: "add",
path: ["map", "c", "a"],
value: true
},
{
op: "add",
path: ["map", "d", "a"],
value: true
}
]
])
})
test("#466 - mapChangeBug2 ", () => {
const obj = {
map: new Map([
[
"a",
new Map([
["b", true],
["c", true],
["d", true]
])
],
["b", new Map([["a", true]])],
["c", new Map([["a", true]])],
["d", new Map([["a", true]])]
])
}
const obj1 = produce(obj, draft => {})
const [result, p, ip] = produceWithPatches(obj1, draft => {
const aMap = draft.map.get("a")
aMap.forEach((_, other) => {
const otherMap = draft.map.get(other)
otherMap.delete("a")
})
})
expect(result).toEqual({
map: new Map([
[
"a",
new Map([
["b", true],
["c", true],
["d", true]
])
],
["b", new Map([])],
["c", new Map([])],
["d", new Map([])]
])
})
expect(p).toEqual([
{
op: "remove",
path: ["map", "b", "a"]
},
{
op: "remove",
path: ["map", "c", "a"]
},
{
op: "remove",
path: ["map", "d", "a"]
}
])
expect(ip).toEqual([
{
op: "add",
path: ["map", "b", "a"],
value: true
},
{
op: "add",
path: ["map", "c", "a"],
value: true
},
{
op: "add",
path: ["map", "d", "a"],
value: true
}
])
})
test("#586", () => {
const base = new Set([1, 2])
const set = produce(base, draftSet => {
debugger
expect(Array.from(draftSet)).toEqual([1, 2])
draftSet.add(3)
})
expect(Array.from(set).sort()).toEqual([1, 2, 3])
})
test("#627 - new map key with value=undefined", () => {
const map = new Map()
const map1 = produce(map, draft => {
draft.set("key", undefined)
})
expect(map1.has("key")).toBe(true)
expect(map1.get("key")).toBe(undefined)
})
test("#663 - clear map", () => {
const map = new Map([
["a", "b"],
["b", "c"]
])
const result = produceWithPatches(map, draft => {
draft.clear()
})
expect(result).toEqual([
new Map(),
[
{op: "remove", path: ["a"]},
{op: "remove", path: ["b"]}
],
[
{op: "add", path: ["a"], value: "b"},
{op: "add", path: ["b"], value: "c"}
]
])
})
test("#680 - Clearing empty Set&Map should be noop", () => {
const map = new Map()
let result = produce(map, draft => {
draft.clear()
})
expect(result).toBe(map)
const set = new Set()
result = produce(set, draft => {
draft.clear()
})
expect(result).toBe(set)
})
test("#692 - idempotent plugin loading", () => {
let mapType1
produce(new Map(), draft => {
mapType1 = draft.constructor
})
enableMapSet()
let mapType2
produce(new Map(), draft => {
mapType2 = draft.constructor
})
expect(mapType1).toBe(mapType2)
})
test("#819 - Set with object maintains order when adding object", () => {
const items = [
{
id: "a"
},
{
id: "b"
}
]
const set = new Set([items[0]])
const newSet = produce(set, draft => {
draft.add(items[1])
})
expect(Array.from(newSet)).toEqual([items[0], items[1]])
})
// More specific varaint of above test covering case of adding non-object item
test("#819 - Set with object maintains order when adding string", () => {
const items = [
{
id: "a"
},
"b"
]
const set = new Set([items[0]])
const newSet = produce(set, draft => {
draft.add(items[1])
})
expect(Array.from(newSet)).toEqual([items[0], items[1]])
})
})
describe("set issues " + name, () => {
test("#819.A - maintains order when adding", () => {
const objs = [
"a",
{
id: "b"
}
]
const set = new Set([objs[0]])
const newSet = produce(set, draft => {
draft.add(objs[1])
})
// passes
expect(Array.from(newSet)).toEqual([objs[0], objs[1]])
})
test("#819.B - maintains order when adding", () => {
const objs = [
{
id: "a"
},
"b"
]
const set = new Set([objs[0]])
const newSet = produce(set, draft => {
draft.add(objs[1])
})
expect(Array.from(newSet)).toEqual([objs[0], objs[1]])
})
})
}