-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunner-ipc.ts
More file actions
162 lines (123 loc) · 3.97 KB
/
runner-ipc.ts
File metadata and controls
162 lines (123 loc) · 3.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/**
* IPC Message Types for Runner Communication
*
* All runners (regardless of language) communicate with the orchestrator
* via WebSocket using these JSON-RPC message formats.
*/
import type { DUTMessage } from "./ctt-message-types.ts";
// === Base JSON-RPC Types ===
interface JsonRpcMessage {
jsonrpc: "2.0";
}
interface JsonRpcMethodMessage extends JsonRpcMessage {
method: string;
}
// === Security Key Types ===
export interface SecurityKeys {
S2_Unauthenticated: string; // hex string
S2_Authenticated: string;
S2_AccessControl: string;
S0_Legacy: string;
}
export interface SecurityKeysLongRange {
S2_Authenticated: string;
S2_AccessControl: string;
}
// === Start Request Parameters ===
export interface StartParams {
controllerUrl: string; // e.g., "tcp://127.0.0.1:5000"
securityKeys: SecurityKeys;
securityKeysLongRange: SecurityKeysLongRange;
}
// === CTT Prompt Parameters ===
export interface CttPromptParams {
testName: string;
message: DUTMessage;
}
// === CTT Log Parameters ===
export interface CttLogParams {
testName: string;
message: DUTMessage;
}
// === Test Case Started Parameters ===
export interface TestCaseStartedParams {
testName: string;
}
// === Request Messages (Orchestrator -> Runner) ===
export interface StartRequest extends JsonRpcMethodMessage {
id: number;
method: "start";
params: StartParams;
}
export interface StopRequest extends JsonRpcMethodMessage {
id: number;
method: "stop";
params: Record<string, never>;
}
export interface HandleCttPromptRequest extends JsonRpcMethodMessage {
id: number;
method: "handleCttPrompt";
params: CttPromptParams;
}
export interface TestCaseStartedRequest extends JsonRpcMethodMessage {
id: number;
method: "testCaseStarted";
params: TestCaseStartedParams;
}
export interface HandleCttLogRequest extends JsonRpcMethodMessage {
id: number;
method: "handleCttLog";
params: CttLogParams;
}
export type IpcRequest = StartRequest | StopRequest | HandleCttPromptRequest | TestCaseStartedRequest | HandleCttLogRequest;
// === Response Messages (Runner -> Orchestrator) ===
export interface SuccessResponse extends JsonRpcMessage {
id: number;
result: string; // "ok" for start/stop, button name for handleCttPrompt
}
export interface ErrorResponse extends JsonRpcMessage {
id: number;
error: {
code: number;
message: string;
};
}
export type IpcResponse = SuccessResponse | ErrorResponse;
// === Notification Messages (Runner -> Orchestrator) ===
export interface ReadyNotification extends JsonRpcMethodMessage {
method: "ready";
params: {
name: string; // Runner name for logging
};
}
export interface NoHandlerNotification extends JsonRpcMethodMessage {
method: "noHandler";
}
export type IpcNotification = ReadyNotification | NoHandlerNotification;
// === Type Guards ===
function isJsonRpcMessage(msg: unknown): msg is JsonRpcMessage {
return (
typeof msg === "object" &&
msg !== null &&
"jsonrpc" in msg &&
msg.jsonrpc === "2.0"
);
}
function isJsonRpcMethodMessage(msg: unknown): msg is JsonRpcMethodMessage {
return isJsonRpcMessage(msg) && "method" in msg;
}
export function isSuccessResponse(msg: unknown): msg is SuccessResponse {
return isJsonRpcMessage(msg) && "id" in msg && "result" in msg;
}
export function isErrorResponse(msg: unknown): msg is ErrorResponse {
return isJsonRpcMessage(msg) && "id" in msg && "error" in msg;
}
export function isReadyNotification(msg: unknown): msg is ReadyNotification {
return isJsonRpcMethodMessage(msg) && msg.method === "ready" && "params" in msg;
}
export function isNoHandlerNotification(msg: unknown): msg is NoHandlerNotification {
return isJsonRpcMethodMessage(msg) && msg.method === "noHandler";
}
// === Constants ===
export const DEFAULT_IPC_PORT = 4713;
export const IPC_PORT_ENV_VAR = "RUNNER_IPC_PORT";