-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathoverrides.spec.ts
385 lines (323 loc) · 10.6 KB
/
overrides.spec.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
import assert from "assert";
import fs from "fs";
import path from "path";
import os from "os";
import { RoutesManifest, MiddlewareManifest } from "./interfaces.js";
const importOverrides = import("@apphosting/adapter-nextjs/dist/overrides.js");
describe("route overrides", () => {
let tmpDir: string;
let routesManifestPath: string;
let middlewareManifestPath: string;
beforeEach(() => {
tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "test-manifests-"));
routesManifestPath = path.join(tmpDir, ".next", "routes-manifest.json");
middlewareManifestPath = path.join(tmpDir, ".next", "server", "middleware-manifest.json");
fs.mkdirSync(path.dirname(routesManifestPath), { recursive: true });
fs.mkdirSync(path.dirname(middlewareManifestPath), { recursive: true });
});
it("should add default fah headers to routes manifest", async () => {
const { addRouteOverrides } = await importOverrides;
const initialManifest: RoutesManifest = {
version: 3,
basePath: "",
pages404: true,
staticRoutes: [],
dynamicRoutes: [],
dataRoutes: [],
headers: [
{
source: "/existing",
headers: [{ key: "X-Custom", value: "test" }],
regex: "^/existing$",
},
],
rewrites: [],
redirects: [],
};
fs.writeFileSync(routesManifestPath, JSON.stringify(initialManifest));
fs.writeFileSync(
middlewareManifestPath,
JSON.stringify({ version: 1, sortedMiddleware: [], middleware: {}, functions: {} }),
);
await addRouteOverrides(tmpDir, ".next", {
adapterPackageName: "@apphosting/adapter-nextjs",
adapterVersion: "1.0.0",
});
const updatedManifest = JSON.parse(
fs.readFileSync(routesManifestPath, "utf-8"),
) as RoutesManifest;
const expectedManifest: RoutesManifest = {
version: 3,
basePath: "",
pages404: true,
staticRoutes: [],
dynamicRoutes: [],
dataRoutes: [],
redirects: [],
rewrites: [],
headers: [
{
source: "/existing",
headers: [{ key: "X-Custom", value: "test" }],
regex: "^/existing$",
},
{
source: "/:path*",
regex: "^(?:/((?:[^/]+?)(?:/(?:[^/]+?))*))?(?:/)?$",
headers: [
{
key: "x-fah-adapter",
value: "nextjs-1.0.0",
},
],
},
],
};
assert.deepStrictEqual(updatedManifest, expectedManifest);
});
it("should add middleware header when middleware exists", async () => {
const { addRouteOverrides } = await importOverrides;
const initialManifest: RoutesManifest = {
version: 3,
basePath: "",
pages404: true,
staticRoutes: [],
dynamicRoutes: [],
dataRoutes: [],
headers: [],
rewrites: [],
redirects: [],
};
const middlewareManifest: MiddlewareManifest = {
version: 3,
sortedMiddleware: ["/"],
middleware: {
"/": {
files: ["middleware.ts"],
name: "middleware",
page: "/",
matchers: [
{
regexp: "^/.*$",
originalSource: "/:path*",
},
],
},
},
functions: {},
};
fs.writeFileSync(routesManifestPath, JSON.stringify(initialManifest));
fs.writeFileSync(middlewareManifestPath, JSON.stringify(middlewareManifest));
await addRouteOverrides(tmpDir, ".next", {
adapterPackageName: "@apphosting/adapter-nextjs",
adapterVersion: "1.0.0",
});
const updatedManifest = JSON.parse(
fs.readFileSync(routesManifestPath, "utf-8"),
) as RoutesManifest;
assert.strictEqual(updatedManifest.headers.length, 1);
const expectedManifest: RoutesManifest = {
version: 3,
basePath: "",
pages404: true,
staticRoutes: [],
dynamicRoutes: [],
dataRoutes: [],
rewrites: [],
redirects: [],
headers: [
{
source: "/:path*",
regex: "^(?:/((?:[^/]+?)(?:/(?:[^/]+?))*))?(?:/)?$",
headers: [
{
key: "x-fah-adapter",
value: "nextjs-1.0.0",
},
{ key: "x-fah-middleware", value: "true" },
],
},
],
};
assert.deepStrictEqual(updatedManifest, expectedManifest);
});
afterEach(() => {
fs.rmSync(tmpDir, { recursive: true, force: true });
});
});
describe("next config overrides", () => {
let tmpDir: string;
const nextConfigOverrideBody = `
// This file was automatically generated by Firebase App Hosting adapter
const fahOptimizedConfig = (config) => ({
...config,
images: {
...(config.images || {}),
...(config.images?.unoptimized === undefined && config.images?.loader === undefined
? { unoptimized: true }
: {}),
},
});
const config = typeof originalConfig === 'function'
? async (...args) => {
const resolvedConfig = await originalConfig(...args);
return fahOptimizedConfig(resolvedConfig);
}
: fahOptimizedConfig(originalConfig);
`;
const defaultNextConfig = `
// @ts-nocheck
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
unoptimized: true,
}
}
module.exports = nextConfig
`;
beforeEach(() => {
tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "test-overrides"));
});
it("should set images.unoptimized to true - js normal config", async () => {
const { overrideNextConfig } = await importOverrides;
const originalConfig = `
// @ts-check
/** @type {import('next').NextConfig} */
const nextConfig = {
/* config options here */
}
module.exports = nextConfig
`;
fs.writeFileSync(path.join(tmpDir, "next.config.js"), originalConfig);
await overrideNextConfig(tmpDir, "next.config.js");
const updatedConfig = fs.readFileSync(path.join(tmpDir, "next.config.js"), "utf-8");
assert.equal(
normalizeWhitespace(updatedConfig),
normalizeWhitespace(`
// @ts-nocheck
const originalConfig = require('./next.config.original.js');
${nextConfigOverrideBody}
module.exports = config;
`),
);
});
it("should set images.unoptimized to true - ECMAScript Modules", async () => {
const { overrideNextConfig } = await importOverrides;
const originalConfig = `
// @ts-check
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
/* config options here */
}
export default nextConfig
`;
fs.writeFileSync(path.join(tmpDir, "next.config.mjs"), originalConfig);
await overrideNextConfig(tmpDir, "next.config.mjs");
const updatedConfig = fs.readFileSync(path.join(tmpDir, "next.config.mjs"), "utf-8");
assert.equal(
normalizeWhitespace(updatedConfig),
normalizeWhitespace(`
// @ts-nocheck
import originalConfig from './next.config.original.mjs';
${nextConfigOverrideBody}
export default config;
`),
);
});
it("should set images.unoptimized to true - ECMAScript Function", async () => {
const { overrideNextConfig } = await importOverrides;
const originalConfig = `
// @ts-check
export default (phase, { defaultConfig }) => {
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
/* config options here */
}
return nextConfig
}
`;
fs.writeFileSync(path.join(tmpDir, "next.config.mjs"), originalConfig);
await overrideNextConfig(tmpDir, "next.config.mjs");
const updatedConfig = fs.readFileSync(path.join(tmpDir, "next.config.mjs"), "utf-8");
assert.equal(
normalizeWhitespace(updatedConfig),
normalizeWhitespace(`
// @ts-nocheck
import originalConfig from './next.config.original.mjs';
${nextConfigOverrideBody}
export default config;
`),
);
});
it("should set images.unoptimized to true - TypeScript", async () => {
const { overrideNextConfig } = await importOverrides;
const originalConfig = `
import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
/* config options here */
}
export default nextConfig
`;
fs.writeFileSync(path.join(tmpDir, "next.config.ts"), originalConfig);
await overrideNextConfig(tmpDir, "next.config.ts");
const updatedConfig = fs.readFileSync(path.join(tmpDir, "next.config.ts"), "utf-8");
assert.equal(
normalizeWhitespace(updatedConfig),
normalizeWhitespace(`
// @ts-nocheck
import originalConfig from './next.config.original';
${nextConfigOverrideBody}
module.exports = config;
`),
);
});
it("should create a default next.config.js file if one does not exist yet", async () => {
const { overrideNextConfig } = await importOverrides;
await overrideNextConfig(tmpDir, "next.config.js");
const updatedConfig = fs.readFileSync(path.join(tmpDir, "next.config.js"), "utf-8");
assert.equal(normalizeWhitespace(updatedConfig), normalizeWhitespace(defaultNextConfig));
});
});
describe("validateNextConfigOverride", () => {
let tmpDir: string;
let root: string;
let projectRoot: string;
let configFileName: string;
let preservedConfigFileName: string;
let preservedConfigFilePath: string;
beforeEach(() => {
tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "test-next-config-override"));
root = tmpDir;
projectRoot = tmpDir;
configFileName = "next.config.js";
preservedConfigFileName = "next.config.original.js";
preservedConfigFilePath = path.join(root, preservedConfigFileName);
fs.mkdirSync(root, { recursive: true });
});
afterEach(() => {
fs.rmSync(tmpDir, { recursive: true, force: true });
});
it("should throw an error if a next config file was not created because the user did not have one", async () => {
const { validateNextConfigOverride } = await importOverrides;
await assert.rejects(
async () => await validateNextConfigOverride(root, projectRoot, configFileName),
/Next.js config file not found/,
);
});
it("should throw an error when main config file doesn't exist", async () => {
fs.writeFileSync(preservedConfigFilePath, "module.exports = {}");
const { validateNextConfigOverride } = await importOverrides;
await assert.rejects(
async () => await validateNextConfigOverride(root, projectRoot, configFileName),
/Next Config Override Failed: Next.js config file not found/,
);
});
});
// Normalize whitespace for comparison
function normalizeWhitespace(str: string) {
return str.replace(/\s+/g, " ").trim();
}