-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathutils.spec.ts
More file actions
139 lines (115 loc) · 3.84 KB
/
utils.spec.ts
File metadata and controls
139 lines (115 loc) · 3.84 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
const importUtils = import("@apphosting/adapter-nextjs/dist/utils.js");
import { describe, it, beforeEach, afterEach } from "mocha";
import assert from "assert";
import fs from "fs";
import path from "path";
import os from "os";
import { RoutesManifest, MiddlewareManifest } from "../src/interfaces.js";
describe("block vulnerable nextjs versions", () => {
it("should allow for unspecified", async () => {
const { checkNextJSVersion } = await importUtils;
assert.throws(() => {
checkNextJSVersion("15.0.0");
});
assert.ok(() => {
checkNextJSVersion(undefined);
});
assert.ok(() => {
checkNextJSVersion("15.0.5");
});
});
});
describe("manifest utils", () => {
let tmpDir: string;
let distDir: string;
beforeEach(() => {
tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "test-manifests-"));
distDir = ".next";
});
it("should load routes manifest", async () => {
const mockRoutesManifest: RoutesManifest = {
version: 3,
basePath: "",
pages404: true,
staticRoutes: [],
dynamicRoutes: [],
dataRoutes: [],
headers: [],
rewrites: [],
redirects: [],
};
const manifestPath = path.join(tmpDir, distDir, "routes-manifest.json");
fs.mkdirSync(path.dirname(manifestPath), { recursive: true });
fs.writeFileSync(manifestPath, JSON.stringify(mockRoutesManifest));
const { loadRouteManifest } = await importUtils;
const result = loadRouteManifest(tmpDir, distDir);
assert.deepStrictEqual(result, mockRoutesManifest);
});
it("should load middleware manifest", async () => {
const mockMiddleware: MiddlewareManifest = {
version: 1,
sortedMiddleware: ["/"],
functions: {},
middleware: {
"/": {
files: ["middleware.js"],
name: "middleware",
page: "/",
matchers: [
{
regexp: "^(?:\\/(_next\\/data\\/[^/]{1,}))?\\/api\\/([^/.]+)(?:\\/(.*))?",
originalSource: "/api/*",
},
],
},
},
};
const manifestPath = path.join(tmpDir, distDir, "server/middleware-manifest.json");
fs.mkdirSync(path.dirname(manifestPath), { recursive: true });
fs.writeFileSync(manifestPath, JSON.stringify(mockMiddleware));
const { loadMiddlewareManifest } = await importUtils;
const result = loadMiddlewareManifest(tmpDir, distDir);
assert.deepStrictEqual(result, mockMiddleware);
});
it("should write route manifest", async () => {
const mockManifest: RoutesManifest = {
version: 3,
basePath: "",
pages404: true,
staticRoutes: [],
dynamicRoutes: [],
dataRoutes: [],
headers: [
{
source: "/api/*",
headers: [{ key: "X-Custom", value: "value" }],
regex: "^(?:\\/(_next\\/data\\/[^/]{1,}))?\\/api\\/([^/.]+)(?:\\/(.*))?",
},
],
rewrites: [],
redirects: [],
};
const manifestDir = path.join(tmpDir, distDir);
fs.mkdirSync(manifestDir, { recursive: true });
const { writeRouteManifest } = await importUtils;
await writeRouteManifest(tmpDir, distDir, mockManifest);
const manifestPath = path.join(tmpDir, distDir, "routes-manifest.json");
const written = JSON.parse(fs.readFileSync(manifestPath, "utf-8"));
assert.deepStrictEqual(written, mockManifest);
});
it("should throw when loading non-existent route manifest", async () => {
const { loadRouteManifest } = await importUtils;
assert.throws(() => {
loadRouteManifest(tmpDir, distDir);
});
});
it("should throw when loading non-existent middleware manifest", async () => {
const { loadMiddlewareManifest } = await importUtils;
assert.throws(() => {
loadMiddlewareManifest(tmpDir, distDir);
});
});
afterEach(() => {
fs.rmSync(tmpDir, { recursive: true, force: true });
});
});