-
-
Notifications
You must be signed in to change notification settings - Fork 924
Expand file tree
/
Copy pathtest-updateElement.js
More file actions
391 lines (308 loc) · 10.7 KB
/
test-updateElement.js
File metadata and controls
391 lines (308 loc) · 10.7 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
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
"use strict"
var o = require("ospec")
var domMock = require("../../test-utils/domMock")
var vdom = require("../../render/render")
var m = require("../../render/hyperscript")
o.spec("updateElement", function() {
var $window, root, render
o.beforeEach(function() {
$window = domMock()
root = $window.document.createElement("div")
render = vdom($window)
})
o("updates attr", function() {
var vnode = m("a", {id: "b"})
var updated = m("a", {id: "c"})
render(root, vnode)
render(root, updated)
o(updated.dom).equals(vnode.dom)
o(updated.dom).equals(root.firstChild)
o(updated.dom.attributes["id"].value).equals("c")
})
o("adds attr", function() {
var vnode = m("a", {id: "b"})
var updated = m("a", {id: "c", title: "d"})
render(root, vnode)
render(root, updated)
o(updated.dom).equals(vnode.dom)
o(updated.dom).equals(root.firstChild)
o(updated.dom.attributes["title"].value).equals("d")
})
o("adds attr from empty attrs", function() {
var vnode = m("a")
var updated = m("a", {title: "d"})
render(root, vnode)
render(root, updated)
o(updated.dom).equals(vnode.dom)
o(updated.dom).equals(root.firstChild)
o(updated.dom.attributes["title"].value).equals("d")
})
o("removes attr", function() {
var vnode = m("a", {id: "b", title: "d"})
var updated = m("a", {id: "c"})
render(root, vnode)
render(root, updated)
o(updated.dom).equals(vnode.dom)
o(updated.dom).equals(root.firstChild)
o("title" in updated.dom.attributes).equals(false)
})
o("removes class", function() {
var vnode = m("a", {id: "b", className: "d"})
var updated = m("a", {id: "c"})
render(root, vnode)
render(root, updated)
o(updated.dom).equals(vnode.dom)
o(updated.dom).equals(root.firstChild)
o("class" in updated.dom.attributes).equals(false)
})
o("creates style object", function() {
var vnode = m("a")
var updated = m("a", {style: {backgroundColor: "green"}})
render(root, vnode)
render(root, updated)
o(updated.dom.style.backgroundColor).equals("green")
})
o("creates style string", function() {
var vnode = m("a")
var updated = m("a", {style: "background-color:green"})
render(root, vnode)
render(root, updated)
o(updated.dom.style.backgroundColor).equals("green")
})
o("updates style from object to object", function() {
var vnode = m("a", {style: {backgroundColor: "red"}})
var updated = m("a", {style: {backgroundColor: "green"}})
render(root, vnode)
render(root, updated)
o(updated.dom.style.backgroundColor).equals("green")
})
o("updates style from object to string", function() {
var vnode = m("a", {style: {backgroundColor: "red"}})
var updated = m("a", {style: "background-color:green;"})
render(root, vnode)
render(root, updated)
o(updated.dom.style.backgroundColor).equals("green")
})
o("handles noop style change when style is string", function() {
var vnode = m("a", {style: "background-color:green;"})
var updated = m("a", {style: "background-color:green;"})
render(root, vnode)
render(root, updated)
o(updated.dom.style.backgroundColor).equals("green")
})
o("handles noop style change when style is object", function() {
var vnode = m("a", {style: {backgroundColor: "red"}})
var updated = m("a", {style: {backgroundColor: "red"}})
render(root, vnode)
render(root, updated)
o(updated.dom.style.backgroundColor).equals("red")
})
o("updates style from string to object", function() {
var vnode = m("a", {style: "background-color:red;"})
var updated = m("a", {style: {backgroundColor: "green"}})
render(root, vnode)
render(root, updated)
o(updated.dom.style.backgroundColor).equals("green")
})
o("updates style from string to string", function() {
var vnode = m("a", {style: "background-color:red;"})
var updated = m("a", {style: "background-color:green;"})
render(root, vnode)
render(root, updated)
o(updated.dom.style.backgroundColor).equals("green")
})
o("removes style from object to object", function() {
var vnode = m("a", {style: {backgroundColor: "red", border: "1px solid red"}})
var updated = m("a", {style: {backgroundColor: "red"}})
render(root, vnode)
render(root, updated)
o(updated.dom.style.backgroundColor).equals("red")
o(updated.dom.style.border).equals("")
})
o("removes style from string to object", function() {
var vnode = m("a", {style: "background-color:red;border:1px solid red"})
var updated = m("a", {style: {backgroundColor: "red"}})
render(root, vnode)
render(root, updated)
o(updated.dom.style.backgroundColor).equals("red")
o(updated.dom.style.border).notEquals("1px solid red")
})
o("removes style from object to string", function() {
var vnode = m("a", {style: {backgroundColor: "red", border: "1px solid red"}})
var updated = m("a", {style: "background-color:red"})
render(root, vnode)
render(root, updated)
o(updated.dom.style.backgroundColor).equals("red")
o(updated.dom.style.border).equals("")
})
o("removes style from string to string", function() {
var vnode = m("a", {style: "background-color:red;border:1px solid red"})
var updated = m("a", {style: "background-color:red"})
render(root, vnode)
render(root, updated)
o(updated.dom.style.backgroundColor).equals("red")
o(updated.dom.style.border).equals("")
})
o("does not re-render element styles for equivalent style objects", function() {
var style = {color: "gold"}
var vnode = m("a", {style: style})
render(root, vnode)
root.firstChild.style.color = "red"
style = {color: "gold"}
var updated = m("a", {style: style})
render(root, updated)
o(updated.dom.style.color).equals("red")
})
o("setting style to `null` removes all styles", function() {
var vnode = m("p", {style: "background-color: red"})
var updated = m("p", {style: null})
render(root, vnode)
o("style" in vnode.dom.attributes).equals(true)
o(vnode.dom.attributes.style.value).equals("background-color: red;")
render(root, updated)
//browsers disagree here
try {
o(updated.dom.attributes.style.value).equals("")
} catch (e) {
o("style" in updated.dom.attributes).equals(false)
}
})
o("setting style to `undefined` removes all styles", function() {
var vnode = m("p", {style: "background-color: red"})
var updated = m("p", {style: undefined})
render(root, vnode)
o("style" in vnode.dom.attributes).equals(true)
o(vnode.dom.attributes.style.value).equals("background-color: red;")
render(root, updated)
//browsers disagree here
try {
o(updated.dom.attributes.style.value).equals("")
} catch (e) {
o("style" in updated.dom.attributes).equals(false)
}
})
o("not setting style removes all styles", function() {
var vnode = m("p", {style: "background-color: red"})
var updated = m("p")
render(root, vnode)
o("style" in vnode.dom.attributes).equals(true)
o(vnode.dom.attributes.style.value).equals("background-color: red;")
render(root, updated)
//browsers disagree here
try {
o(updated.dom.attributes.style.value).equals("")
} catch (e) {
o("style" in updated.dom.attributes).equals(false)
}
})
o("use style property setter only when cameCase keys", function() {
var spySetProperty = o.spy()
var spyRemoveProperty = o.spy()
var spyDashed1 = o.spy()
var spyDashed2 = o.spy()
var spyDashed3 = o.spy()
var spyCamelCase1 = o.spy()
var spyCamelCase2 = o.spy()
render(root, m("a"))
var el = root.firstChild
el.style.setProperty = spySetProperty
el.style.removeProperty = spyRemoveProperty
Object.defineProperties(el.style, {
/* eslint-disable accessor-pairs */
"background-color": {set: spyDashed1},
"-webkit-border-radius": {set: spyDashed2},
"--foo": {set: spyDashed3},
backgroundColor: {set: spyCamelCase1},
color: {set: spyCamelCase2}
/* eslint-enable accessor-pairs */
})
// sets dashed properties
render(root, m("a", {
style: {
"background-color": "red",
"-webkit-border-radius": "10px",
"--foo": "bar"
}
}))
o(spySetProperty.callCount).equals(3)
o(spySetProperty.calls[0].args).deepEquals(["background-color", "red"])
o(spySetProperty.calls[1].args).deepEquals(["-webkit-border-radius", "10px"])
o(spySetProperty.calls[2].args).deepEquals(["--foo", "bar"])
// sets camelCase properties and removes dashed properties
render(root, m("a", {
style: {
backgroundColor: "green",
color: "red",
}
}))
o(spyCamelCase1.callCount).equals(1)
o(spyCamelCase2.callCount).equals(1)
o(spyCamelCase1.calls[0].args).deepEquals(["green"])
o(spyCamelCase2.calls[0].args).deepEquals(["red"])
o(spyRemoveProperty.callCount).equals(3)
o(spyRemoveProperty.calls[0].args).deepEquals(["background-color"])
o(spyRemoveProperty.calls[1].args).deepEquals(["-webkit-border-radius"])
o(spyRemoveProperty.calls[2].args).deepEquals(["--foo"])
// updates "color" and removes "backgroundColor"
render(root, m("a", {style: {color: "blue"}}))
o(spyCamelCase1.callCount).equals(2) // set and remove
o(spyCamelCase2.callCount).equals(2) // set and update
o(spyCamelCase1.calls[1].args).deepEquals([""])
o(spyCamelCase2.calls[1].args).deepEquals(["blue"])
// unchanged by camelCase properties
o(spySetProperty.callCount).equals(3)
o(spyRemoveProperty.callCount).equals(3)
// never calls dashed property setter
o(spyDashed1.callCount).equals(0)
o(spyDashed2.callCount).equals(0)
o(spyDashed3.callCount).equals(0)
})
o("replaces el", function() {
var vnode = m("a")
var updated = m("b")
render(root, vnode)
render(root, updated)
o(updated.dom).equals(root.firstChild)
o(updated.dom.nodeName).equals("B")
})
o("updates svg class", function() {
var vnode = m("svg", {className: "a"})
var updated = m("svg", {className: "b"})
render(root, vnode)
render(root, updated)
o(updated.dom.attributes["class"].value).equals("b")
})
o("updates svg child", function() {
var vnode = m("svg", m("circle"))
var updated = m("svg", m("line"))
render(root, vnode)
render(root, updated)
o(updated.dom.firstChild.namespaceURI).equals("http://www.w3.org/2000/svg")
})
o("doesn't restore since we're not recycling", function() {
var vnode = m("div", {key: 1})
var updated = m("div", {key: 2})
render(root, vnode)
var a = vnode.dom
render(root, updated)
render(root, vnode)
var c = vnode.dom
o(root.childNodes.length).equals(1)
o(a).notEquals(c) // this used to be a recycling pool test
})
o("doesn't restore since we're not recycling (via map)", function() {
var a = m("div", {key: 1})
var b = m("div", {key: 2})
var c = m("div", {key: 3})
var d = m("div", {key: 4})
var e = m("div", {key: 5})
var f = m("div", {key: 6})
render(root, [a, b, c])
var x = root.childNodes[1]
render(root, d)
render(root, [e, b, f])
var y = root.childNodes[1]
o(root.childNodes.length).equals(3)
o(x).notEquals(y) // this used to be a recycling pool test
})
})