-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcore.test.ts
398 lines (319 loc) · 10 KB
/
core.test.ts
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
/* eslint-disable */
import Core from "./core";
import Config from "./InterfaceConfig";
import path from "path";
import fs from "fs";
import MockDate from "mockdate";
const rootPath = path.resolve("./");
const config: Config = {
alternateUrls: {
en: "https://example.en",
es: "https://example.es",
ja: "https://example.jp",
fr: "https://example.fr"
},
baseUrl: "https://example.com.ru",
ignoredPaths: ["admin", /^\/like\//],
pagesDirectory: path.resolve(rootPath, "example", "pages__test"),
targetDirectory: path.resolve(rootPath, "example", "static"),
ignoreIndexFiles: true,
ignoredExtensions: ["yml"],
sitemapStylesheet: [
{
type: "text/css",
styleFile: "/test/styles.css"
},
{
type: "text/xsl",
styleFile: "test/test/styles.xls"
}
]
};
const coreMapper = new Core(config);
describe("Core testing", () => {
beforeEach(() => {
MockDate.set("2020-01-01T12:00:00Z");
});
afterAll(() => {
MockDate.reset();
});
it("Should detect reserved sites", () => {
const underscoredSite = coreMapper.isReservedPage("_admin");
const dotedSite = coreMapper.isReservedPage(".admin");
expect(underscoredSite).toBe(true);
expect(dotedSite).toBe(true);
});
it("Should skip non reserved sites", () => {
const site = coreMapper.isReservedPage("admin");
expect(site).toBe(false);
});
it("Should ignore expecified site's path ", () => {
const ignoredPath = coreMapper.isIgnoredPath("admin");
expect(ignoredPath).toBe(true);
});
it("Should ignore expecified site's path with regexp", () => {
const ignoredPath = coreMapper.isIgnoredPath("/like/product");
expect(ignoredPath).toBe(true);
});
it("Should not ignore expecified site's path with regexp", () => {
const ignoredPath = coreMapper.isIgnoredPath("/store/product/like-a-vergin");
expect(ignoredPath).toBe(false);
});
it("Should skip non expecified sites's path", () => {
const ignoredPath = coreMapper.isReservedPage("admin");
expect(ignoredPath).toBe(false);
});
it("Should ignore expecified extensions", () => {
const ignoredExtension = coreMapper.isIgnoredExtension("yml");
expect(ignoredExtension).toBe(true);
});
it("Should skip non expecified extensions", () => {
const ignoredExtension = coreMapper.isReservedPage("jsx");
expect(ignoredExtension).toBe(false);
});
it("Should merge path", () => {
const mergedPath = coreMapper.mergePath("/admin", "list");
expect(mergedPath).toEqual("/admin/list");
});
it("Should merge path from empty base path", () => {
const mergedPath = coreMapper.mergePath("", "list");
expect(mergedPath).toEqual("/list");
});
it("Should merge path from ignored path", () => {
const mergedPath = coreMapper.mergePath("/admin", "");
expect(mergedPath).toEqual("/admin");
});
it("Should merge empty path", () => {
const mergedPath = coreMapper.mergePath("", "");
expect(mergedPath).toEqual("");
});
it("Should generate sitemap.xml", async () => {
coreMapper.preLaunch();
await coreMapper.sitemapMapper(config.pagesDirectory);
coreMapper.finish();
const sitemap = fs.statSync(
path.resolve(config.targetDirectory, "./sitemap.xml")
);
expect(sitemap.size).toBeGreaterThan(0);
});
it("should add extraPaths to output", async () => {
const core = new Core({
...config,
extraPaths: ["/extraPath"]
});
const urls = await core.getSitemapURLs(config.pagesDirectory);
expect(urls).toContainEqual({
pagePath: "/extraPath",
outputPath: "/extraPath",
priority: "",
changefreq: ""
});
});
it("Should generate a sitemap with a custom file name", async () => {
const coreMapper = new Core({
...config,
sitemapFilename: "main.xml",
});
coreMapper.preLaunch();
await coreMapper.sitemapMapper(config.pagesDirectory);
coreMapper.finish();
const sitemap = fs.statSync(
path.resolve(config.targetDirectory, "./main.xml")
);
expect(sitemap.size).toBeGreaterThan(0);
});
it("Should generate valid sitemap.xml", async () => {
coreMapper.preLaunch();
await coreMapper.sitemapMapper(config.pagesDirectory);
coreMapper.finish();
const sitemap = fs.readFileSync(
path.resolve(config.targetDirectory, "./sitemap.xml"),
{ encoding: "UTF-8" }
);
expect(sitemap.includes("xml-stylesheet"));
expect(sitemap).toMatchSnapshot()
});
it("Should generate styles xml links", async () => {
coreMapper.preLaunch();
await coreMapper.sitemapMapper(config.pagesDirectory);
coreMapper.finish();
const sitemap = fs.readFileSync(
path.resolve(config.targetDirectory, "./sitemap.xml"),
{ encoding: "UTF-8" }
);
expect(
sitemap.includes(
'<?xml-stylesheet href="test/test/styles.xls" type="text/xsl" ?>'
)
).toBe(true);
expect(
sitemap.includes(
'<?xml-stylesheet href="/test/styles.css" type="text/css" ?>'
)
).toBe(true);
});
it("Should make map of sites", () => {
const result = coreMapper.buildPathMap(config.pagesDirectory);
expect(result).toMatchSnapshot()
});
it('Should contain a list of pages with their extension if allowFileExtensions', () => {
const coreMapper = new Core({
...config,
allowFileExtensions: true,
});
const result = coreMapper.buildPathMap(config.pagesDirectory);
expect(result['/admin/page1.tsx']).toMatchObject({"page": "/admin/page1.tsx"});
});
it('Should match the snapshot if allowFileExtensions', async () => {
const core = new Core({
...config,
allowFileExtensions: true,
});
core.preLaunch();
await core.sitemapMapper(config.pagesDirectory);
core.finish();
const sitemap = fs.readFileSync(
path.resolve(config.targetDirectory, "./sitemap.xml"),
{ encoding: "UTF-8" }
);
expect(sitemap).toMatchSnapshot();
});
it('Should use regex in pagesConfig', async () => {
const core = new Core({
...config,
allowFileExtensions: true,
});
config.pagesConfig = {
"/store/product/*": {
priority: "0.6",
changefreq: "weekly"
},
}
core.preLaunch();
await core.sitemapMapper(config.pagesDirectory);
core.finish();
const sitemap = fs.readFileSync(
path.resolve(config.targetDirectory, "./sitemap.xml"),
{ encoding: "UTF-8" }
);
expect(sitemap).toMatchSnapshot();
});
})
describe("TestCore with nextConfig", () => {
beforeEach(() => {
MockDate.set("2020-01-01T12:00:00Z");
});
afterAll(() => {
MockDate.reset();
});
function getCoreWithNextConfig(nextConfig) {
const core = new Core(config);
core.nextConfig = nextConfig;
return core;
}
it("should call exportPathMap from Next config", async () => {
const core = getCoreWithNextConfig({
async exportPathMap(defaultMap) {
return {
"/exportPathMapURL": { page: "/" }
};
}
});
const urls = await core.getSitemapURLs(config.pagesDirectory);
expect(urls).toEqual([
{
changefreq: "",
outputPath: "/exportPathMapURL",
pagePath: "/exportPathMapURL",
priority: ""
}
]);
});
it("should not append a slash to url that already ends in a slash", async () => {
const core = getCoreWithNextConfig({
exportTrailingSlash: true,
async exportPathMap(defaultMap) {
return {
"/": { page: "/" },
};
}
});
const urls = await core.getSitemapURLs(config.pagesDirectory);
expect(urls).toEqual([
{
changefreq: "",
outputPath: "/",
pagePath: "/",
priority: ""
}
]);
});
it("should check if exportTrailingSlash exists in Next config", async () => {
const core = getCoreWithNextConfig({
exportTrailingSlash: true
});
expect(core.checkTrailingSlash()).toBe(true);
});
it("should check if trailingSlash exists in Next config", async () => {
const core = getCoreWithNextConfig({
trailingSlash: true
});
expect(core.checkTrailingSlash()).toBe(true);
});
it("should check that exportTrailingSlash no exists in Next config", async () => {
const core = getCoreWithNextConfig({
exportTrailingSlash: false
});
expect(core.checkTrailingSlash()).toBe(false);
});
it("should check that trailingSlash no exists in Next config", async () => {
const core = getCoreWithNextConfig({
trailingSlash: false
});
expect(core.checkTrailingSlash()).toBe(false);
});
it("should respect exportTrailingSlash from Next config", async () => {
const core = getCoreWithNextConfig({
exportTrailingSlash: true
});
const urls = await core.getSitemapURLs(config.pagesDirectory);
const outputPaths = urls.map(url => url.outputPath);
expect(outputPaths.every(outputPath => outputPath.endsWith("/")));
expect(urls).toMatchSnapshot()
});
it("should exclude ignoredPaths returned by exportPathMap", async () => {
const core = getCoreWithNextConfig({
async exportPathMap(defaultMap) {
return {
"/admin/": { page: "/" } // should be filtered out by ignoredPaths
};
},
});
core.preLaunch();
await core.sitemapMapper(config.pagesDirectory);
core.finish();
const sitemap = fs.readFileSync(
path.resolve(config.targetDirectory, "./sitemap.xml"),
{ encoding: "UTF-8" }
);
expect(sitemap).toMatchSnapshot()
});
it("should generate valid sitemap", async () => {
const core = getCoreWithNextConfig({
async exportPathMap(defaultMap) {
return {
"/exportPathMapURL": { page: "/" }
};
},
exportTrailingSlash: true
});
core.preLaunch();
await core.sitemapMapper(config.pagesDirectory);
core.finish();
const sitemap = fs.readFileSync(
path.resolve(config.targetDirectory, "./sitemap.xml"),
{ encoding: "UTF-8" }
);
expect(sitemap).toMatchSnapshot()
});
});