forked from swiftlang/swift-docc-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimagePreloading.spec.js
104 lines (88 loc) · 2.78 KB
/
imagePreloading.spec.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
/**
* This source file is part of the Swift.org open source project
*
* Copyright (c) 2021-2023 Apple Inc. and the Swift project authors
* Licensed under Apache License v2.0 with Runtime Library Exception
*
* See https://swift.org/LICENSE.txt for license information
* See https://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
import {
createLocalVue,
mount,
RouterLinkStub,
} from '@vue/test-utils';
import fs from 'fs';
import path from 'path';
import Router from 'vue-router';
import hide from 'docc-render/directives/hide';
import Topic from 'docc-render/views/Topic.vue';
import createRouterInstance from 'docc-render/setup-utils/SwiftDocCRenderRouter';
const router = createRouterInstance();
jest.mock('docc-render/utils/theme-settings');
const topicData = JSON.parse(fs.readFileSync(path.resolve(__dirname, 'tutorial.json')));
window.scrollTo = () => ({});
const localVue = createLocalVue();
localVue.directive('hide', hide);
localVue.use(Router);
// Mock DOM APIs.
window.matchMedia = jest.fn(() => ({
addListener: jest.fn(),
addEventListener: jest.fn(),
matches: true,
}));
window.MediaSource = jest.fn(() => ({
isTypeSupported: jest.fn(),
addEventListener: jest.fn(),
}));
window.URL.createObjectURL = jest.fn();
window.HTMLMediaElement.prototype.addNextTrack = jest.fn();
// Retrieves all the image URLs from the references dictionary.
const allImageURLsFrom = references => (
Object.values(references)
.filter(({ type }) => type === 'image')
.map(({ variants }) => variants.map(({ url }) => url))
.map(([url]) => url)
);
// Util function to collect all elements from a `WrapperArray` into an Array.
const elementsFromWrapperArray = wrapperArray => (
[...Array(wrapperArray.length).keys()]
.map(index => wrapperArray.at(index))
);
describe('image preloading', () => {
const assertHasAllImages = async (wrapper, references) => {
await wrapper.vm.$nextTick();
const domImageURLs = elementsFromWrapperArray(wrapper.findAll('img'))
.map(image => image.attributes('src'));
const referenceImageURLs = allImageURLsFrom(references);
referenceImageURLs.forEach((url) => {
if (!domImageURLs.includes(url)) {
throw new Error(`Image ${url} is not in the DOM.`);
}
});
};
const mountOptions = {
localVue,
router,
provide: {
isTargetIDE: false,
},
mocks: {
$bridge: {
on: jest.fn(),
off: jest.fn(),
send: jest.fn(),
},
},
stubs: {
'router-link': RouterLinkStub,
BreakpointEmitter: true,
i18n: true,
},
};
it('has all the images in the DOM on load in tutorial pages', async () => {
const wrapper = mount(Topic, mountOptions);
wrapper.setData({ topicData });
await assertHasAllImages(wrapper, topicData.references);
});
});