Files
+16 2e5b5e7b23 Promote main → release (#5203)
Co-authored-by: YellowSnnowmann <167776381+YellowSnnowmann@users.noreply.github.com>
Co-authored-by: Steven Enamakel <31011319+senamakel@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Cyrus Gray <144336577+graycyrus@users.noreply.github.com>
Co-authored-by: Horst1993 <horst.w@gmicloud.ai>
Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: James Gentes <jgentes@users.noreply.github.com>
Co-authored-by: Sam <samrusani@users.noreply.github.com>
Co-authored-by: Sami Rusani <14844597+samrusani@users.noreply.github.com>
Co-authored-by: oxoxDev <164490987+oxoxDev@users.noreply.github.com>
Co-authored-by: Muhammad Ismail <78064250+myi1@users.noreply.github.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Co-authored-by: nb213 <binyangzhu000@gmail.com>
Co-authored-by: binyangzhu000-sudo <224954946+binyangzhu000-sudo@users.noreply.github.com>
Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
Co-authored-by: CodeGhost21 <164498022+CodeGhost21@users.noreply.github.com>
Co-authored-by: sanil-23 <sanil@tinyhumans.ai>
Co-authored-by: M3gA-Mind <elvin@mahadao.com>
Co-authored-by: oxoxDev <oxoxdev@users.noreply.github.com>
Co-authored-by: mysma-9403 <64923976+mysma-9403@users.noreply.github.com>
Co-authored-by: mwakidenis <mwakidenice@gmail.com>
Co-authored-by: NgoQuocViet2001 <123613986+NgoQuocViet2001@users.noreply.github.com>
Co-authored-by: viet.ngo <viet.ngo@sotatek.com>
Co-authored-by: Maciej Myszkiewicz <mmyszkiewicz@bwcoders.com>
2026-07-27 11:49:45 +05:30

217 lines
7.3 KiB
TypeScript

/**
* Core JSON-RPC from the Node/WebdriverIO process (no WebView `execute`).
* Required for Appium Mac2, which does not support W3C Execute Script in WKWebView.
*
* Auth: the in-process core requires a per-launch bearer token that lives only
* inside the Tauri host. For e2e, debug builds of the Tauri shell write that
* token to `${tmpdir}/openhuman-e2e-rpc-token` (see
* `app/src-tauri/src/core_process.rs`). We read it here and attach
* `Authorization: Bearer …` to every probe + call. Release builds never write
* the file, so this code degrades to unauthenticated requests (which the core
* will reject — acceptable since release builds are not the e2e target).
*/
import fs from 'node:fs';
import os from 'node:os';
import path from 'node:path';
import type { RpcCallResult } from './core-rpc-webview';
let cachedRpcUrl: string | null = null;
const E2E_TOKEN_FILENAME = 'openhuman-e2e-rpc-token';
/** Keep diagnostic payloads compact enough for CI assertion output. */
function truncate(value: string, maxLength = 500): string {
return value.length > maxLength ? `${value.slice(0, maxLength)}...` : value;
}
/** Serialize arbitrary RPC payloads without throwing while formatting failures. */
function safeJson(value: unknown): string {
try {
return JSON.stringify(value);
} catch {
return String(value);
}
}
/** Format failed RPC calls with the method name and any available transport/core error details. */
export function formatRpcCallFailure(method: string, result: RpcCallResult<unknown>): string {
const parts = [`[core-rpc] ${method} failed:`];
if (typeof result.httpStatus === 'number') {
parts.push(`httpStatus=${result.httpStatus}`);
}
if (result.error) {
parts.push(`error=${truncate(result.error)}`);
}
if (result.result !== undefined) {
parts.push(`result=${truncate(safeJson(result.result))}`);
}
if (parts.length === 1) {
parts.push(`payload=${truncate(safeJson(result))}`);
}
return parts.join(' ');
}
/** Assert a positive RPC result while preserving useful failure diagnostics in E2E logs. */
export function expectRpcOk<T>(
method: string,
result: RpcCallResult<T>
): asserts result is RpcCallResult<T> & { ok: true } {
if (!result.ok) {
throw new Error(formatRpcCallFailure(method, result));
}
}
function readBearerToken(): string | null {
const tokenPath = path.join(os.tmpdir(), E2E_TOKEN_FILENAME);
try {
const value = fs.readFileSync(tokenPath, 'utf8').trim();
return value.length > 0 ? value : null;
} catch {
return null;
}
}
function buildHeaders(includeAuth = true): Record<string, string> {
const headers: Record<string, string> = { 'Content-Type': 'application/json' };
if (includeAuth) {
const token = readBearerToken();
if (token) headers.Authorization = `Bearer ${token}`;
}
return headers;
}
function normalizeRpcUrl(raw: string): string {
const t = raw.trim().replace(/\/$/, '');
return t.endsWith('/rpc') ? t : `${t}/rpc`;
}
function coreHost(): string {
return (process.env.OPENHUMAN_CORE_HOST || '127.0.0.1').trim() || '127.0.0.1';
}
/** Ports to try when OPENHUMAN_CORE_PORT is unset.
*
* Keep this exactly aligned with connectivity::rpc's desktop fallback range.
* A data reset restarts the embedded core; on Windows the preferred socket can
* remain unavailable briefly, so the replacement listener may bind as high as
* 7798. Stopping at 7793 makes every later RPC test wait out the full probe
* deadline even though the restarted core is healthy. */
function defaultPortProbeList(): number[] {
const raw = process.env.OPENHUMAN_CORE_PORT?.trim();
if (raw) {
const p = Number.parseInt(raw, 10);
if (!Number.isNaN(p) && p > 0 && p < 65536) {
return [p];
}
}
const ports: number[] = [];
for (let port = 7788; port <= 7798; port += 1) ports.push(port);
return ports;
}
async function tryPingRpc(url: string): Promise<boolean> {
try {
// Probe without the bearer token: we're iterating candidate ports, and
// any non-core service that happens to be bound to one of them shouldn't
// receive our auth credential as a side effect of discovery.
const res = await fetch(url, {
method: 'POST',
headers: buildHeaders(false),
body: JSON.stringify({ jsonrpc: '2.0', id: 1, method: 'core.ping', params: {} }),
// A recently stopped listener can take several seconds to reject on
// Windows. Keep discovery inside resetApp's eight-second RPC budget.
signal: AbortSignal.timeout(750),
});
// 401 means "endpoint exists, auth required" — that's a positive match
// for the core RPC URL; the real call will retry with auth attached.
if (res.status === 401) return true;
if (!res.ok) return false;
const json = (await res.json()) as { error?: { message?: string } };
return !json.error;
} catch {
return false;
}
}
/**
* Resolve the sidecar JSON-RPC URL: full `OPENHUMAN_CORE_RPC_URL`, or
* `OPENHUMAN_CORE_HOST` + `OPENHUMAN_CORE_PORT`, then probe host:port until core.ping succeeds.
*/
async function resolveCoreRpcUrl(): Promise<string> {
if (cachedRpcUrl) {
if (await tryPingRpc(cachedRpcUrl)) return cachedRpcUrl;
cachedRpcUrl = null;
}
const env = process.env.OPENHUMAN_CORE_RPC_URL?.trim();
if (env) {
cachedRpcUrl = normalizeRpcUrl(env);
return cachedRpcUrl;
}
const host = coreHost();
const ports = defaultPortProbeList();
const deadline = Date.now() + 60_000;
while (Date.now() < deadline) {
for (const port of ports) {
const url = `http://${host}:${port}/rpc`;
if (await tryPingRpc(url)) {
cachedRpcUrl = url;
return url;
}
}
await new Promise(r => setTimeout(r, 1_500));
}
throw new Error(
`Core JSON-RPC not reachable: set OPENHUMAN_CORE_RPC_URL or OPENHUMAN_CORE_HOST/OPENHUMAN_CORE_PORT (tried ${host} ports ${ports.join(', ')})`
);
}
export async function callOpenhumanRpcNode<T = unknown>(
method: string,
params: Record<string, unknown> = {}
): Promise<RpcCallResult<T>> {
for (let attempt = 0; attempt < 2; attempt += 1) {
try {
const rpcUrl = await resolveCoreRpcUrl();
const id = Math.floor(Math.random() * 1e9);
const res = await fetch(rpcUrl, {
method: 'POST',
headers: buildHeaders(),
body: JSON.stringify({ jsonrpc: '2.0', id, method, params }),
});
const text = await res.text();
let json: { error?: { message?: string }; result?: T };
try {
json = JSON.parse(text) as typeof json;
} catch {
return {
ok: false,
httpStatus: res.status,
error: `Invalid JSON (${res.status}): ${text.slice(0, 240)}`,
};
}
if (!res.ok) {
return { ok: false, httpStatus: res.status, error: text.slice(0, 500) };
}
if (json.error) {
return { ok: false, error: json.error.message || JSON.stringify(json.error) };
}
return { ok: true, result: json.result };
} catch (e) {
// A data reset can restart the embedded core on another fallback port.
// Discard a cached listener after a transport failure and discover the
// replacement once before surfacing the error to the spec.
cachedRpcUrl = null;
if (attempt === 1) {
return { ok: false, error: e instanceof Error ? e.message : String(e) };
}
}
}
return { ok: false, error: 'Core JSON-RPC retry exhausted' };
}