-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
/
Copy pathplugins.test.js
295 lines (259 loc) Β· 7.68 KB
/
plugins.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
295
import docsifyInit from '../helpers/docsify-init.js';
import { waitForFunction } from '../helpers/wait-for.js';
import { test, expect } from './fixtures/docsify-init-fixture.js';
test.describe('Plugins', () => {
test('Hook order', async ({ page }) => {
const consoleMsgs = [];
const expectedMsgs = [
'init',
'mounted',
'beforeEach-async',
'beforeEach',
'afterEach-async',
'afterEach',
'doneEach',
'ready',
];
page.on('console', msg => consoleMsgs.push(msg.text()));
await docsifyInit({
config: {
plugins: [
function (hook, vm) {
hook.init(() => {
console.log('init');
});
hook.mounted(() => {
console.log('mounted');
});
hook.beforeEach((markdown, next) => {
setTimeout(() => {
console.log('beforeEach-async');
next(markdown);
}, 100);
});
hook.beforeEach(markdown => {
console.log('beforeEach');
return markdown;
});
hook.afterEach((html, next) => {
setTimeout(() => {
console.log('afterEach-async');
next(html);
}, 100);
});
hook.afterEach(html => {
console.log('afterEach');
return html;
});
hook.doneEach(() => {
console.log('doneEach');
});
hook.ready(() => {
console.log('ready');
});
},
],
},
markdown: {
homepage: '# Hello World',
},
// _logHTML: true,
});
expect(consoleMsgs).toEqual(expectedMsgs);
});
test.describe('beforeEach()', () => {
test('return value', async ({ page }) => {
await docsifyInit({
config: {
plugins: [
function (hook, vm) {
hook.beforeEach(markdown => {
return 'beforeEach';
});
},
],
},
// _logHTML: true,
});
await expect(page.locator('#main')).toContainText('beforeEach');
});
test('async return value', async ({ page }) => {
await docsifyInit({
config: {
plugins: [
function (hook, vm) {
hook.beforeEach((markdown, next) => {
setTimeout(() => {
next('beforeEach');
}, 100);
});
},
],
},
markdown: {
homepage: '# Hello World',
},
// _logHTML: true,
});
await expect(page.locator('#main')).toContainText('beforeEach');
});
});
test.describe('afterEach()', () => {
test('return value', async ({ page }) => {
await docsifyInit({
config: {
plugins: [
function (hook, vm) {
hook.afterEach(html => {
return '<p>afterEach</p>';
});
},
],
},
markdown: {
homepage: '# Hello World',
},
// _logHTML: true,
});
await expect(page.locator('#main')).toContainText('afterEach');
});
test('async return value', async ({ page }) => {
await docsifyInit({
config: {
plugins: [
function (hook, vm) {
hook.afterEach((html, next) => {
setTimeout(() => {
next('<p>afterEach</p>');
}, 100);
});
},
],
},
markdown: {
homepage: '# Hello World',
},
// _logHTML: true,
});
await expect(page.locator('#main')).toContainText('afterEach');
});
});
test.describe('doneEach()', () => {
test('callback after cover loads', async ({ page }) => {
const consoleMessages = [];
page.on('console', msg => consoleMessages.push(msg.text()));
await docsifyInit({
config: {
plugins: [
function (hook) {
hook.doneEach(() => {
const homepageTitle = document.querySelector('#homepage-title');
const coverTitle = document.querySelector('#cover-title');
console.log(homepageTitle?.textContent);
console.log(coverTitle?.textContent);
});
},
],
},
markdown: {
homepage: '# Hello World :id=homepage-title',
coverpage: () => {
return new Promise(resolve => {
setTimeout(() => resolve('# Cover Page :id=cover-title'), 500);
});
},
},
// _logHTML: {},
});
await expect(consoleMessages).toEqual(['Hello World', 'Cover Page']);
});
test('only cover', async ({ page }) => {
const consoleMessages = [];
page.on('console', msg => consoleMessages.push(msg.text()));
await docsifyInit({
config: {
onlyCover: true,
plugins: [
function (hook) {
hook.doneEach(() => {
const homepageTitle = document.querySelector('#homepage-title');
const coverTitle = document.querySelector('#cover-title');
console.log(homepageTitle?.textContent);
console.log(coverTitle?.textContent);
});
},
],
},
markdown: {
homepage: '# Hello World :id=homepage-title',
coverpage: () => {
return new Promise(resolve => {
setTimeout(() => resolve('# Cover Page :id=cover-title'), 500);
});
},
},
waitForSelector: '.cover-main > *:first-child',
// _logHTML: {},
});
await expect(consoleMessages).toEqual(['undefined', 'Cover Page']);
});
});
test.describe('route data accessible to plugins', () => {
let routeData = null;
test.beforeEach(async ({ page }) => {
// Store route data set via plugin hook (below)
page.on('console', async msg => {
for (const arg of msg.args()) {
const val = await arg.jsonValue();
const obj = JSON.parse(val);
obj.response && (routeData = obj);
}
});
});
test.afterEach(async ({ page }) => {
routeData = null;
});
test('success (200)', async ({ page }) => {
await docsifyInit({
config: {
plugins: [
function (hook, vm) {
hook.doneEach(html => {
console.log(JSON.stringify(vm.route));
});
},
],
},
});
expect(routeData).toHaveProperty('response');
expect(routeData.response).toHaveProperty('ok', true);
expect(routeData.response).toHaveProperty('status', 200);
expect(routeData.response).toHaveProperty('statusText', 'OK');
});
test('fail (404)', async ({ page }) => {
const link404Elm = page.locator('a[href*="404"]');
await docsifyInit({
markdown: {
sidebar: `
- [404](404.md)
`,
},
config: {
plugins: [
function (hook, vm) {
hook.doneEach(html => {
console.log(JSON.stringify(vm.route));
});
},
],
},
});
await link404Elm.click();
await waitForFunction(() => routeData?.response?.status === 404);
expect(routeData).toHaveProperty('response');
expect(routeData.response).toHaveProperty('ok', false);
expect(routeData.response).toHaveProperty('status', 404);
expect(routeData.response).toHaveProperty('statusText', 'Not Found');
});
});
});