Merge remote-tracking branch 'origin/master' into feature/upload-company-logo
This commit is contained in:
@@ -90,6 +90,41 @@ describe("buildJoinDefaultsPayloadForAccept", () => {
|
||||
});
|
||||
});
|
||||
|
||||
it("accepts auth from agentDefaultsPayload.headers.x-openclaw-token", () => {
|
||||
const result = buildJoinDefaultsPayloadForAccept({
|
||||
adapterType: "openclaw",
|
||||
defaultsPayload: {
|
||||
url: "http://127.0.0.1:18789/hooks/agent",
|
||||
method: "POST",
|
||||
headers: {
|
||||
"x-openclaw-token": "gateway-token",
|
||||
},
|
||||
},
|
||||
}) as Record<string, unknown>;
|
||||
|
||||
expect(result).toMatchObject({
|
||||
headers: {
|
||||
"x-openclaw-token": "gateway-token",
|
||||
},
|
||||
webhookAuthHeader: "Bearer gateway-token",
|
||||
});
|
||||
});
|
||||
|
||||
it("accepts inbound x-openclaw-token compatibility header", () => {
|
||||
const result = buildJoinDefaultsPayloadForAccept({
|
||||
adapterType: "openclaw",
|
||||
defaultsPayload: null,
|
||||
inboundOpenClawTokenHeader: "gateway-token",
|
||||
}) as Record<string, unknown>;
|
||||
|
||||
expect(result).toMatchObject({
|
||||
headers: {
|
||||
"x-openclaw-token": "gateway-token",
|
||||
},
|
||||
webhookAuthHeader: "Bearer gateway-token",
|
||||
});
|
||||
});
|
||||
|
||||
it("accepts wrapped auth values in headers for compatibility", () => {
|
||||
const result = buildJoinDefaultsPayloadForAccept({
|
||||
adapterType: "openclaw",
|
||||
|
||||
@@ -332,6 +332,31 @@ describe("openclaw adapter execute", () => {
|
||||
expect(headers.authorization).toBe("Bearer gateway-token");
|
||||
});
|
||||
|
||||
it("derives Authorization header from x-openclaw-token when webhookAuthHeader is unset", async () => {
|
||||
const fetchMock = vi.fn().mockResolvedValue(
|
||||
sseResponse([
|
||||
"event: response.completed\n",
|
||||
'data: {"type":"response.completed","status":"completed"}\n\n',
|
||||
]),
|
||||
);
|
||||
vi.stubGlobal("fetch", fetchMock);
|
||||
|
||||
const result = await execute(
|
||||
buildContext({
|
||||
url: "https://agent.example/sse",
|
||||
method: "POST",
|
||||
headers: {
|
||||
"x-openclaw-token": "gateway-token",
|
||||
},
|
||||
}),
|
||||
);
|
||||
|
||||
expect(result.exitCode).toBe(0);
|
||||
const headers = (fetchMock.mock.calls[0]?.[1]?.headers ?? {}) as Record<string, string>;
|
||||
expect(headers["x-openclaw-token"]).toBe("gateway-token");
|
||||
expect(headers.authorization).toBe("Bearer gateway-token");
|
||||
});
|
||||
|
||||
it("derives issue session keys when configured", async () => {
|
||||
const fetchMock = vi.fn().mockResolvedValue(
|
||||
sseResponse([
|
||||
@@ -564,6 +589,93 @@ describe("openclaw adapter execute", () => {
|
||||
expect((body.paperclip as Record<string, unknown>).streamTransport).toBe("webhook");
|
||||
});
|
||||
|
||||
it("remaps legacy /v1/responses URLs to /hooks/agent in webhook transport", async () => {
|
||||
const fetchMock = vi.fn().mockResolvedValue(
|
||||
new Response(JSON.stringify({ ok: true }), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"content-type": "application/json",
|
||||
},
|
||||
}),
|
||||
);
|
||||
vi.stubGlobal("fetch", fetchMock);
|
||||
|
||||
const result = await execute(
|
||||
buildContext({
|
||||
url: "https://agent.example/v1/responses",
|
||||
streamTransport: "webhook",
|
||||
payloadTemplate: { foo: "bar" },
|
||||
}),
|
||||
);
|
||||
|
||||
expect(result.exitCode).toBe(0);
|
||||
expect(fetchMock).toHaveBeenCalledTimes(1);
|
||||
expect(String(fetchMock.mock.calls[0]?.[0] ?? "")).toBe("https://agent.example/hooks/agent");
|
||||
const body = JSON.parse(String(fetchMock.mock.calls[0]?.[1]?.body ?? "{}")) as Record<string, unknown>;
|
||||
expect(typeof body.message).toBe("string");
|
||||
expect(String(body.message ?? "")).toContain("PAPERCLIP_RUN_ID=run-123");
|
||||
expect(body.stream).toBeUndefined();
|
||||
expect(body.input).toBeUndefined();
|
||||
expect(body.metadata).toBeUndefined();
|
||||
expect(body.paperclip).toBeUndefined();
|
||||
const headers = (fetchMock.mock.calls[0]?.[1]?.headers ?? {}) as Record<string, string>;
|
||||
expect(headers["x-openclaw-session-key"]).toBeUndefined();
|
||||
});
|
||||
|
||||
it("falls back to legacy /v1/responses when remapped /hooks/agent returns 404", async () => {
|
||||
const fetchMock = vi
|
||||
.fn()
|
||||
.mockResolvedValueOnce(
|
||||
new Response("Not Found", {
|
||||
status: 404,
|
||||
statusText: "Not Found",
|
||||
headers: {
|
||||
"content-type": "text/plain",
|
||||
},
|
||||
}),
|
||||
)
|
||||
.mockResolvedValueOnce(
|
||||
new Response(JSON.stringify({ ok: true }), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"content-type": "application/json",
|
||||
},
|
||||
}),
|
||||
);
|
||||
vi.stubGlobal("fetch", fetchMock);
|
||||
|
||||
const result = await execute(
|
||||
buildContext({
|
||||
url: "https://agent.example/v1/responses",
|
||||
streamTransport: "webhook",
|
||||
}),
|
||||
);
|
||||
|
||||
expect(result.exitCode).toBe(0);
|
||||
expect(fetchMock).toHaveBeenCalledTimes(2);
|
||||
expect(String(fetchMock.mock.calls[0]?.[0] ?? "")).toBe("https://agent.example/hooks/agent");
|
||||
expect(String(fetchMock.mock.calls[1]?.[0] ?? "")).toBe("https://agent.example/v1/responses");
|
||||
|
||||
const firstBody = JSON.parse(String(fetchMock.mock.calls[0]?.[1]?.body ?? "{}")) as Record<string, unknown>;
|
||||
expect(typeof firstBody.message).toBe("string");
|
||||
expect(String(firstBody.message ?? "")).toContain("PAPERCLIP_RUN_ID=run-123");
|
||||
|
||||
const secondBody = JSON.parse(String(fetchMock.mock.calls[1]?.[1]?.body ?? "{}")) as Record<string, unknown>;
|
||||
expect(secondBody.stream).toBe(false);
|
||||
expect(typeof secondBody.input).toBe("string");
|
||||
expect(String(secondBody.input ?? "")).toContain("PAPERCLIP_RUN_ID=run-123");
|
||||
|
||||
const secondHeaders = (fetchMock.mock.calls[1]?.[1]?.headers ?? {}) as Record<string, string>;
|
||||
expect(secondHeaders["x-openclaw-session-key"]).toBe("paperclip");
|
||||
expect(result.resultJson).toEqual(
|
||||
expect.objectContaining({
|
||||
usedLegacyResponsesFallback: true,
|
||||
}),
|
||||
);
|
||||
});
|
||||
|
||||
it("uses wake compatibility payloads for /hooks/wake when transport=webhook", async () => {
|
||||
const fetchMock = vi.fn().mockResolvedValue(
|
||||
new Response(JSON.stringify({ ok: true }), {
|
||||
@@ -590,6 +702,73 @@ describe("openclaw adapter execute", () => {
|
||||
expect(body.paperclip).toBeUndefined();
|
||||
});
|
||||
|
||||
it("uses /hooks/agent payloads for webhook transport and omits sessionKey by default", async () => {
|
||||
const fetchMock = vi.fn().mockResolvedValue(
|
||||
new Response(JSON.stringify({ ok: true }), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"content-type": "application/json",
|
||||
},
|
||||
}),
|
||||
);
|
||||
vi.stubGlobal("fetch", fetchMock);
|
||||
|
||||
const result = await execute(
|
||||
buildContext({
|
||||
url: "https://agent.example/hooks/agent",
|
||||
streamTransport: "webhook",
|
||||
payloadTemplate: {
|
||||
name: "Paperclip Hook",
|
||||
wakeMode: "next-heartbeat",
|
||||
deliver: true,
|
||||
channel: "last",
|
||||
model: "openai/gpt-5.2-mini",
|
||||
},
|
||||
}),
|
||||
);
|
||||
|
||||
expect(result.exitCode).toBe(0);
|
||||
expect(fetchMock).toHaveBeenCalledTimes(1);
|
||||
const body = JSON.parse(String(fetchMock.mock.calls[0]?.[1]?.body ?? "{}")) as Record<string, unknown>;
|
||||
expect(typeof body.message).toBe("string");
|
||||
expect(String(body.message)).toContain("PAPERCLIP_RUN_ID=run-123");
|
||||
expect(body.name).toBe("Paperclip Hook");
|
||||
expect(body.wakeMode).toBe("next-heartbeat");
|
||||
expect(body.deliver).toBe(true);
|
||||
expect(body.channel).toBe("last");
|
||||
expect(body.model).toBe("openai/gpt-5.2-mini");
|
||||
expect(body.sessionKey).toBeUndefined();
|
||||
expect(body.text).toBeUndefined();
|
||||
expect(body.paperclip).toBeUndefined();
|
||||
});
|
||||
|
||||
it("includes sessionKey for /hooks/agent payloads only when hookIncludeSessionKey=true", async () => {
|
||||
const fetchMock = vi.fn().mockResolvedValue(
|
||||
new Response(JSON.stringify({ ok: true }), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"content-type": "application/json",
|
||||
},
|
||||
}),
|
||||
);
|
||||
vi.stubGlobal("fetch", fetchMock);
|
||||
|
||||
const result = await execute(
|
||||
buildContext({
|
||||
url: "https://agent.example/hooks/agent",
|
||||
streamTransport: "webhook",
|
||||
hookIncludeSessionKey: true,
|
||||
}),
|
||||
);
|
||||
|
||||
expect(result.exitCode).toBe(0);
|
||||
expect(fetchMock).toHaveBeenCalledTimes(1);
|
||||
const body = JSON.parse(String(fetchMock.mock.calls[0]?.[1]?.body ?? "{}")) as Record<string, unknown>;
|
||||
expect(body.sessionKey).toBe("paperclip");
|
||||
});
|
||||
|
||||
it("retries webhook payloads with wake compatibility format on text-required errors", async () => {
|
||||
const fetchMock = vi
|
||||
.fn()
|
||||
@@ -615,7 +794,7 @@ describe("openclaw adapter execute", () => {
|
||||
|
||||
const result = await execute(
|
||||
buildContext({
|
||||
url: "https://agent.example/v1/responses",
|
||||
url: "https://agent.example/webhook",
|
||||
streamTransport: "webhook",
|
||||
}),
|
||||
);
|
||||
@@ -624,11 +803,57 @@ describe("openclaw adapter execute", () => {
|
||||
expect(fetchMock).toHaveBeenCalledTimes(2);
|
||||
const firstBody = JSON.parse(String(fetchMock.mock.calls[0]?.[1]?.body ?? "{}")) as Record<string, unknown>;
|
||||
const secondBody = JSON.parse(String(fetchMock.mock.calls[1]?.[1]?.body ?? "{}")) as Record<string, unknown>;
|
||||
expect(String(firstBody.text ?? "")).toContain("PAPERCLIP_RUN_ID=run-123");
|
||||
expect(firstBody.paperclip).toBeTypeOf("object");
|
||||
expect(secondBody.mode).toBe("now");
|
||||
expect(String(secondBody.text ?? "")).toContain("PAPERCLIP_RUN_ID=run-123");
|
||||
});
|
||||
|
||||
it("retries webhook payloads when /v1/responses reports missing string input", async () => {
|
||||
const fetchMock = vi
|
||||
.fn()
|
||||
.mockResolvedValueOnce(
|
||||
new Response(
|
||||
JSON.stringify({
|
||||
error: {
|
||||
message: "model: Invalid input: expected string, received undefined",
|
||||
type: "invalid_request_error",
|
||||
},
|
||||
}),
|
||||
{
|
||||
status: 400,
|
||||
statusText: "Bad Request",
|
||||
headers: {
|
||||
"content-type": "application/json",
|
||||
},
|
||||
},
|
||||
),
|
||||
)
|
||||
.mockResolvedValueOnce(
|
||||
new Response(JSON.stringify({ ok: true }), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"content-type": "application/json",
|
||||
},
|
||||
}),
|
||||
);
|
||||
vi.stubGlobal("fetch", fetchMock);
|
||||
|
||||
const result = await execute(
|
||||
buildContext({
|
||||
url: "https://agent.example/webhook",
|
||||
streamTransport: "webhook",
|
||||
}),
|
||||
);
|
||||
|
||||
expect(result.exitCode).toBe(0);
|
||||
expect(fetchMock).toHaveBeenCalledTimes(2);
|
||||
const secondBody = JSON.parse(String(fetchMock.mock.calls[1]?.[1]?.body ?? "{}")) as Record<string, unknown>;
|
||||
expect(secondBody.mode).toBe("now");
|
||||
expect(String(secondBody.text ?? "")).toContain("PAPERCLIP_RUN_ID=run-123");
|
||||
});
|
||||
|
||||
it("rejects unsupported transport configuration", async () => {
|
||||
const fetchMock = vi.fn();
|
||||
vi.stubGlobal("fetch", fetchMock);
|
||||
@@ -659,6 +884,21 @@ describe("openclaw adapter execute", () => {
|
||||
expect(result.errorCode).toBe("openclaw_sse_incompatible_endpoint");
|
||||
expect(fetchMock).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it("rejects /hooks/agent endpoints in SSE mode", async () => {
|
||||
const fetchMock = vi.fn();
|
||||
vi.stubGlobal("fetch", fetchMock);
|
||||
|
||||
const result = await execute(
|
||||
buildContext({
|
||||
url: "https://agent.example/hooks/agent",
|
||||
}),
|
||||
);
|
||||
|
||||
expect(result.exitCode).toBe(1);
|
||||
expect(result.errorCode).toBe("openclaw_sse_incompatible_endpoint");
|
||||
expect(fetchMock).not.toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
|
||||
describe("openclaw adapter environment checks", () => {
|
||||
@@ -686,6 +926,24 @@ describe("openclaw adapter environment checks", () => {
|
||||
expect(check?.level).toBe("error");
|
||||
});
|
||||
|
||||
it("reports /hooks/agent endpoints as incompatible for SSE mode", async () => {
|
||||
const fetchMock = vi
|
||||
.fn()
|
||||
.mockResolvedValue(new Response(null, { status: 405, statusText: "Method Not Allowed" }));
|
||||
vi.stubGlobal("fetch", fetchMock);
|
||||
|
||||
const result = await testEnvironment({
|
||||
companyId: "company-123",
|
||||
adapterType: "openclaw",
|
||||
config: {
|
||||
url: "https://agent.example/hooks/agent",
|
||||
},
|
||||
});
|
||||
|
||||
const check = result.checks.find((entry) => entry.code === "openclaw_wake_endpoint_incompatible");
|
||||
expect(check?.level).toBe("error");
|
||||
});
|
||||
|
||||
it("reports unsupported streamTransport settings", async () => {
|
||||
const fetchMock = vi
|
||||
.fn()
|
||||
|
||||
@@ -320,6 +320,7 @@ export function buildJoinDefaultsPayloadForAccept(input: {
|
||||
paperclipApiUrl?: unknown;
|
||||
webhookAuthHeader?: unknown;
|
||||
inboundOpenClawAuthHeader?: string | null;
|
||||
inboundOpenClawTokenHeader?: string | null;
|
||||
}): unknown {
|
||||
if (input.adapterType !== "openclaw") {
|
||||
return input.defaultsPayload;
|
||||
@@ -367,6 +368,15 @@ export function buildJoinDefaultsPayloadForAccept(input: {
|
||||
const inboundOpenClawAuthHeader = nonEmptyTrimmedString(
|
||||
input.inboundOpenClawAuthHeader
|
||||
);
|
||||
const inboundOpenClawTokenHeader = nonEmptyTrimmedString(
|
||||
input.inboundOpenClawTokenHeader
|
||||
);
|
||||
if (
|
||||
inboundOpenClawTokenHeader &&
|
||||
!headerMapHasKeyIgnoreCase(mergedHeaders, "x-openclaw-token")
|
||||
) {
|
||||
mergedHeaders["x-openclaw-token"] = inboundOpenClawTokenHeader;
|
||||
}
|
||||
if (
|
||||
inboundOpenClawAuthHeader &&
|
||||
!headerMapHasKeyIgnoreCase(mergedHeaders, "x-openclaw-auth")
|
||||
@@ -388,7 +398,9 @@ export function buildJoinDefaultsPayloadForAccept(input: {
|
||||
nonEmptyTrimmedString(merged.webhookAuthHeader)
|
||||
);
|
||||
if (!hasAuthorizationHeader && !hasWebhookAuthHeader) {
|
||||
const openClawAuthToken = headerMapGetIgnoreCase(
|
||||
const openClawAuthToken =
|
||||
headerMapGetIgnoreCase(mergedHeaders, "x-openclaw-token") ??
|
||||
headerMapGetIgnoreCase(
|
||||
mergedHeaders,
|
||||
"x-openclaw-auth"
|
||||
);
|
||||
@@ -484,9 +496,8 @@ function summarizeOpenClawDefaultsForLog(defaultsPayload: unknown) {
|
||||
: null;
|
||||
const headers = defaults ? normalizeHeaderMap(defaults.headers) : undefined;
|
||||
const openClawAuthHeaderValue = headers
|
||||
? Object.entries(headers).find(
|
||||
([key]) => key.trim().toLowerCase() === "x-openclaw-auth"
|
||||
)?.[1] ?? null
|
||||
? headerMapGetIgnoreCase(headers, "x-openclaw-token") ??
|
||||
headerMapGetIgnoreCase(headers, "x-openclaw-auth")
|
||||
: null;
|
||||
|
||||
return {
|
||||
@@ -703,20 +714,23 @@ function normalizeAgentDefaultsForJoin(input: {
|
||||
}
|
||||
|
||||
const openClawAuthHeader = headers
|
||||
? headerMapGetIgnoreCase(headers, "x-openclaw-auth")
|
||||
? headerMapGetIgnoreCase(headers, "x-openclaw-token") ??
|
||||
headerMapGetIgnoreCase(headers, "x-openclaw-auth")
|
||||
: null;
|
||||
if (openClawAuthHeader) {
|
||||
diagnostics.push({
|
||||
code: "openclaw_auth_header_configured",
|
||||
level: "info",
|
||||
message: "Gateway auth token received via headers.x-openclaw-auth."
|
||||
message:
|
||||
"Gateway auth token received via headers.x-openclaw-token (or legacy x-openclaw-auth)."
|
||||
});
|
||||
} else {
|
||||
diagnostics.push({
|
||||
code: "openclaw_auth_header_missing",
|
||||
level: "warn",
|
||||
message: "Gateway auth token is missing from agent defaults.",
|
||||
hint: "Set agentDefaultsPayload.headers.x-openclaw-auth to the token your OpenClaw endpoint requires."
|
||||
hint:
|
||||
"Set agentDefaultsPayload.headers.x-openclaw-token (or legacy x-openclaw-auth) to the token your OpenClaw endpoint requires."
|
||||
});
|
||||
}
|
||||
|
||||
@@ -1894,7 +1908,8 @@ export function accessRoutes(
|
||||
responsesWebhookHeaders: req.body.responsesWebhookHeaders ?? null,
|
||||
paperclipApiUrl: req.body.paperclipApiUrl ?? null,
|
||||
webhookAuthHeader: req.body.webhookAuthHeader ?? null,
|
||||
inboundOpenClawAuthHeader: req.header("x-openclaw-auth") ?? null
|
||||
inboundOpenClawAuthHeader: req.header("x-openclaw-auth") ?? null,
|
||||
inboundOpenClawTokenHeader: req.header("x-openclaw-token") ?? null
|
||||
})
|
||||
: null;
|
||||
|
||||
@@ -1917,6 +1932,9 @@ export function accessRoutes(
|
||||
inboundOpenClawAuthHeader: summarizeSecretForLog(
|
||||
req.header("x-openclaw-auth") ?? null
|
||||
),
|
||||
inboundOpenClawTokenHeader: summarizeSecretForLog(
|
||||
req.header("x-openclaw-token") ?? null
|
||||
),
|
||||
rawAgentDefaults: summarizeOpenClawDefaultsForLog(
|
||||
req.body.agentDefaultsPayload ?? null
|
||||
),
|
||||
@@ -2107,7 +2125,9 @@ export function accessRoutes(
|
||||
expectedDefaults.openClawAuthHeader &&
|
||||
!persistedDefaults.openClawAuthHeader
|
||||
) {
|
||||
missingPersistedFields.push("headers.x-openclaw-auth");
|
||||
missingPersistedFields.push(
|
||||
"headers.x-openclaw-token|headers.x-openclaw-auth"
|
||||
);
|
||||
}
|
||||
if (
|
||||
expectedDefaults.headerKeys.length > 0 &&
|
||||
|
||||
@@ -432,7 +432,7 @@ export function issueRoutes(db: Db, storage: StorageService) {
|
||||
details: { title: issue.title, identifier: issue.identifier },
|
||||
});
|
||||
|
||||
if (issue.assigneeAgentId) {
|
||||
if (issue.assigneeAgentId && issue.status !== "backlog") {
|
||||
void heartbeat
|
||||
.wakeup(issue.assigneeAgentId, {
|
||||
source: "assignment",
|
||||
@@ -566,7 +566,7 @@ export function issueRoutes(db: Db, storage: StorageService) {
|
||||
void (async () => {
|
||||
const wakeups = new Map<string, Parameters<typeof heartbeat.wakeup>[1]>();
|
||||
|
||||
if (assigneeChanged && issue.assigneeAgentId) {
|
||||
if (assigneeChanged && issue.assigneeAgentId && issue.status !== "backlog") {
|
||||
wakeups.set(issue.assigneeAgentId, {
|
||||
source: "assignment",
|
||||
triggerDetail: "system",
|
||||
|
||||
Reference in New Issue
Block a user