mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-27 11:27:01 +01:00
25 lines
715 B
TypeScript
25 lines
715 B
TypeScript
import { expect } from "vitest";
|
|
|
|
export function extractPairingCode(text: string): string {
|
|
const code = text.match(/Pairing code:\s*```[\r\n]+([A-Z2-9]{6,})/)?.[1];
|
|
expect(code).toBeDefined();
|
|
return code ?? "";
|
|
}
|
|
|
|
export function expectPairingReplyText(
|
|
text: string,
|
|
params: {
|
|
channel: string;
|
|
idLine: string;
|
|
code?: string;
|
|
},
|
|
): string {
|
|
const code = params.code ?? extractPairingCode(text);
|
|
expect(text).toContain("OpenClaw: access not configured.");
|
|
expect(text).toContain(params.idLine);
|
|
expect(text).toContain("Pairing code:");
|
|
expect(text).toContain(`\n\`\`\`\n${code}\n\`\`\`\n`);
|
|
expect(text).toContain(`pairing approve ${params.channel} ${code}`);
|
|
return code;
|
|
}
|