first commit

This commit is contained in:
2025-12-08 10:52:05 -05:00
commit 50737919fd
935 changed files with 782679 additions and 0 deletions

111
node_modules/@vitest/ui/dist/index.js generated vendored Normal file
View File

@@ -0,0 +1,111 @@
import fs from 'node:fs';
import { fileURLToPath } from 'node:url';
import { toArray } from '@vitest/utils/helpers';
import { resolve, basename } from 'pathe';
import sirv from 'sirv';
import c from 'tinyrainbow';
import { coverageConfigDefaults } from 'vitest/config';
import { isValidApiRequest, isFileServingAllowed } from 'vitest/node';
var version = "4.0.15";
var index = (ctx) => {
if (ctx.version !== version) {
ctx.logger.warn(c.yellow(`Loaded ${c.inverse(c.yellow(` vitest@${ctx.version} `))} and ${c.inverse(c.yellow(` @vitest/ui@${version} `))}.` + "\nRunning mixed versions is not supported and may lead into bugs" + "\nUpdate your dependencies and make sure the versions match."));
}
return {
name: "vitest:ui",
apply: "serve",
configureServer: {
order: "post",
handler(server) {
const uiOptions = ctx.config;
const base = uiOptions.uiBase;
const coverageFolder = resolveCoverageFolder(ctx);
const coveragePath = coverageFolder ? coverageFolder[1] : undefined;
if (coveragePath && base === coveragePath) {
throw new Error(`The ui base path and the coverage path cannot be the same: ${base}, change coverage.reportsDirectory`);
}
if (coverageFolder) {
server.middlewares.use(coveragePath, sirv(coverageFolder[0], {
single: true,
dev: true,
setHeaders: (res) => {
res.setHeader("Cache-Control", "public,max-age=0,must-revalidate");
}
}));
}
const clientDist = resolve(fileURLToPath(import.meta.url), "../client");
const clientIndexHtml = fs.readFileSync(resolve(clientDist, "index.html"), "utf-8");
// eslint-disable-next-line prefer-arrow-callback
server.middlewares.use(function vitestAttachment(req, res, next) {
if (!req.url) {
return next();
}
const url = new URL(req.url, "http://localhost");
if (url.pathname === "/__vitest_attachment__") {
const path = url.searchParams.get("path");
const contentType = url.searchParams.get("contentType");
// ignore invalid requests
if (!isValidApiRequest(ctx.config, req) || !contentType || !path) {
return next();
}
const fsPath = decodeURIComponent(path);
if (!isFileServingAllowed(ctx.vite.config, fsPath)) {
return next();
}
try {
res.writeHead(200, { "content-type": contentType });
fs.createReadStream(fsPath).pipe(res).on("close", () => res.end());
} catch (err) {
next(err);
}
} else {
next();
}
});
// serve index.html with api token
// eslint-disable-next-line prefer-arrow-callback
server.middlewares.use(function vitestUiHtmlMiddleware(req, res, next) {
if (req.url) {
const url = new URL(req.url, "http://localhost");
if (url.pathname === base) {
const html = clientIndexHtml.replace("<!-- !LOAD_METADATA! -->", `<script>window.VITEST_API_TOKEN = ${JSON.stringify(ctx.config.api.token)}<\/script>`);
res.setHeader("Cache-Control", "no-cache, max-age=0, must-revalidate");
res.setHeader("Content-Type", "text/html; charset=utf-8");
res.write(html);
res.end();
return;
}
}
next();
});
server.middlewares.use(base, sirv(clientDist, {
single: true,
dev: true
}));
}
}
};
};
function resolveCoverageFolder(ctx) {
const options = ctx.config;
const htmlReporter = options.api?.port && options.coverage?.enabled ? toArray(options.coverage.reporter).find((reporter) => {
if (typeof reporter === "string") {
return reporter === "html";
}
return reporter[0] === "html";
}) : undefined;
if (!htmlReporter) {
return undefined;
}
// reportsDirectory not resolved yet
const root = resolve(ctx.config?.root || options.root || process.cwd(), options.coverage.reportsDirectory || coverageConfigDefaults.reportsDirectory);
const subdir = Array.isArray(htmlReporter) && htmlReporter.length > 1 && "subdir" in htmlReporter[1] ? htmlReporter[1].subdir : undefined;
if (!subdir || typeof subdir !== "string") {
return [root, `/${basename(root)}/`];
}
return [resolve(root, subdir), `/${basename(root)}/${subdir}/`];
}
export { index as default };