Normalize tuple-style headers in transport request mapping

Co-authored-by: Eric Allam <eric@trigger.dev>
This commit is contained in:
Cursor Agent
2026-02-15 00:10:43 +00:00
parent 3766c7319a
commit 302df5e7ae
2 changed files with 81 additions and 1 deletions
+68
View File
@@ -323,6 +323,74 @@ describe("TriggerChatTransport", function () {
});
});
it("normalizes tuple header arrays into request headers", async function () {
let receivedTriggerBody: Record<string, unknown> | undefined;
const server = await startServer(function (req, res) {
if (req.method === "POST" && req.url === "/api/v1/tasks/chat-task/trigger") {
readJsonBody(req).then(function (body) {
receivedTriggerBody = body;
res.writeHead(200, {
"content-type": "application/json",
"x-trigger-jwt": "pk_run_tuple_headers",
});
res.end(JSON.stringify({ id: "run_tuple_headers" }));
});
return;
}
if (req.method === "GET" && req.url === "/realtime/v1/streams/run_tuple_headers/chat-stream") {
res.writeHead(200, {
"content-type": "text/event-stream",
});
writeSSE(
res,
"1-0",
JSON.stringify({ type: "text-start", id: "tuple_headers_1" })
);
writeSSE(
res,
"2-0",
JSON.stringify({ type: "text-end", id: "tuple_headers_1" })
);
res.end();
return;
}
res.writeHead(404);
res.end();
});
const transport = new TriggerChatTransport({
task: "chat-task",
stream: "chat-stream",
accessToken: "pk_trigger",
baseURL: server.url,
});
const stream = await transport.sendMessages({
trigger: "submit-message",
chatId: "chat-tuple-headers",
messageId: undefined,
messages: [],
abortSignal: undefined,
headers: [["x-tuple-header", "tuple-value"]] as unknown as Record<string, string>,
});
const chunks = await readChunks(stream);
expect(chunks).toHaveLength(2);
const payloadString = receivedTriggerBody?.payload as string;
const payload = (JSON.parse(payloadString) as { json: Record<string, unknown> }).json;
expect(payload.request).toEqual({
body: null,
headers: {
"x-tuple-header": "tuple-value",
},
metadata: null,
});
});
it("returns null on reconnect when no active run exists", async function () {
const transport = new TriggerChatTransport({
task: "chat-task",
+13 -1
View File
@@ -389,12 +389,24 @@ function resolveStreamKey<UI_MESSAGE extends UIMessage>(
}
function normalizeHeaders(
headers: Record<string, string> | Headers | undefined
headers:
| Record<string, string>
| Headers
| Array<[string, string]>
| undefined
): Record<string, string> | undefined {
if (!headers) {
return undefined;
}
if (Array.isArray(headers)) {
const result: Record<string, string> = {};
for (const [key, value] of headers) {
result[key] = value;
}
return result;
}
if (isHeadersInstance(headers)) {
const result: Record<string, string> = {};
for (const [key, value] of headers.entries()) {