mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-09-04 10:11:46 +03:00
perf(webui): reduce cold-start payload (#5262)
This commit is contained in:
@@ -1,8 +1,64 @@
|
||||
import { mkdirSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from "node:fs";
|
||||
import { tmpdir } from "node:os";
|
||||
import path from "node:path";
|
||||
import { gunzipSync } from "node:zlib";
|
||||
import { describe, expect, it } from "vitest";
|
||||
|
||||
import { webuiManualChunk } from "../../vite.config";
|
||||
import {
|
||||
entryLazyFeatureImports,
|
||||
gzipWebuiAssets,
|
||||
webuiManualChunk,
|
||||
writeCompressedWebuiAssets,
|
||||
} from "../../vite.config";
|
||||
|
||||
describe("gzipWebuiAssets", () => {
|
||||
it("compresses finalized files after Rollup writes the bundle", () => {
|
||||
const plugin = gzipWebuiAssets();
|
||||
expect(plugin.generateBundle).toBeUndefined();
|
||||
expect(plugin.writeBundle).toBeTypeOf("function");
|
||||
|
||||
const outputDir = mkdtempSync(path.join(tmpdir(), "nanobot-vite-gzip-"));
|
||||
try {
|
||||
const assetPath = path.join(outputDir, "assets", "index-final.js");
|
||||
mkdirSync(path.dirname(assetPath), { recursive: true });
|
||||
const finalized = Buffer.from(
|
||||
"const __vite__mapDeps = ['assets/lazy-feature.js'];\n".repeat(200),
|
||||
);
|
||||
writeFileSync(assetPath, finalized);
|
||||
|
||||
writeCompressedWebuiAssets(outputDir, ["assets/index-final.js"]);
|
||||
|
||||
expect(gunzipSync(readFileSync(`${assetPath}.gz`))).toEqual(finalized);
|
||||
} finally {
|
||||
rmSync(outputDir, { recursive: true, force: true });
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
describe("entryLazyFeatureImports", () => {
|
||||
it("allows the core runtime but rejects heavy lazy feature chunks", () => {
|
||||
expect(entryLazyFeatureImports(["assets/react-vendor-abc.js"])).toEqual([]);
|
||||
expect(entryLazyFeatureImports([
|
||||
"assets/markdown-vendor-abc.js",
|
||||
"assets/syntax-highlight-def.js",
|
||||
"assets/katex-ghi.js",
|
||||
])).toEqual([
|
||||
"assets/markdown-vendor-abc.js",
|
||||
"assets/syntax-highlight-def.js",
|
||||
"assets/katex-ghi.js",
|
||||
]);
|
||||
});
|
||||
});
|
||||
|
||||
describe("webuiManualChunk", () => {
|
||||
it("keeps the React runtime outside lazy feature chunks", () => {
|
||||
expect(webuiManualChunk("/repo/node_modules/react/index.js")).toBe("react-vendor");
|
||||
expect(webuiManualChunk("/repo/node_modules/react-dom/client.js")).toBe("react-vendor");
|
||||
expect(webuiManualChunk("/repo/node_modules/scheduler/index.js")).toBe("react-vendor");
|
||||
expect(webuiManualChunk("/repo/node_modules/clsx/dist/clsx.mjs")).toBe("react-vendor");
|
||||
expect(webuiManualChunk("\0vite/preload-helper.js")).toBe("react-vendor");
|
||||
});
|
||||
|
||||
it("keeps Refractor's selector parser in the syntax highlighting chunk", () => {
|
||||
expect(
|
||||
webuiManualChunk("/repo/node_modules/hast-util-parse-selector/index.js"),
|
||||
|
||||
Reference in New Issue
Block a user