-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
294 lines (243 loc) · 7.01 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
289
290
291
292
293
294
require('webcomponents.js')
var createCustom = require('./')
var domify = require('domify')
var test = require('tape')
var ids = 0
function generateName() {
return 'custom-element-' + ids++
}
test('custom prototype', function(t) {
var name = generateName()
t.plan(2)
var proto = Object.create(HTMLTemplateElement.prototype)
document.registerElement(name, createCustom(proto)
.on('created', function() {
t.pass('element created was called')
}))
var el = document.createElement(name)
t.ok(el instanceof HTMLTemplateElement)
})
test('custom prototype extending existing custom-element fires both element handlers', function(t) {
var name = generateName()
t.plan(8)
var superElement = createCustom()
.on('created', function() {
t.pass('super element created was called')
})
.on('attached', function() {
t.pass('super element attached was called')
})
.once('attached', function() {
t.pass('super element attached once was called')
})
var inhertingElement = createCustom(superElement.prototype)
.on('created', function() {
t.pass('inheriting element created was called')
})
.on('attached', function() {
t.pass('inheriting element attached was called')
})
.once('attached', function() {
t.pass('inheriting element attached once was called')
})
document.registerElement(name, inhertingElement)
var el = document.createElement(name)
document.body.appendChild(el)
process.nextTick(function() {
document.body.removeChild(el)
process.nextTick(function() {
document.body.appendChild(el)
process.nextTick(function() {
document.body.removeChild(el)
})
})
})
})
test('custom prototype extending existing vanilla custom element fires both element handlers', function(t) {
var name = generateName()
t.plan(5)
var superElement = Object.create(window.HTMLUnknownElement)
superElement.createdCallback = function() {
t.pass('super element created was called')
}
superElement.attachedCallback = function() {
t.pass('super element attached was called')
}
var inhertingElement = createCustom(superElement)
.on('created', function() {
t.pass('inheriting element created was called')
})
.once('attached', function() {
t.pass('inheriting element attached once was called')
})
document.registerElement(name, inhertingElement)
var el = document.createElement(name)
document.body.appendChild(el)
process.nextTick(function() {
document.body.removeChild(el)
process.nextTick(function() {
document.body.appendChild(el)
process.nextTick(function() {
document.body.removeChild(el)
})
})
})
})
test('on("created")', function(t) {
var name = generateName()
t.plan(1)
document.registerElement(name, createCustom().on("created", function() {
t.pass('element created was called')
}))
document.createElement(name)
})
test('on("created") and factory', function(t) {
var name = generateName()
t.plan(2)
document.registerElement(name, createCustom()
.on('created', function() {
t.pass('element created was called')
}).on("created", function() {
t.pass('element on created was called')
}))
document.createElement(name)
})
test('on("attached")', function(t) {
var name = generateName()
var attached = false
t.plan(2)
document.registerElement(name, createCustom()
.on('created', function() {
t.pass('element constructor was called')
}).on('attached', function() {
t.ok(attached, 'event triggered after being added to DOM')
}))
var el = document.createElement(name)
attached = true
document.body.appendChild(el)
process.nextTick(function() {
document.body.removeChild(el)
})
})
test('on("detached")', function(t) {
var name = generateName()
var attached = true
t.plan(2)
document.registerElement(name, createCustom()
.on('created', function() {
t.pass('element constructor was called')
}).on('detached', function() {
t.ok(!attached, 'event triggered after being removed from DOM')
}))
var el = document.createElement(name)
document.body.appendChild(el)
process.nextTick(function() {
attached = false
document.body.removeChild(el)
})
})
test('on("attribute")', function(t) {
var name = generateName()
t.plan(3)
document.registerElement(name, createCustom()
.on('created', function() {
t.pass('element constructor was called')
}).on('attribute', function(name, _, value) {
t.equal(name, 'hello', 'correct attribute name passed to listener')
t.equal(value, 'world', 'correct attribute value passed to listener')
}))
var el = document.createElement(name)
el.setAttribute('hello', 'world')
})
test('inherits from parent custom-element prototypes', function(t) {
var name1 = generateName()
var name2 = generateName()
t.plan(3)
var parent = createCustom()
.on('created', function() {
t.pass('parent created callback is called')
})
var child = createCustom(parent.prototype)
.on('created', function() {
t.pass('child created callback is called')
})
document.registerElement(name1, parent)
document.registerElement(name2, child)
document.createElement(name1)
document.createElement(name2)
})
test('once', function(t) {
var name = generateName()
var attached = false
var count = 0
var total = 0
document.registerElement(name, createCustom()
.on('created', function() {
t.pass('element constructor was called')
}).on('attached', function() {
total += 1
}).once('attached', function() {
t.equal(++count, 1)
}))
setTimeout(function() {
t.equal(count, 1)
t.notEqual(total, 1)
t.end()
}, 100)
var el = document.createElement(name)
attached = true
document.body.appendChild(el)
process.nextTick(function() {
document.body.removeChild(el)
process.nextTick(function() {
document.body.appendChild(el)
process.nextTick(function() {
document.body.removeChild(el)
})
})
})
})
test('once (per instance, not per class)', function(t) {
var name = generateName()
var attached = false
var count = 0
var total = 0
document.registerElement(name, createCustom()
.on('created', function() {
t.pass('element constructor was called')
}).on('attached', function() {
total += 1
}).once('attached', function() {
count += 1
}))
setTimeout(function() {
t.equal(count, 2)
t.ok(total > 2)
t.end()
}, 100)
var el1 = document.createElement(name)
var el2 = document.createElement(name)
attached = true
document.body.appendChild(el1)
document.body.appendChild(el2)
process.nextTick(function() {
document.body.removeChild(el1)
document.body.removeChild(el2)
process.nextTick(function() {
document.body.appendChild(el1)
document.body.appendChild(el2)
process.nextTick(function() {
document.body.removeChild(el1)
document.body.removeChild(el2)
})
})
})
})
test('shutdown', function(t) {
t.end()
// delay needed for test to not inexplicably fail
// nfi.
setTimeout(function() {
window.close()
}, 100)
})