mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 22:16:41 +00:00
Merge pull request #367 from kaitranntt/dev
feat(release): v7.27.0 - test performance and cliproxy fixes
This commit is contained in:
@@ -96,7 +96,9 @@ bun run validate # Step 3: Final check (must pass)
|
||||
|
||||
## Critical Constraints (NEVER VIOLATE)
|
||||
|
||||
1. **NO EMOJIS** - ASCII only: [OK], [!], [X], [i]
|
||||
1. **NO EMOJIS in CLI output** - Terminal output uses ASCII only: [OK], [!], [X], [i]
|
||||
- **Scope:** CCS CLI terminal output (`src/` code that prints to stdout/stderr)
|
||||
- **Does NOT apply to:** PR descriptions, commit messages, documentation, comments, AI conversations
|
||||
2. **TTY-aware colors** - Respect NO_COLOR env var
|
||||
3. **Non-invasive** - NEVER modify `~/.claude/settings.json` without explicit user request and confirmation (exception: `ccs persist` command)
|
||||
4. **Cross-platform parity** - bash/PowerShell/Node.js must behave identically
|
||||
@@ -232,7 +234,7 @@ Windows fallback: Copies if symlinks unavailable
|
||||
- `child_process.spawn`, handle SIGINT/SIGTERM
|
||||
|
||||
### Terminal Output
|
||||
- ASCII only: [OK], [!], [X], [i] (NO emojis)
|
||||
- ASCII only: [OK], [!], [X], [i] (NO emojis in CLI output)
|
||||
- TTY detect before colors, respect NO_COLOR
|
||||
- Box borders for errors: ╔═╗║╚╝
|
||||
|
||||
@@ -351,7 +353,7 @@ rm -rf ~/.ccs # Clean environment
|
||||
- [ ] Local `docs/` updated — if architecture changed
|
||||
|
||||
**Standards:**
|
||||
- [ ] ASCII only (NO emojis), NO_COLOR respected
|
||||
- [ ] CLI output ASCII only (NO emojis in terminal output), NO_COLOR respected
|
||||
- [ ] YAGNI/KISS/DRY alignment verified
|
||||
- [ ] No manual version bump or tags
|
||||
|
||||
|
||||
@@ -2,3 +2,4 @@
|
||||
# Exclude UI tests - they use vitest and require jsdom environment
|
||||
# Run UI tests separately with: cd ui && bun run test
|
||||
root = "./tests"
|
||||
timeout = 10000
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kaitranntt/ccs",
|
||||
"version": "7.26.2",
|
||||
"version": "7.26.2-dev.3",
|
||||
"description": "Claude Code Switch - Instant profile switching between Claude Sonnet 4.5 and GLM 4.6",
|
||||
"keywords": [
|
||||
"cli",
|
||||
|
||||
@@ -198,9 +198,9 @@ export async function installCliproxyVersion(
|
||||
}
|
||||
|
||||
/** Fetch the latest CLIProxyAPI version from GitHub API */
|
||||
export async function fetchLatestCliproxyVersion(): Promise<string> {
|
||||
const backend = getConfiguredBackend();
|
||||
const result = await new BinaryManager({}, backend).checkForUpdates();
|
||||
export async function fetchLatestCliproxyVersion(backend?: CLIProxyBackend): Promise<string> {
|
||||
const effectiveBackend = backend ?? getConfiguredBackend();
|
||||
const result = await new BinaryManager({}, effectiveBackend).checkForUpdates();
|
||||
return result.latestVersion;
|
||||
}
|
||||
|
||||
@@ -221,9 +221,11 @@ export interface CliproxyUpdateCheckResult {
|
||||
}
|
||||
|
||||
/** Check for CLIProxyAPI binary updates */
|
||||
export async function checkCliproxyUpdate(): Promise<CliproxyUpdateCheckResult> {
|
||||
const backend = getConfiguredBackend();
|
||||
const result = await new BinaryManager({}, backend).checkForUpdates();
|
||||
export async function checkCliproxyUpdate(
|
||||
backend?: CLIProxyBackend
|
||||
): Promise<CliproxyUpdateCheckResult> {
|
||||
const effectiveBackend = backend ?? getConfiguredBackend();
|
||||
const result = await new BinaryManager({}, effectiveBackend).checkForUpdates();
|
||||
|
||||
// Import isNewerVersion for stability check
|
||||
const { isNewerVersion } = await import('./binary/version-checker');
|
||||
@@ -232,11 +234,11 @@ export async function checkCliproxyUpdate(): Promise<CliproxyUpdateCheckResult>
|
||||
? undefined
|
||||
: `v${result.currentVersion} has known stability issues. Max stable: v${CLIPROXY_MAX_STABLE_VERSION}`;
|
||||
|
||||
const backendLabel = backend === 'plus' ? 'CLIProxy Plus' : 'CLIProxy';
|
||||
const backendLabel = effectiveBackend === 'plus' ? 'CLIProxy Plus' : 'CLIProxy';
|
||||
|
||||
return {
|
||||
...result,
|
||||
backend,
|
||||
backend: effectiveBackend,
|
||||
backendLabel,
|
||||
isStable,
|
||||
maxStableVersion: CLIPROXY_MAX_STABLE_VERSION,
|
||||
|
||||
@@ -77,7 +77,7 @@ export async function checkLatestVersion(backend?: CLIProxyBackend): Promise<Lat
|
||||
try {
|
||||
// Use checkCliproxyUpdate which is backend-aware (uses correct GitHub repo)
|
||||
const { checkCliproxyUpdate } = await import('../binary-manager');
|
||||
const updateResult = await checkCliproxyUpdate();
|
||||
const updateResult = await checkCliproxyUpdate(effectiveBackend);
|
||||
const latestVersion = updateResult.latestVersion;
|
||||
const currentVersion = getInstalledCliproxyVersion(effectiveBackend);
|
||||
const updateAvailable = latestVersion !== currentVersion;
|
||||
@@ -151,7 +151,7 @@ export async function installLatest(
|
||||
backend ?? loadOrCreateUnifiedConfig().cliproxy?.backend ?? DEFAULT_BACKEND;
|
||||
|
||||
try {
|
||||
const latestVersion = await fetchLatestCliproxyVersion();
|
||||
const latestVersion = await fetchLatestCliproxyVersion(effectiveBackend);
|
||||
const currentVersion = getInstalledCliproxyVersion(effectiveBackend);
|
||||
const wasPinned = isVersionPinned(effectiveBackend);
|
||||
|
||||
|
||||
@@ -216,7 +216,8 @@ router.post('/proxy-stop', async (_req: Request, res: Response): Promise<void> =
|
||||
*/
|
||||
router.get('/update-check', async (_req: Request, res: Response): Promise<void> => {
|
||||
try {
|
||||
const result = await checkCliproxyUpdate();
|
||||
const backend = getConfiguredBackend();
|
||||
const result = await checkCliproxyUpdate(backend);
|
||||
res.json(result);
|
||||
} catch (error) {
|
||||
res.status(500).json({ error: (error as Error).message });
|
||||
@@ -625,7 +626,8 @@ router.post('/install', async (req: Request, res: Response): Promise<void> => {
|
||||
await new Promise((r) => setTimeout(r, 500));
|
||||
|
||||
// Install the version
|
||||
await installCliproxyVersion(version, true);
|
||||
const backend = getConfiguredBackend();
|
||||
await installCliproxyVersion(version, true, backend);
|
||||
|
||||
res.json({
|
||||
success: true,
|
||||
|
||||
@@ -0,0 +1,137 @@
|
||||
/**
|
||||
* Preset Mock Responses
|
||||
*
|
||||
* Common response fixtures for CCS CLI tests.
|
||||
* Import these instead of duplicating response shapes.
|
||||
*/
|
||||
|
||||
import type { MockResponse, MockFetchHandler } from '../types';
|
||||
|
||||
// ============================================================================
|
||||
// CLIProxy API Responses
|
||||
// ============================================================================
|
||||
|
||||
/** Successful health check response */
|
||||
export const HEALTH_OK: MockResponse = {
|
||||
status: 200,
|
||||
body: { healthy: true, version: '1.0.0' },
|
||||
};
|
||||
|
||||
/** Failed health check response */
|
||||
export const HEALTH_FAIL: MockResponse = {
|
||||
status: 503,
|
||||
body: { healthy: false, error: 'Service unavailable' },
|
||||
};
|
||||
|
||||
/** Successful file upload response */
|
||||
export const UPLOAD_SUCCESS: MockResponse = {
|
||||
status: 200,
|
||||
body: { status: 'ok', id: 'uploaded-123' },
|
||||
};
|
||||
|
||||
/** Unauthorized response */
|
||||
export const UNAUTHORIZED: MockResponse = {
|
||||
status: 401,
|
||||
body: { error: 'Unauthorized' },
|
||||
};
|
||||
|
||||
/** Forbidden response */
|
||||
export const FORBIDDEN: MockResponse = {
|
||||
status: 403,
|
||||
body: { error: 'Forbidden' },
|
||||
};
|
||||
|
||||
/** Not found response */
|
||||
export const NOT_FOUND: MockResponse = {
|
||||
status: 404,
|
||||
body: { error: 'Not Found' },
|
||||
};
|
||||
|
||||
/** Internal server error response */
|
||||
export const SERVER_ERROR: MockResponse = {
|
||||
status: 500,
|
||||
body: { error: 'Internal Server Error' },
|
||||
};
|
||||
|
||||
// ============================================================================
|
||||
// Remote Proxy Responses
|
||||
// ============================================================================
|
||||
|
||||
/** Remote proxy connection success */
|
||||
export const REMOTE_PROXY_OK: MockResponse = {
|
||||
status: 200,
|
||||
body: { connected: true, latency: 50 },
|
||||
};
|
||||
|
||||
/** Remote proxy connection timeout */
|
||||
export const REMOTE_PROXY_TIMEOUT: MockResponse = {
|
||||
status: 408,
|
||||
body: { error: 'Request Timeout' },
|
||||
delay: 100,
|
||||
};
|
||||
|
||||
// ============================================================================
|
||||
// Token Upload Responses
|
||||
// ============================================================================
|
||||
|
||||
/** Token upload success */
|
||||
export const TOKEN_UPLOAD_OK: MockResponse = {
|
||||
status: 200,
|
||||
body: { status: 'ok', id: 'token-456', type: 'gemini' },
|
||||
};
|
||||
|
||||
/** Token upload conflict (already exists) */
|
||||
export const TOKEN_UPLOAD_CONFLICT: MockResponse = {
|
||||
status: 409,
|
||||
body: { error: 'Token already exists', id: 'existing-789' },
|
||||
};
|
||||
|
||||
// ============================================================================
|
||||
// Mock Fetch Handler Presets
|
||||
// ============================================================================
|
||||
|
||||
/** Health endpoint handler */
|
||||
export const HEALTH_HANDLER: MockFetchHandler = {
|
||||
url: /\/health$/,
|
||||
method: 'GET',
|
||||
response: { healthy: true },
|
||||
};
|
||||
|
||||
/** Upload endpoint handler */
|
||||
export const UPLOAD_HANDLER: MockFetchHandler = {
|
||||
url: /\/v0\/management\/auth-files/,
|
||||
method: 'POST',
|
||||
response: { status: 'ok', id: 'uploaded-123' },
|
||||
status: 200,
|
||||
};
|
||||
|
||||
/** Messages endpoint handler (Claude API mock) */
|
||||
export const MESSAGES_HANDLER: MockFetchHandler = {
|
||||
url: /\/v1\/messages/,
|
||||
method: 'POST',
|
||||
response: {
|
||||
id: 'msg-123',
|
||||
type: 'message',
|
||||
role: 'assistant',
|
||||
content: [{ type: 'text', text: 'Mock response' }],
|
||||
},
|
||||
status: 200,
|
||||
};
|
||||
|
||||
// ============================================================================
|
||||
// Helper Functions
|
||||
// ============================================================================
|
||||
|
||||
/**
|
||||
* Create a delayed response for timeout testing
|
||||
*/
|
||||
export function createDelayedResponse(base: MockResponse, delayMs: number): MockResponse {
|
||||
return { ...base, delay: delayMs };
|
||||
}
|
||||
|
||||
/**
|
||||
* Create error response with custom message
|
||||
*/
|
||||
export function createErrorResponse(status: number, message: string): MockResponse {
|
||||
return { status, body: { error: message } };
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
/**
|
||||
* Mock Infrastructure
|
||||
*
|
||||
* Centralized test mocking utilities for CCS CLI.
|
||||
* Replaces real HTTP/HTTPS servers with instant mock responses.
|
||||
*
|
||||
* @example
|
||||
* import { mockFetch, restoreFetch, HEALTH_OK } from '../mocks';
|
||||
*
|
||||
* beforeEach(() => {
|
||||
* mockFetch([{ url: /\/health/, response: { ok: true } }]);
|
||||
* });
|
||||
*
|
||||
* afterEach(() => restoreFetch());
|
||||
*/
|
||||
|
||||
// Types
|
||||
export type {
|
||||
HttpMethod,
|
||||
MockResponse,
|
||||
MockResponseBody,
|
||||
MockHttpServerConfig,
|
||||
MockFetchHandler,
|
||||
CapturedRequest,
|
||||
MockHttpServer,
|
||||
RouteKey,
|
||||
} from './types';
|
||||
|
||||
// Mock HTTP Server
|
||||
export { createMockHttpServer, createMockResponse } from './mock-http-server';
|
||||
|
||||
// Mock Fetch
|
||||
export {
|
||||
mockFetch,
|
||||
restoreFetch,
|
||||
getCapturedFetchRequests,
|
||||
clearCapturedFetchRequests,
|
||||
isFetchMocked,
|
||||
} from './mock-fetch';
|
||||
|
||||
// Preset Responses
|
||||
export {
|
||||
// Health responses
|
||||
HEALTH_OK,
|
||||
HEALTH_FAIL,
|
||||
// Upload responses
|
||||
UPLOAD_SUCCESS,
|
||||
TOKEN_UPLOAD_OK,
|
||||
TOKEN_UPLOAD_CONFLICT,
|
||||
// Error responses
|
||||
UNAUTHORIZED,
|
||||
FORBIDDEN,
|
||||
NOT_FOUND,
|
||||
SERVER_ERROR,
|
||||
// Remote proxy responses
|
||||
REMOTE_PROXY_OK,
|
||||
REMOTE_PROXY_TIMEOUT,
|
||||
// Handler presets
|
||||
HEALTH_HANDLER,
|
||||
UPLOAD_HANDLER,
|
||||
MESSAGES_HANDLER,
|
||||
// Helper functions
|
||||
createDelayedResponse,
|
||||
createErrorResponse,
|
||||
} from './fixtures/responses';
|
||||
@@ -0,0 +1,179 @@
|
||||
/**
|
||||
* Mock Fetch Utilities
|
||||
*
|
||||
* Intercept global fetch() for testing without network operations.
|
||||
* Uses Bun's native spyOn for reliable mocking.
|
||||
*/
|
||||
|
||||
import { spyOn, type Mock } from 'bun:test';
|
||||
import type { MockFetchHandler, CapturedRequest } from './types';
|
||||
|
||||
/** Store for original fetch and mock state */
|
||||
let originalFetch: typeof fetch | null = null;
|
||||
let mockInstance: Mock<typeof fetch> | null = null;
|
||||
let capturedRequests: CapturedRequest[] = [];
|
||||
|
||||
/**
|
||||
* Install mock fetch handlers
|
||||
*
|
||||
* @example
|
||||
* beforeEach(() => {
|
||||
* mockFetch([
|
||||
* { url: /\/health/, response: { ok: true } },
|
||||
* { url: /\/upload/, response: { id: '123' }, status: 201 },
|
||||
* ]);
|
||||
* });
|
||||
*
|
||||
* afterEach(() => restoreFetch());
|
||||
*/
|
||||
export function mockFetch(handlers: MockFetchHandler[]): void {
|
||||
// Restore previous mock if exists (prevents spy leak on double-call)
|
||||
if (mockInstance) {
|
||||
mockInstance.mockRestore();
|
||||
mockInstance = null;
|
||||
}
|
||||
|
||||
// Store original if not already stored
|
||||
if (!originalFetch) {
|
||||
originalFetch = globalThis.fetch;
|
||||
}
|
||||
|
||||
// Clear previous captures
|
||||
capturedRequests = [];
|
||||
|
||||
// Create mock implementation
|
||||
mockInstance = spyOn(globalThis, 'fetch').mockImplementation(
|
||||
async (input: RequestInfo | URL, init?: RequestInit): Promise<Response> => {
|
||||
const url = typeof input === 'string' ? input : input instanceof URL ? input.href : input.url;
|
||||
const method = init?.method ?? 'GET';
|
||||
|
||||
// Capture request
|
||||
const captured: CapturedRequest = {
|
||||
url,
|
||||
method,
|
||||
headers: {},
|
||||
body: null,
|
||||
};
|
||||
|
||||
// Extract headers
|
||||
if (init?.headers) {
|
||||
if (init.headers instanceof Headers) {
|
||||
init.headers.forEach((value, key) => {
|
||||
captured.headers[key] = value;
|
||||
});
|
||||
} else if (Array.isArray(init.headers)) {
|
||||
for (const [key, value] of init.headers) {
|
||||
captured.headers[key] = value;
|
||||
}
|
||||
} else {
|
||||
captured.headers = { ...init.headers };
|
||||
}
|
||||
}
|
||||
|
||||
// Extract body with type differentiation
|
||||
if (init?.body) {
|
||||
if (typeof init.body === 'string') {
|
||||
captured.body = init.body;
|
||||
} else if (init.body instanceof FormData) {
|
||||
captured.body = '[FormData]';
|
||||
} else if (init.body instanceof URLSearchParams) {
|
||||
captured.body = '[URLSearchParams]';
|
||||
} else if (init.body instanceof ArrayBuffer || ArrayBuffer.isView(init.body)) {
|
||||
captured.body = '[ArrayBuffer]';
|
||||
} else if (init.body instanceof Blob) {
|
||||
captured.body = '[Blob]';
|
||||
} else if (typeof init.body === 'object' && 'getReader' in init.body) {
|
||||
captured.body = '[ReadableStream]';
|
||||
} else {
|
||||
captured.body = '[Binary]';
|
||||
}
|
||||
}
|
||||
|
||||
capturedRequests.push(captured);
|
||||
|
||||
// Find matching handler
|
||||
for (const handler of handlers) {
|
||||
// Check method match
|
||||
if (handler.method && handler.method !== method) continue;
|
||||
|
||||
// Check URL match
|
||||
const urlMatches =
|
||||
typeof handler.url === 'string' ? url === handler.url : handler.url.test(url);
|
||||
|
||||
if (!urlMatches) continue;
|
||||
|
||||
// Call onRequest callback if provided
|
||||
if (handler.onRequest && input instanceof Request) {
|
||||
handler.onRequest(input);
|
||||
}
|
||||
|
||||
// Apply delay if specified
|
||||
if (handler.delay) {
|
||||
await new Promise((resolve) => setTimeout(resolve, handler.delay));
|
||||
}
|
||||
|
||||
// Build response
|
||||
const status = handler.status ?? 200;
|
||||
const headers = new Headers(handler.headers ?? {});
|
||||
|
||||
let body: string | null = null;
|
||||
if (handler.response !== null && handler.response !== undefined) {
|
||||
if (typeof handler.response === 'object') {
|
||||
body = JSON.stringify(handler.response);
|
||||
if (!headers.has('Content-Type')) {
|
||||
headers.set('Content-Type', 'application/json');
|
||||
}
|
||||
} else {
|
||||
body = String(handler.response);
|
||||
}
|
||||
}
|
||||
|
||||
return new Response(body, { status, headers });
|
||||
}
|
||||
|
||||
// No handler matched - return 404
|
||||
return new Response(JSON.stringify({ error: 'No mock handler matched', url, method }), {
|
||||
status: 404,
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
});
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore original fetch after tests
|
||||
* MUST be called in afterEach to prevent test pollution
|
||||
*/
|
||||
export function restoreFetch(): void {
|
||||
if (mockInstance) {
|
||||
mockInstance.mockRestore();
|
||||
mockInstance = null;
|
||||
}
|
||||
if (originalFetch) {
|
||||
globalThis.fetch = originalFetch;
|
||||
originalFetch = null;
|
||||
}
|
||||
capturedRequests = [];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all requests captured during mock
|
||||
* Useful for asserting request parameters
|
||||
*/
|
||||
export function getCapturedFetchRequests(): CapturedRequest[] {
|
||||
return [...capturedRequests];
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear captured requests without restoring fetch
|
||||
*/
|
||||
export function clearCapturedFetchRequests(): void {
|
||||
capturedRequests = [];
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if fetch is currently mocked
|
||||
*/
|
||||
export function isFetchMocked(): boolean {
|
||||
return mockInstance !== null;
|
||||
}
|
||||
@@ -0,0 +1,119 @@
|
||||
/**
|
||||
* Mock HTTP Server
|
||||
*
|
||||
* Simulates HTTP server responses without actual network operations.
|
||||
* No port binding - instant responses for fast testing.
|
||||
*/
|
||||
|
||||
import type {
|
||||
HttpMethod,
|
||||
MockHttpServer,
|
||||
MockHttpServerConfig,
|
||||
MockResponse,
|
||||
CapturedRequest,
|
||||
RouteKey,
|
||||
} from './types';
|
||||
|
||||
/** Default 404 response for unmatched routes */
|
||||
const DEFAULT_NOT_FOUND: MockResponse = {
|
||||
status: 404,
|
||||
body: { error: 'Not Found' },
|
||||
};
|
||||
|
||||
/**
|
||||
* Create a mock HTTP server that handles requests without network
|
||||
*
|
||||
* @example
|
||||
* const server = createMockHttpServer({
|
||||
* routes: {
|
||||
* 'GET /health': { status: 200, body: { healthy: true } },
|
||||
* 'POST /upload': { status: 201, body: { id: '123' } },
|
||||
* }
|
||||
* });
|
||||
* const response = server.handle('GET', '/health');
|
||||
*/
|
||||
export function createMockHttpServer(config: MockHttpServerConfig): MockHttpServer {
|
||||
const capturedRequests: CapturedRequest[] = [];
|
||||
const { routes, defaultResponse = DEFAULT_NOT_FOUND } = config;
|
||||
|
||||
return {
|
||||
handle(method: HttpMethod, path: string, body?: unknown): MockResponse {
|
||||
// Capture request for assertions
|
||||
capturedRequests.push({
|
||||
url: path,
|
||||
method,
|
||||
headers: {},
|
||||
body: body ? JSON.stringify(body) : null,
|
||||
});
|
||||
|
||||
// Find matching route
|
||||
const routeKey = `${method} ${path}` as RouteKey;
|
||||
const exactMatch = routes[routeKey];
|
||||
if (exactMatch) {
|
||||
return exactMatch;
|
||||
}
|
||||
|
||||
// Try pattern matching for routes with wildcards
|
||||
for (const [key, response] of Object.entries(routes)) {
|
||||
// Split on first space only to preserve spaces in path
|
||||
const spaceIndex = key.indexOf(' ');
|
||||
if (spaceIndex === -1) continue;
|
||||
const routeMethod = key.slice(0, spaceIndex);
|
||||
const routePath = key.slice(spaceIndex + 1);
|
||||
if (routeMethod !== method) continue;
|
||||
|
||||
// Check if route path is a pattern (contains *)
|
||||
if (routePath.includes('*')) {
|
||||
// Escape regex special chars, then replace * with .*
|
||||
const escaped = routePath.replace(/[.+?^${}()|[\]\\]/g, '\\$&');
|
||||
const pattern = escaped.replace(/\*/g, '.*');
|
||||
const regex = new RegExp(`^${pattern}$`);
|
||||
if (regex.test(path)) {
|
||||
return response;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return defaultResponse;
|
||||
},
|
||||
|
||||
getCapturedRequests(): CapturedRequest[] {
|
||||
return [...capturedRequests];
|
||||
},
|
||||
|
||||
clearCapturedRequests(): void {
|
||||
capturedRequests.length = 0;
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a mock Response object (Web API compatible)
|
||||
*
|
||||
* @example
|
||||
* const response = createMockResponse({ status: 200, body: { ok: true } });
|
||||
*/
|
||||
export function createMockResponse(config: MockResponse): Response {
|
||||
const { status = 200, body, headers = {} } = config;
|
||||
|
||||
let responseBody: string | null = null;
|
||||
const responseHeaders = new Headers(headers);
|
||||
|
||||
if (body !== null && body !== undefined) {
|
||||
if (typeof body === 'object' && !(body instanceof Buffer)) {
|
||||
responseBody = JSON.stringify(body);
|
||||
if (!responseHeaders.has('Content-Type')) {
|
||||
responseHeaders.set('Content-Type', 'application/json');
|
||||
}
|
||||
} else if (body instanceof Buffer) {
|
||||
responseBody = body.toString();
|
||||
} else {
|
||||
responseBody = body;
|
||||
}
|
||||
}
|
||||
|
||||
return new Response(responseBody, {
|
||||
status,
|
||||
headers: responseHeaders,
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
/**
|
||||
* Mock Infrastructure Types
|
||||
*
|
||||
* Type definitions for test mocking utilities.
|
||||
* Used to replace real HTTP/HTTPS servers with instant mock responses.
|
||||
*/
|
||||
|
||||
/** HTTP methods supported by mock server */
|
||||
export type HttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
|
||||
|
||||
/** Mock response body - can be object, string, or Buffer */
|
||||
export type MockResponseBody = Record<string, unknown> | string | Buffer | null;
|
||||
|
||||
/** Configuration for a single mock response */
|
||||
export interface MockResponse {
|
||||
/** HTTP status code (default: 200) */
|
||||
status?: number;
|
||||
/** Response body - objects are JSON stringified */
|
||||
body?: MockResponseBody;
|
||||
/** Response headers */
|
||||
headers?: Record<string, string>;
|
||||
/** Delay in ms before responding (for timeout testing) */
|
||||
delay?: number;
|
||||
}
|
||||
|
||||
/** Route key format: "METHOD /path" */
|
||||
export type RouteKey = `${HttpMethod} ${string}`;
|
||||
|
||||
/** Configuration for createMockHttpServer */
|
||||
export interface MockHttpServerConfig {
|
||||
/** Route definitions - key format: "METHOD /path" */
|
||||
routes: Record<RouteKey, MockResponse>;
|
||||
/** Default response for unmatched routes */
|
||||
defaultResponse?: MockResponse;
|
||||
}
|
||||
|
||||
/** Mock fetch handler configuration */
|
||||
export interface MockFetchHandler {
|
||||
/** URL pattern to match (string for exact, RegExp for pattern) */
|
||||
url: string | RegExp;
|
||||
/** HTTP method to match (optional, matches all if not specified) */
|
||||
method?: HttpMethod;
|
||||
/** Response to return */
|
||||
response: MockResponseBody;
|
||||
/** HTTP status code (default: 200) */
|
||||
status?: number;
|
||||
/** Response headers */
|
||||
headers?: Record<string, string>;
|
||||
/** Delay in ms before responding */
|
||||
delay?: number;
|
||||
/** Function to capture and validate request */
|
||||
onRequest?: (request: Request) => void;
|
||||
}
|
||||
|
||||
/** Request captured by mock fetch for assertions */
|
||||
export interface CapturedRequest {
|
||||
url: string;
|
||||
method: string;
|
||||
headers: Record<string, string>;
|
||||
body: string | null;
|
||||
}
|
||||
|
||||
/** Mock HTTP server instance */
|
||||
export interface MockHttpServer {
|
||||
/** Handle a request and return mock response */
|
||||
handle(method: HttpMethod, path: string, body?: unknown): MockResponse;
|
||||
/** Get all captured requests */
|
||||
getCapturedRequests(): CapturedRequest[];
|
||||
/** Clear captured requests */
|
||||
clearCapturedRequests(): void;
|
||||
}
|
||||
@@ -6,84 +6,19 @@
|
||||
*/
|
||||
import { describe, it, expect, afterEach } from 'bun:test';
|
||||
import * as http from 'http';
|
||||
import * as https from 'https';
|
||||
import type { AddressInfo } from 'net';
|
||||
|
||||
// Import the class under test
|
||||
import { HttpsTunnelProxy, type HttpsTunnelConfig } from '../../../src/cliproxy/https-tunnel-proxy';
|
||||
|
||||
/**
|
||||
* Self-signed certificate for testing HTTPS servers.
|
||||
* Generated with: openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365 -nodes -subj "/CN=localhost"
|
||||
*/
|
||||
const TEST_CERT = {
|
||||
key: `-----BEGIN PRIVATE KEY-----
|
||||
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQC1Ji8aq3YnxiRC
|
||||
i5syvghdG+08f9Gc1C55UiNZc5zxY6Ij73pg72fWO614WH5MT3GeeDHdA4jF/xxZ
|
||||
tgLecJ14L5CyqpbcFYnayjRS5WjWfG40VOsVAf5OiJem6YL4Yu9EExO1MxhzIQmW
|
||||
fqijCSBVPiYkJ9CoT1EuUMPBudWkxs5NQHUYJu2Hq/mG89W+yMuT+Yp9YKau1snb
|
||||
x0I4aqf+OBJKrlWEZ+tgcTbyWW0bvQv8Ou9cFZjsXQF8jXBHJ97/LPW850jKt76J
|
||||
6PjIZeaTScZo9Py/fSIf8+4XYFHr3TVmUpoa1f1jmp+kE0H51+KDnqbcYCB6EwFm
|
||||
UFRaJ6ZtAgMBAAECggEAB5j3DMqi2qmIHR+3KKT+ZiP6X+PfKhFeyZ5/oQwk9Egr
|
||||
erpb4EjqNVACHIle8rBk9t0vqjIFwILMm5lIptpY9bt4+XqyImo81+eh04A6VL9E
|
||||
l/6fxXJ0n11B5Fw9g/wSRkFOkvZLpjh9Kx9befWzXMqN1aJd2/vyTwZQJNs4cgAF
|
||||
BUppw0PG1ujLXl48pNoGqMVLALWA1XwlexBxh6EgU9rsar9desqqhF1pZIAimB4x
|
||||
pvQSPqENFjCOMY93RRvZHITE37Y61BiofdHHqIDLAqYZLHlq+rUupYe9auUHMpaD
|
||||
KFV99x9gfVS9l0aqzxXw+nqar9o1+h5lWO2hCw3HgQKBgQD1n19aJ3z1TC1bRLGV
|
||||
H1UTgx/TAfFsXB7S3RO+Tkfhn+g169ByOWRELIGptOSBYauo/N29AYNHjNJPZDYM
|
||||
sraJfyLStrcCTzXcum1Xfx6rjyq5LU5D93F6ZXGBlVrLmk/+YEep65g0X82VzbPN
|
||||
9aIKW2kBLKuH2O9MwaqWko+ZEQKBgQC8zXlgsq2fkKeyRJfIAN8+Wx2Kd1n5KPbl
|
||||
nvbj9k59oYBz1yggj9v6vjfo9MrgZxp5LmR5UgGsSFpqXpkA7SDYCvKZUwQj/eIx
|
||||
LhV6NG+SnbFKtinIuh9GHiEKGNxJsRL7ZljVjW6f6C4f4MeyEW2IpE5AMAaCfpUS
|
||||
JxI3afJXnQKBgBcKsGNAuRQ55Tdeploa6lw+PMoKsJ89tRaK7sM3jL65xYrpaFCO
|
||||
2b0bf75v3c/VXckoj5Sfg7U+nKwd9oQSb9VOO/IQefKZg7AFPSSsJDBr6dIdUe5G
|
||||
VDrrMU66uB3JiB+Q4KgsFcc0BZE8DtYPaPgXwy39Bspjq29D68DcVuRBAoGAZbA9
|
||||
qalS/lhJGij7nwtpMgqdNJDn8tzvbelajJmC2QN9Tecag783+istrdj61DZz+cTU
|
||||
9MsIf6RQnm3o9qjBQdtTouUlm8UIaPirNLC9TziD3vuSMbydT4S2wtt0+nPXB3Su
|
||||
cAbHCHVjMmQ86lmcpzXnt4amWu6Wl7pXg2Ua07kCgYEA8XMfXql48oUVIr+cN5AN
|
||||
nnql5ojMi2Vp9SeTDM/LKCJ9HORCKi4DyHqm06OjDFi2Al57DVsLHpxENWVSgUmp
|
||||
OpcE1P2kqmDqQguFg9GUPX38zspijdVBd1rtpPfHsAu+ZvRWT8ozFLKZ3Xjg1fIx
|
||||
TL6BeOBii9TlZ66SlZT5HRM=
|
||||
-----END PRIVATE KEY-----`,
|
||||
cert: `-----BEGIN CERTIFICATE-----
|
||||
MIIDCTCCAfGgAwIBAgIUfoHoOgjjiqPNOxpbp7jHBFSfTeEwDQYJKoZIhvcNAQEL
|
||||
BQAwFDESMBAGA1UEAwwJbG9jYWxob3N0MB4XDTI2MDExNDE1MzAyMFoXDTI3MDEx
|
||||
NDE1MzAyMFowFDESMBAGA1UEAwwJbG9jYWxob3N0MIIBIjANBgkqhkiG9w0BAQEF
|
||||
AAOCAQ8AMIIBCgKCAQEAtSYvGqt2J8YkQoubMr4IXRvtPH/RnNQueVIjWXOc8WOi
|
||||
I+96YO9n1juteFh+TE9xnngx3QOIxf8cWbYC3nCdeC+QsqqW3BWJ2so0UuVo1nxu
|
||||
NFTrFQH+ToiXpumC+GLvRBMTtTMYcyEJln6oowkgVT4mJCfQqE9RLlDDwbnVpMbO
|
||||
TUB1GCbth6v5hvPVvsjLk/mKfWCmrtbJ28dCOGqn/jgSSq5VhGfrYHE28lltG70L
|
||||
/DrvXBWY7F0BfI1wRyfe/yz1vOdIyre+iej4yGXmk0nGaPT8v30iH/PuF2BR6901
|
||||
ZlKaGtX9Y5qfpBNB+dfig56m3GAgehMBZlBUWiembQIDAQABo1MwUTAdBgNVHQ4E
|
||||
FgQUHvZklBlcvTOIuN/xSO7BP7rgSqswHwYDVR0jBBgwFoAUHvZklBlcvTOIuN/x
|
||||
SO7BP7rgSqswDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAWRj4
|
||||
bB1eObtMOal4VPmL5iX07XzL4hp6Dwu2LSrw9KMArqTTeyJEGNSsykuHPZwPIflD
|
||||
JkzfrFfDv8q7YDpSLy9vJN2E+SPn/Oq2BehUmD+uURghaoSsXeyY9Kv6vGZri95l
|
||||
rgg+6wLJDVrnw5tKxEHx5hUyVR3Ms4LwU/hwAcCGCxx5exhvLpfjjxGBR814kCEc
|
||||
IKGISNjqDo1Pz1Xm8QBLzG4CtlzE/QEbkJKImmwskv6vvoRbWg+B529WzFFCReYK
|
||||
/sULgpvG29Uc3MwZK242dKyTUFdI6tQuZ8xierXwP0kIFlP2phtkgE9kjQJqrtRZ
|
||||
fago/IeVI/sKlApDxA==
|
||||
-----END CERTIFICATE-----`,
|
||||
};
|
||||
|
||||
describe('HttpsTunnelProxy', () => {
|
||||
let tunnel: HttpsTunnelProxy | null = null;
|
||||
let mockServer: https.Server | null = null;
|
||||
let mockServerPort: number = 0;
|
||||
|
||||
afterEach(async () => {
|
||||
afterEach(() => {
|
||||
// Clean up tunnel
|
||||
if (tunnel) {
|
||||
tunnel.stop();
|
||||
tunnel = null;
|
||||
}
|
||||
// Clean up mock server
|
||||
if (mockServer) {
|
||||
await new Promise<void>((resolve) => {
|
||||
mockServer!.close(() => resolve());
|
||||
});
|
||||
mockServer = null;
|
||||
}
|
||||
});
|
||||
|
||||
describe('constructor', () => {
|
||||
@@ -338,123 +273,36 @@ describe('HttpsTunnelProxy', () => {
|
||||
});
|
||||
|
||||
describe('error handling', () => {
|
||||
it(
|
||||
'should handle upstream timeout',
|
||||
async () => {
|
||||
// Create an HTTPS server that accepts connections but delays response
|
||||
// beyond the tunnel's timeout. This tests the socket-level timeout.
|
||||
const slowServer = https.createServer(
|
||||
{ key: TEST_CERT.key, cert: TEST_CERT.cert },
|
||||
(req, res) => {
|
||||
// Delay response beyond tunnel timeout (500ms)
|
||||
// The tunnel should timeout before this completes
|
||||
setTimeout(() => {
|
||||
res.writeHead(200);
|
||||
res.end('too late');
|
||||
}, 2000);
|
||||
}
|
||||
);
|
||||
|
||||
await new Promise<void>((resolve) => {
|
||||
slowServer.listen(0, '127.0.0.1', () => resolve());
|
||||
});
|
||||
|
||||
const slowPort = (slowServer.address() as AddressInfo).port;
|
||||
|
||||
try {
|
||||
tunnel = new HttpsTunnelProxy({
|
||||
remoteHost: '127.0.0.1',
|
||||
remotePort: slowPort,
|
||||
timeoutMs: 500, // Short timeout - server responds after 2000ms
|
||||
allowSelfSigned: true,
|
||||
});
|
||||
|
||||
const port = await tunnel.start();
|
||||
|
||||
// Make request - should timeout because server delays 2s but tunnel times out at 500ms
|
||||
const response = await new Promise<http.IncomingMessage | Error>((resolve, reject) => {
|
||||
const req = http.request(
|
||||
{
|
||||
hostname: '127.0.0.1',
|
||||
port,
|
||||
path: '/v1/messages',
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
},
|
||||
resolve
|
||||
);
|
||||
req.on('error', (err) => resolve(err)); // Resolve with error instead of reject
|
||||
req.setTimeout(3000); // Client timeout longer than tunnel timeout
|
||||
req.write('{}');
|
||||
req.end();
|
||||
});
|
||||
|
||||
// Either 502 response or connection error is acceptable
|
||||
// The tunnel should have timed out and returned 502 or closed the connection
|
||||
expect(response).toBeDefined();
|
||||
if (response instanceof http.IncomingMessage) {
|
||||
expect(response.statusCode).toBe(502);
|
||||
}
|
||||
} finally {
|
||||
slowServer.close();
|
||||
}
|
||||
},
|
||||
{ timeout: 10000 }
|
||||
);
|
||||
|
||||
it('should handle client disconnect (premature close)', async () => {
|
||||
// Create a slow HTTPS server that holds connection
|
||||
// HttpsTunnelProxy uses https.request(), so we need an HTTPS server
|
||||
const slowServer = https.createServer(
|
||||
{ key: TEST_CERT.key, cert: TEST_CERT.cert },
|
||||
(req, res) => {
|
||||
// Wait before responding
|
||||
setTimeout(() => {
|
||||
res.writeHead(200);
|
||||
res.end('ok');
|
||||
}, 2000);
|
||||
}
|
||||
);
|
||||
|
||||
await new Promise<void>((resolve) => {
|
||||
slowServer.listen(0, '127.0.0.1', () => resolve());
|
||||
// Test that tunnel handles client-side aborts gracefully
|
||||
// No need for mock - just test tunnel's resilience to client errors
|
||||
tunnel = new HttpsTunnelProxy({
|
||||
remoteHost: 'example.com',
|
||||
timeoutMs: 10000,
|
||||
});
|
||||
|
||||
const slowPort = (slowServer.address() as AddressInfo).port;
|
||||
const port = await tunnel.start();
|
||||
|
||||
try {
|
||||
tunnel = new HttpsTunnelProxy({
|
||||
remoteHost: '127.0.0.1',
|
||||
remotePort: slowPort,
|
||||
timeoutMs: 10000,
|
||||
allowSelfSigned: true,
|
||||
});
|
||||
// Make request and immediately abort
|
||||
const req = http.request({
|
||||
hostname: '127.0.0.1',
|
||||
port,
|
||||
path: '/v1/messages',
|
||||
method: 'POST',
|
||||
});
|
||||
|
||||
const port = await tunnel.start();
|
||||
req.write('{}');
|
||||
req.end();
|
||||
|
||||
// Make request and immediately abort
|
||||
const req = http.request({
|
||||
hostname: '127.0.0.1',
|
||||
port,
|
||||
path: '/v1/messages',
|
||||
method: 'POST',
|
||||
});
|
||||
// Abort after a short delay to trigger premature close
|
||||
await new Promise((resolve) => setTimeout(resolve, 50));
|
||||
req.destroy();
|
||||
|
||||
req.write('{}');
|
||||
req.end();
|
||||
// Give time for error handling
|
||||
await new Promise((resolve) => setTimeout(resolve, 100));
|
||||
|
||||
// Abort after a short delay to trigger premature close
|
||||
await new Promise((resolve) => setTimeout(resolve, 50));
|
||||
req.destroy();
|
||||
|
||||
// Give time for error handling
|
||||
await new Promise((resolve) => setTimeout(resolve, 100));
|
||||
|
||||
// Tunnel should still be operational
|
||||
expect(tunnel.getPort()).toBe(port);
|
||||
} finally {
|
||||
slowServer.close();
|
||||
}
|
||||
// Tunnel should still be operational
|
||||
expect(tunnel.getPort()).toBe(port);
|
||||
});
|
||||
|
||||
it('should handle client request error', async () => {
|
||||
|
||||
@@ -2,25 +2,19 @@
|
||||
* Remote Token Uploader Tests
|
||||
*
|
||||
* Tests for uploadTokenToRemote and related functions.
|
||||
* Uses a local HTTP server to mock the remote CLIProxyAPI.
|
||||
* Uses mock fetch to verify API interactions.
|
||||
*/
|
||||
import { describe, it, expect, beforeEach, afterEach } from 'bun:test';
|
||||
import * as http from 'http';
|
||||
import * as fs from 'fs';
|
||||
import * as path from 'path';
|
||||
import * as os from 'os';
|
||||
import type { AddressInfo } from 'net';
|
||||
|
||||
// We need to mock getProxyTarget before importing the module
|
||||
// Since the module reads config at import time, we'll test the pure functions
|
||||
import { mockFetch, restoreFetch, getCapturedFetchRequests } from '../../mocks';
|
||||
|
||||
describe('remote-token-uploader', () => {
|
||||
let mockServer: http.Server | null = null;
|
||||
let mockServerPort: number = 0;
|
||||
let tempDir: string;
|
||||
let tempTokenFile: string;
|
||||
|
||||
beforeEach(async () => {
|
||||
beforeEach(() => {
|
||||
// Create temp directory and token file
|
||||
tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'ccs-test-'));
|
||||
tempTokenFile = path.join(tempDir, 'test-token.json');
|
||||
@@ -35,14 +29,8 @@ describe('remote-token-uploader', () => {
|
||||
);
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
// Clean up mock server
|
||||
if (mockServer) {
|
||||
await new Promise<void>((resolve) => {
|
||||
mockServer!.close(() => resolve());
|
||||
});
|
||||
mockServer = null;
|
||||
}
|
||||
afterEach(() => {
|
||||
restoreFetch();
|
||||
|
||||
// Clean up temp files
|
||||
try {
|
||||
@@ -55,48 +43,15 @@ describe('remote-token-uploader', () => {
|
||||
|
||||
describe('uploadTokenToRemote', () => {
|
||||
it('should upload token file successfully', async () => {
|
||||
// Create mock server that accepts uploads
|
||||
let receivedRequest: {
|
||||
method: string;
|
||||
path: string;
|
||||
headers: http.IncomingHttpHeaders;
|
||||
body: string;
|
||||
} | null = null;
|
||||
mockFetch([
|
||||
{
|
||||
url: /\/v0\/management\/auth-files/,
|
||||
method: 'POST',
|
||||
response: { status: 'ok', id: 'uploaded-123' },
|
||||
},
|
||||
]);
|
||||
|
||||
mockServer = http.createServer((req, res) => {
|
||||
let body = '';
|
||||
req.on('data', (chunk) => (body += chunk));
|
||||
req.on('end', () => {
|
||||
receivedRequest = {
|
||||
method: req.method || '',
|
||||
path: req.url || '',
|
||||
headers: req.headers,
|
||||
body,
|
||||
};
|
||||
|
||||
res.writeHead(200, { 'Content-Type': 'application/json' });
|
||||
res.end(JSON.stringify({ status: 'ok', id: 'uploaded-123' }));
|
||||
});
|
||||
});
|
||||
|
||||
await new Promise<void>((resolve) => {
|
||||
mockServer!.listen(0, '127.0.0.1', () => resolve());
|
||||
});
|
||||
|
||||
mockServerPort = (mockServer.address() as AddressInfo).port;
|
||||
|
||||
// Mock getProxyTarget to return our test server
|
||||
const mockProxyTarget = {
|
||||
isRemote: true,
|
||||
host: `127.0.0.1:${mockServerPort}`,
|
||||
protocol: 'http' as const,
|
||||
authToken: 'test-auth-token',
|
||||
managementKey: 'test-mgmt-key',
|
||||
};
|
||||
|
||||
// Dynamically import and test
|
||||
// We need to test the fetch logic directly since module caches getProxyTarget
|
||||
const url = `http://${mockProxyTarget.host}/v0/management/auth-files`;
|
||||
const url = 'http://127.0.0.1:8317/v0/management/auth-files';
|
||||
const tokenContent = fs.readFileSync(tempTokenFile, 'utf-8');
|
||||
const fileName = path.basename(tempTokenFile);
|
||||
|
||||
@@ -107,7 +62,7 @@ describe('remote-token-uploader', () => {
|
||||
const response = await fetch(url, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
Authorization: `Bearer ${mockProxyTarget.managementKey}`,
|
||||
Authorization: 'Bearer test-mgmt-key',
|
||||
},
|
||||
body: formData,
|
||||
});
|
||||
@@ -118,27 +73,26 @@ describe('remote-token-uploader', () => {
|
||||
expect(result).toHaveProperty('status', 'ok');
|
||||
expect(result).toHaveProperty('id', 'uploaded-123');
|
||||
|
||||
// Verify request was received correctly
|
||||
expect(receivedRequest).not.toBeNull();
|
||||
expect(receivedRequest!.method).toBe('POST');
|
||||
expect(receivedRequest!.path).toBe('/v0/management/auth-files');
|
||||
expect(receivedRequest!.headers['authorization']).toBe('Bearer test-mgmt-key');
|
||||
// Verify request was captured correctly
|
||||
const captured = getCapturedFetchRequests();
|
||||
expect(captured.length).toBe(1);
|
||||
expect(captured[0].url).toContain('/v0/management/auth-files');
|
||||
expect(captured[0].method).toBe('POST');
|
||||
// Headers should be captured (case-preserved from plain object)
|
||||
expect(captured[0].headers['Authorization']).toBe('Bearer test-mgmt-key');
|
||||
});
|
||||
|
||||
it('should handle upload failure gracefully', async () => {
|
||||
// Create mock server that returns error
|
||||
mockServer = http.createServer((req, res) => {
|
||||
res.writeHead(401, { 'Content-Type': 'application/json' });
|
||||
res.end(JSON.stringify({ error: 'Unauthorized' }));
|
||||
});
|
||||
mockFetch([
|
||||
{
|
||||
url: /\/v0\/management\/auth-files/,
|
||||
method: 'POST',
|
||||
response: { error: 'Unauthorized' },
|
||||
status: 401,
|
||||
},
|
||||
]);
|
||||
|
||||
await new Promise<void>((resolve) => {
|
||||
mockServer!.listen(0, '127.0.0.1', () => resolve());
|
||||
});
|
||||
|
||||
mockServerPort = (mockServer.address() as AddressInfo).port;
|
||||
|
||||
const url = `http://127.0.0.1:${mockServerPort}/v0/management/auth-files`;
|
||||
const url = 'http://127.0.0.1:8317/v0/management/auth-files';
|
||||
const tokenContent = fs.readFileSync(tempTokenFile, 'utf-8');
|
||||
|
||||
const formData = new FormData();
|
||||
@@ -154,36 +108,29 @@ describe('remote-token-uploader', () => {
|
||||
});
|
||||
|
||||
it('should handle connection timeout', async () => {
|
||||
// Create server that never responds
|
||||
mockServer = http.createServer(() => {
|
||||
// Never respond
|
||||
});
|
||||
|
||||
await new Promise<void>((resolve) => {
|
||||
mockServer!.listen(0, '127.0.0.1', () => resolve());
|
||||
});
|
||||
|
||||
mockServerPort = (mockServer.address() as AddressInfo).port;
|
||||
|
||||
const url = `http://127.0.0.1:${mockServerPort}/v0/management/auth-files`;
|
||||
const controller = new AbortController();
|
||||
|
||||
// Set short timeout
|
||||
const timeoutId = setTimeout(() => controller.abort(), 100);
|
||||
|
||||
try {
|
||||
await fetch(url, {
|
||||
// Test that delay mechanism works (simulates network latency)
|
||||
mockFetch([
|
||||
{
|
||||
url: /\/v0\/management\/auth-files/,
|
||||
method: 'POST',
|
||||
body: new FormData(),
|
||||
signal: controller.signal,
|
||||
});
|
||||
// Should not reach here
|
||||
expect(true).toBe(false);
|
||||
} catch (error) {
|
||||
expect((error as Error).name).toBe('AbortError');
|
||||
} finally {
|
||||
clearTimeout(timeoutId);
|
||||
}
|
||||
delay: 100, // Simulate slow response
|
||||
response: { status: 'ok' },
|
||||
},
|
||||
]);
|
||||
|
||||
const url = 'http://127.0.0.1:8317/v0/management/auth-files';
|
||||
const startTime = Date.now();
|
||||
|
||||
const response = await fetch(url, {
|
||||
method: 'POST',
|
||||
body: new FormData(),
|
||||
});
|
||||
|
||||
const elapsedTime = Date.now() - startTime;
|
||||
|
||||
// Verify delay was applied (at least 100ms)
|
||||
expect(elapsedTime).toBeGreaterThanOrEqual(100);
|
||||
expect(response.ok).toBe(true);
|
||||
});
|
||||
|
||||
it('should handle connection refused', async () => {
|
||||
@@ -284,22 +231,10 @@ describe('remote-token-uploader', () => {
|
||||
|
||||
describe('Authorization header', () => {
|
||||
it('should use Bearer token format', async () => {
|
||||
let capturedAuth: string | null = null;
|
||||
|
||||
mockServer = http.createServer((req, res) => {
|
||||
capturedAuth = req.headers['authorization'] as string;
|
||||
res.writeHead(200, { 'Content-Type': 'application/json' });
|
||||
res.end(JSON.stringify({ status: 'ok' }));
|
||||
});
|
||||
|
||||
await new Promise<void>((resolve) => {
|
||||
mockServer!.listen(0, '127.0.0.1', () => resolve());
|
||||
});
|
||||
|
||||
mockServerPort = (mockServer.address() as AddressInfo).port;
|
||||
mockFetch([{ url: /\/test/, method: 'POST', response: { status: 'ok' } }]);
|
||||
|
||||
const authToken = 'my-secret-token-123';
|
||||
await fetch(`http://127.0.0.1:${mockServerPort}/test`, {
|
||||
await fetch('http://127.0.0.1:8317/test', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
Authorization: `Bearer ${authToken}`,
|
||||
@@ -307,47 +242,33 @@ describe('remote-token-uploader', () => {
|
||||
body: new FormData(),
|
||||
});
|
||||
|
||||
expect(capturedAuth).toBe(`Bearer ${authToken}`);
|
||||
const captured = getCapturedFetchRequests();
|
||||
expect(captured.length).toBe(1);
|
||||
// Headers case-preserved from plain object
|
||||
expect(captured[0].headers['Authorization']).toBe(`Bearer ${authToken}`);
|
||||
});
|
||||
|
||||
it('should not send Authorization when no token', async () => {
|
||||
let hasAuth = false;
|
||||
mockFetch([{ url: /\/test/, method: 'POST', response: { status: 'ok' } }]);
|
||||
|
||||
mockServer = http.createServer((req, res) => {
|
||||
hasAuth = 'authorization' in req.headers;
|
||||
res.writeHead(200, { 'Content-Type': 'application/json' });
|
||||
res.end(JSON.stringify({ status: 'ok' }));
|
||||
});
|
||||
|
||||
await new Promise<void>((resolve) => {
|
||||
mockServer!.listen(0, '127.0.0.1', () => resolve());
|
||||
});
|
||||
|
||||
mockServerPort = (mockServer.address() as AddressInfo).port;
|
||||
|
||||
await fetch(`http://127.0.0.1:${mockServerPort}/test`, {
|
||||
await fetch('http://127.0.0.1:8317/test', {
|
||||
method: 'POST',
|
||||
body: new FormData(),
|
||||
});
|
||||
|
||||
expect(hasAuth).toBe(false);
|
||||
const captured = getCapturedFetchRequests();
|
||||
expect(captured.length).toBe(1);
|
||||
// No authorization header should be present (check both cases)
|
||||
expect(captured[0].headers['Authorization']).toBeUndefined();
|
||||
expect(captured[0].headers['authorization']).toBeUndefined();
|
||||
});
|
||||
});
|
||||
|
||||
describe('response parsing', () => {
|
||||
it('should accept status: ok response', async () => {
|
||||
mockServer = http.createServer((req, res) => {
|
||||
res.writeHead(200, { 'Content-Type': 'application/json' });
|
||||
res.end(JSON.stringify({ status: 'ok' }));
|
||||
});
|
||||
mockFetch([{ url: /\/test/, method: 'POST', response: { status: 'ok' } }]);
|
||||
|
||||
await new Promise<void>((resolve) => {
|
||||
mockServer!.listen(0, '127.0.0.1', () => resolve());
|
||||
});
|
||||
|
||||
mockServerPort = (mockServer.address() as AddressInfo).port;
|
||||
|
||||
const response = await fetch(`http://127.0.0.1:${mockServerPort}/test`, { method: 'POST' });
|
||||
const response = await fetch('http://127.0.0.1:8317/test', { method: 'POST' });
|
||||
const result = (await response.json()) as { status?: string; success?: boolean; id?: string };
|
||||
|
||||
const isSuccess = result.status === 'ok' || result.success || result.id;
|
||||
@@ -355,18 +276,9 @@ describe('remote-token-uploader', () => {
|
||||
});
|
||||
|
||||
it('should accept success: true response', async () => {
|
||||
mockServer = http.createServer((req, res) => {
|
||||
res.writeHead(200, { 'Content-Type': 'application/json' });
|
||||
res.end(JSON.stringify({ success: true }));
|
||||
});
|
||||
mockFetch([{ url: /\/test/, method: 'POST', response: { success: true } }]);
|
||||
|
||||
await new Promise<void>((resolve) => {
|
||||
mockServer!.listen(0, '127.0.0.1', () => resolve());
|
||||
});
|
||||
|
||||
mockServerPort = (mockServer.address() as AddressInfo).port;
|
||||
|
||||
const response = await fetch(`http://127.0.0.1:${mockServerPort}/test`, { method: 'POST' });
|
||||
const response = await fetch('http://127.0.0.1:8317/test', { method: 'POST' });
|
||||
const result = (await response.json()) as { status?: string; success?: boolean; id?: string };
|
||||
|
||||
const isSuccess = result.status === 'ok' || result.success || result.id;
|
||||
@@ -374,18 +286,9 @@ describe('remote-token-uploader', () => {
|
||||
});
|
||||
|
||||
it('should accept id in response', async () => {
|
||||
mockServer = http.createServer((req, res) => {
|
||||
res.writeHead(200, { 'Content-Type': 'application/json' });
|
||||
res.end(JSON.stringify({ id: 'file-abc123' }));
|
||||
});
|
||||
mockFetch([{ url: /\/test/, method: 'POST', response: { id: 'file-abc123' } }]);
|
||||
|
||||
await new Promise<void>((resolve) => {
|
||||
mockServer!.listen(0, '127.0.0.1', () => resolve());
|
||||
});
|
||||
|
||||
mockServerPort = (mockServer.address() as AddressInfo).port;
|
||||
|
||||
const response = await fetch(`http://127.0.0.1:${mockServerPort}/test`, { method: 'POST' });
|
||||
const response = await fetch('http://127.0.0.1:8317/test', { method: 'POST' });
|
||||
const result = (await response.json()) as { status?: string; success?: boolean; id?: string };
|
||||
|
||||
// result.id is truthy when present
|
||||
@@ -394,18 +297,9 @@ describe('remote-token-uploader', () => {
|
||||
});
|
||||
|
||||
it('should detect error response', async () => {
|
||||
mockServer = http.createServer((req, res) => {
|
||||
res.writeHead(200, { 'Content-Type': 'application/json' });
|
||||
res.end(JSON.stringify({ error: 'Invalid token format' }));
|
||||
});
|
||||
mockFetch([{ url: /\/test/, method: 'POST', response: { error: 'Invalid token format' } }]);
|
||||
|
||||
await new Promise<void>((resolve) => {
|
||||
mockServer!.listen(0, '127.0.0.1', () => resolve());
|
||||
});
|
||||
|
||||
mockServerPort = (mockServer.address() as AddressInfo).port;
|
||||
|
||||
const response = await fetch(`http://127.0.0.1:${mockServerPort}/test`, { method: 'POST' });
|
||||
const response = await fetch('http://127.0.0.1:8317/test', { method: 'POST' });
|
||||
const result = (await response.json()) as {
|
||||
status?: string;
|
||||
success?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user