mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* Extract client SDK package * Polish SDK client identity defaults * Build client before dependent CI jobs * Restore daemon client server export * Extract protocol and client SDK packages * Fix provider override schema validation * Fix app test daemon client imports * Simplify workspace build targets * Fix CLI test server build bootstrap * Run SDK package tests in CI * Fix rebase package split drift * Restore lockfile registry metadata * Update SDK config test for prompt default * Move terminal stream router test to client package * Fix rebase drift for protocol imports * Fix SDK agent capability fixture * Restore legacy server client exports * Fix server export compatibility test * Advertise custom mode icon client capability * Remove server daemon-client exports * Format rebased mode control import * Fix rebase drift for protocol imports Files added by upstream PRs (#893, #1147, #1154) referenced the pre-split shared/ paths that this branch moves into @getpaseo/protocol. Redirect those imports to the protocol package so typecheck stays green after the rebase.
80 lines
2.3 KiB
TypeScript
80 lines
2.3 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
|
|
import {
|
|
ConnectionOfferSchema,
|
|
decodeOfferFragmentPayload,
|
|
parseConnectionOfferFromUrl,
|
|
} from "./connection-offer.js";
|
|
|
|
function encodeBase64UrlNoPadUtf8(input: string): string {
|
|
return Buffer.from(input, "utf8")
|
|
.toString("base64")
|
|
.replace(/\+/g, "-")
|
|
.replace(/\//g, "_")
|
|
.replace(/=+$/g, "");
|
|
}
|
|
|
|
describe("connection offer", () => {
|
|
it("decodes base64url JSON payloads", () => {
|
|
const payload = {
|
|
v: 2,
|
|
serverId: "server-123",
|
|
daemonPublicKeyB64: "pubkey",
|
|
relay: { endpoint: "relay.paseo.sh:443" },
|
|
};
|
|
|
|
expect(decodeOfferFragmentPayload(encodeBase64UrlNoPadUtf8(JSON.stringify(payload)))).toEqual(
|
|
payload,
|
|
);
|
|
});
|
|
|
|
it("parses connection offers from QR-style URLs", () => {
|
|
const offer = ConnectionOfferSchema.parse({
|
|
v: 2,
|
|
serverId: "server-123",
|
|
daemonPublicKeyB64: "pubkey",
|
|
relay: { endpoint: "relay.paseo.sh:443" },
|
|
});
|
|
const encoded = encodeBase64UrlNoPadUtf8(JSON.stringify(offer));
|
|
|
|
expect(parseConnectionOfferFromUrl(`https://app.paseo.sh/#offer=${encoded}`)).toEqual(offer);
|
|
});
|
|
|
|
it("leaves relay TLS unset when absent", () => {
|
|
expect(
|
|
ConnectionOfferSchema.parse({
|
|
v: 2,
|
|
serverId: "server-123",
|
|
daemonPublicKeyB64: "pubkey",
|
|
relay: { endpoint: "relay.example.com:80" },
|
|
}),
|
|
).toEqual({
|
|
v: 2,
|
|
serverId: "server-123",
|
|
daemonPublicKeyB64: "pubkey",
|
|
relay: { endpoint: "relay.example.com:80" },
|
|
});
|
|
});
|
|
|
|
it("round-trips relay TLS in offers without rejecting extra relay fields", () => {
|
|
const offer = ConnectionOfferSchema.parse({
|
|
v: 2,
|
|
serverId: "server-123",
|
|
daemonPublicKeyB64: "pubkey",
|
|
relay: { endpoint: "relay.example.com:443", useTls: true, extra: "future" },
|
|
});
|
|
const encoded = encodeBase64UrlNoPadUtf8(JSON.stringify(offer));
|
|
|
|
expect(parseConnectionOfferFromUrl(`https://app.paseo.sh/#offer=${encoded}`)).toEqual({
|
|
v: 2,
|
|
serverId: "server-123",
|
|
daemonPublicKeyB64: "pubkey",
|
|
relay: { endpoint: "relay.example.com:443", useTls: true },
|
|
});
|
|
});
|
|
|
|
it("returns null when the URL has no offer fragment", () => {
|
|
expect(parseConnectionOfferFromUrl("https://app.paseo.sh/pair")).toBeNull();
|
|
});
|
|
});
|