-
-
Notifications
You must be signed in to change notification settings - Fork 322
Expand file tree
/
Copy pathpicture_thumbnail.spec.js
More file actions
462 lines (370 loc) · 14.3 KB
/
picture_thumbnail.spec.js
File metadata and controls
462 lines (370 loc) · 14.3 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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
import "alchemy_admin/components/picture_thumbnail"
import { renderComponent } from "./component.helper"
import { vi } from "vitest"
describe("alchemy-picture-thumbnail", () => {
describe("constructor", () => {
it("adds thumbnail_background class", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
expect(element.classList).toContain("thumbnail_background")
})
it("creates spinner instance", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
expect(element.spinner).toBeDefined()
})
it("creates image when src attribute is present", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
expect(element.image).toBeDefined()
expect(element.image.src).toBe("https://example.com/image.jpg")
})
it("does not create image when src attribute is missing", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
expect(element.image).toBeUndefined()
})
})
describe("connectedCallback", () => {
it("shows spinner and appends image while loading", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
expect(element.querySelector("alchemy-spinner")).not.toBeNull()
expect(element).toContain(element.image)
})
it("appends image when already complete", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
element.image = new Image()
Object.defineProperty(element.image, "complete", { value: true })
element.connectedCallback()
expect(element).toContain(element.image)
})
it("replaces placeholder content with spinner and image while loading", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"><alchemy-icon name="image"></alchemy-icon></alchemy-picture-thumbnail>'
)
expect(element.querySelector("alchemy-icon")).toBeNull()
expect(element.querySelector("alchemy-spinner")).not.toBeNull()
expect(element).toContain(element.image)
})
it("does nothing if image does not exist", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
expect(element.childNodes.length).toBe(0)
})
})
describe("disconnectedCallback", () => {
it("removes event listeners", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
const removeListenerSpy = vi.spyOn(element.image, "removeEventListener")
element.remove()
expect(removeListenerSpy).toHaveBeenCalledWith("load", element)
expect(removeListenerSpy).toHaveBeenCalledWith("error", element)
})
it("calls stop", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
const stopSpy = vi.spyOn(element, "stop")
element.remove()
expect(stopSpy).toHaveBeenCalled()
})
it("does not throw if image does not exist", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
expect(() => element.remove()).not.toThrow()
})
})
describe("createImage", () => {
it("creates image with src", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
element.createImage("https://example.com/test.jpg")
expect(element.image.src).toBe("https://example.com/test.jpg")
})
it("creates image with alt text if name given", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
element.createImage("https://example.com/test.jpg", "Test image")
expect(element.image.alt).toBe("Test image")
})
it("creates image without alt text if name not given", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
element.createImage("https://example.com/test.jpg")
expect(element.image.alt).not.toBe("Test image")
})
it("uses default src from attribute", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/default.jpg"></alchemy-picture-thumbnail>'
)
element.createImage()
expect(element.image.src).toBe("https://example.com/default.jpg")
})
})
describe("load", () => {
it("sets loading attribute", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
element.load()
expect(element.hasAttribute("loading")).toBe(true)
})
it("clears innerHTML", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
element.innerHTML = "<div>some content</div>"
element.load()
expect(element.innerHTML).not.toContain("some content")
})
it("starts spinner", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
const spinSpy = vi.spyOn(element.spinner, "spin")
element.load()
expect(spinSpy).toHaveBeenCalledWith(element)
})
it("does not load if image is already complete", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
// Mock image as complete
vi.spyOn(element.image, "complete", "get").mockReturnValue(true)
const spinSpy = vi.spyOn(element.spinner, "spin")
element.load()
expect(spinSpy).not.toHaveBeenCalled()
})
it("does nothing if no image exists", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
element.image = null
expect(() => element.load()).not.toThrow()
})
})
describe("stop", () => {
it("removes loading class", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
element.classList.add("loading")
element.stop()
expect(element.classList.contains("loading")).toBe(false)
})
it("stops spinner", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
const stopSpy = vi.spyOn(element.spinner, "stop")
element.stop()
expect(stopSpy).toHaveBeenCalled()
})
})
describe("handleEvent", () => {
it("handles load event", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
element.setAttribute("loading", "loading")
const stopSpy = vi.spyOn(element.spinner, "stop")
element.handleEvent({ type: "load" })
expect(stopSpy).toHaveBeenCalled()
expect(element.hasAttribute("loading")).toBe(false)
expect(element).toContain(element.image)
})
it("handles error event", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
const consoleErrorSpy = vi
.spyOn(console, "error")
.mockImplementation(() => {})
const stopSpy = vi.spyOn(element.spinner, "stop")
element.handleEvent({ type: "error" })
expect(stopSpy).toHaveBeenCalled()
expect(element.innerHTML).toContain("alchemy-icon")
expect(element.innerHTML).toContain("alert")
expect(consoleErrorSpy).toHaveBeenCalled()
consoleErrorSpy.mockRestore()
})
it("does nothing for unknown event types", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
expect(() => element.handleEvent({ type: "unknown" })).not.toThrow()
})
})
describe("loading setter", () => {
it("calls load when set to true", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
const loadSpy = vi.spyOn(element, "load")
element.loading = true
expect(loadSpy).toHaveBeenCalled()
})
it("calls stop when set to false", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
const stopSpy = vi.spyOn(element, "stop")
element.loading = false
expect(stopSpy).toHaveBeenCalled()
})
})
describe("start", () => {
it("creates image with provided src", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
element.start("https://example.com/test.jpg")
expect(element.image).toBeDefined()
expect(element.image.src).toBe("https://example.com/test.jpg")
})
it("adds load event listener", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
const addListenerSpy = vi.spyOn(
HTMLImageElement.prototype,
"addEventListener"
)
element.start("https://example.com/test.jpg")
expect(addListenerSpy).toHaveBeenCalledWith("load", element)
addListenerSpy.mockRestore()
})
it("adds error event listener", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
const addListenerSpy = vi.spyOn(
HTMLImageElement.prototype,
"addEventListener"
)
element.start("https://example.com/test.jpg")
expect(addListenerSpy).toHaveBeenCalledWith("error", element)
addListenerSpy.mockRestore()
})
it("calls load", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
const loadSpy = vi.spyOn(element, "load")
element.start("https://example.com/test.jpg")
expect(loadSpy).toHaveBeenCalled()
})
})
describe("src setter", () => {
it("calls start with new src", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
const startSpy = vi.spyOn(element, "start")
element.src = "https://example.com/new.jpg"
expect(startSpy).toHaveBeenCalledWith("https://example.com/new.jpg")
})
it("shows spinner while new image is loading", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/old.jpg"></alchemy-picture-thumbnail>'
)
const oldImage = element.image
element.src = "https://example.com/new.jpg"
expect(element.contains(oldImage)).toBe(false)
expect(element.querySelector("alchemy-spinner")).not.toBeNull()
})
it("replaces children with image when already complete", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
const startSpy = vi.spyOn(element, "start").mockImplementation(() => {
element.image = new Image()
Object.defineProperty(element.image, "complete", { value: true })
})
element.src = "https://example.com/new.jpg"
expect(element.contains(element.image)).toBe(true)
startSpy.mockRestore()
})
})
describe("name getter", () => {
it("returns name attribute value", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail name="A nice image"></alchemy-picture-thumbnail>'
)
expect(element.name).toBe("A nice image")
})
it("returns null when no name attribute", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
expect(element.name).toBeNull()
})
})
describe("src getter", () => {
it("returns src attribute value", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
'<alchemy-picture-thumbnail src="https://example.com/image.jpg"></alchemy-picture-thumbnail>'
)
expect(element.src).toBe("https://example.com/image.jpg")
})
it("returns null when no src attribute", () => {
const element = renderComponent(
"alchemy-picture-thumbnail",
"<alchemy-picture-thumbnail></alchemy-picture-thumbnail>"
)
expect(element.src).toBeNull()
})
})
})