Spaces:
Running
Running
File size: 1,657 Bytes
fb4d8fe | 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 | import { afterEach, beforeEach, describe, expect, it } from "vitest";
import { buildPairingReply } from "./pairing-messages.js";
describe("buildPairingReply", () => {
let previousProfile: string | undefined;
beforeEach(() => {
previousProfile = process.env.OPENCLAW_PROFILE;
process.env.OPENCLAW_PROFILE = "isolated";
});
afterEach(() => {
if (previousProfile === undefined) {
delete process.env.OPENCLAW_PROFILE;
return;
}
process.env.OPENCLAW_PROFILE = previousProfile;
});
const cases = [
{
channel: "discord",
idLine: "Your Discord user id: 1",
code: "ABC123",
},
{
channel: "slack",
idLine: "Your Slack user id: U1",
code: "DEF456",
},
{
channel: "signal",
idLine: "Your Signal number: +15550001111",
code: "GHI789",
},
{
channel: "imessage",
idLine: "Your iMessage sender id: +15550002222",
code: "JKL012",
},
{
channel: "whatsapp",
idLine: "Your WhatsApp phone number: +15550003333",
code: "MNO345",
},
] as const;
for (const testCase of cases) {
it(`formats pairing reply for ${testCase.channel}`, () => {
const text = buildPairingReply(testCase);
expect(text).toContain(testCase.idLine);
expect(text).toContain(`Pairing code: ${testCase.code}`);
// CLI commands should respect OPENCLAW_PROFILE when set (most tests run with isolated profile)
const commandRe = new RegExp(
`(?:openclaw|openclaw) --profile isolated pairing approve ${testCase.channel} <code>`,
);
expect(text).toMatch(commandRe);
});
}
});
|