Fix utils_test.ts

This commit is contained in:
Minoru Mizutani 2025-04-29 12:50:09 +09:00
parent e41f8eacf0
commit f3a59f6eae
No known key found for this signature in database
2 changed files with 193 additions and 73 deletions

View file

@ -299,12 +299,23 @@ export function findAvailablePort(
const serverToUse = typeof serverOrPort !== "number" ? (serverOrPort as net.Server) : net.createServer();
let hasResolved = false;
// Maximum number of port attempts before giving up
const MAX_PORT_ATTEMPTS = 10;
let portAttempts = 0;
let currentPort = preferredPort || AVAILABLE_PORT_START;
let timeoutId: number | undefined;
return new Promise((resolve, reject) => {
// Make sure to close the server in case of errors
const cleanupAndReject = (err: Error) => {
if (!hasResolved) {
hasResolved = true;
// Make sure to close the server
// Clear the timeout to prevent leaks
if (timeoutId !== undefined) {
clearTimeout(timeoutId);
timeoutId = undefined;
}
// Make sure to close the server if we created it
if (typeof serverOrPort === "number") {
serverToUse.close(() => {
reject(err);
@ -316,16 +327,40 @@ export function findAvailablePort(
};
// Set a timeout to prevent hanging
const timeoutId = setTimeout(() => {
timeoutId = setTimeout(() => {
if (!hasResolved) {
cleanupAndReject(new Error("Timeout finding available port"));
}
}, 5000); // 5 second timeout
}, 5000) as unknown as number;
const tryNextPort = () => {
if (portAttempts >= MAX_PORT_ATTEMPTS) {
cleanupAndReject(new Error("Timeout finding available port"));
return;
}
portAttempts++;
try {
serverToUse.listen({ port: currentPort, hostname: "127.0.0.1" });
} catch (err) {
// This catch block is mainly for tests since in real network operations,
// errors are emitted as events
const error = err as Error & { code?: string };
if (error.code === "EADDRINUSE") {
currentPort++;
tryNextPort();
} else {
cleanupAndReject(error);
}
}
};
serverToUse.on("error", (err: NodeJS.ErrnoException) => {
if (err.code === "EADDRINUSE") {
// If preferred port is in use, get a random port
serverToUse.listen({ port: 0, hostname: "127.0.0.1" });
// If port is in use, try the next port
currentPort++;
tryNextPort();
} else {
cleanupAndReject(err);
}
@ -334,7 +369,12 @@ export function findAvailablePort(
serverToUse.on("listening", () => {
const { port } = serverToUse.address() as net.AddressInfo;
hasResolved = true;
clearTimeout(timeoutId); // Clear the timeout when we resolve
// Clear the timeout to prevent leaks
if (timeoutId !== undefined) {
clearTimeout(timeoutId);
timeoutId = undefined;
}
// Close the server and then resolve with the port
serverToUse.close(() => {
@ -343,7 +383,7 @@ export function findAvailablePort(
});
// Try preferred port first, or get a random port
serverToUse.listen({ port: preferredPort || 0, hostname: "127.0.0.1" });
tryNextPort();
});
}
@ -385,25 +425,41 @@ export async function parseCommandLineArgs(
const allowHttp = args.includes("--allow-http");
if (!serverUrl) {
log("Error: Server URL is required");
log(usage);
Deno.exit(1);
throw new Error("Process exit called");
}
const url = new URL(serverUrl);
const isLocalhost =
(url.hostname === "localhost" || url.hostname === "127.0.0.1") &&
url.protocol === "http:";
try {
const url = new URL(serverUrl);
const isLocalhost =
(url.hostname === "localhost" || url.hostname === "127.0.0.1") &&
url.protocol === "http:";
if (!(url.protocol === "https:" || isLocalhost || allowHttp)) {
log(
"Error: Non-HTTPS URLs are only allowed for localhost or when --allow-http flag is provided",
);
if (!(url.protocol === "https:" || isLocalhost || allowHttp)) {
log(
"Error: Non-HTTPS URLs are only allowed for localhost or when --allow-http flag is provided",
);
log(usage);
throw new Error("Process exit called");
}
} catch (error) {
if (error instanceof TypeError) {
log(`Error: Invalid URL format: ${serverUrl}`);
log(usage);
throw new Error("Process exit called");
}
throw error;
}
if (specifiedPort !== undefined && Number.isNaN(specifiedPort)) {
log(`Error: Invalid port number: ${args[1]}`);
log(usage);
Deno.exit(1);
throw new Error("Process exit called");
}
// Use the specified port, or find an available one
const callbackPort = specifiedPort || (await findAvailablePort(defaultPort));
const callbackPort = specifiedPort || await findAvailablePort(defaultPort);
if (specifiedPort) {
log(`Using specified callback port: ${callbackPort}`);