test(protocol): add codec coverage

This commit is contained in:
nav
2026-04-09 00:36:37 +00:00
parent 7e69a08443
commit a7e1a9c210
2 changed files with 228 additions and 209 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
node_modules/
dist/
coverage/
*.log

View File

@@ -1,237 +1,252 @@
:
import { describe, it, expect, beforeEach } from "vitest";
import {
encodeBuiltin,
decodeBuiltin,
parseRuleMessage,
encodeRuleMessage,
parseRewrittenRuleMessage,
encodeRewrittenRuleMessage,
isBuiltinMessage,
CodecError
} from "../src/codec.js";
import type { BuiltinEnvelope, HelloPayload, HelloAckPayload } from "../src/types.js";
import { describe, expect, it } from "vitest";
describe("Protocol Codec", () => {
describe("encodeBuiltin / decodeBuiltin", () => {
it("should encode and decode a hello message", () => {
const envelope: BuiltinEnvelope<"hello", HelloPayload> = {
type: "hello",
requestId: "req_001",
timestamp: 1711886400,
payload: {
import {
buildAuthFailed,
buildAuthRequest,
buildAuthSuccess,
buildDisconnectNotice,
buildError,
buildHeartbeat,
buildHeartbeatAck,
buildHello,
buildHelloAck,
buildPairConfirm,
buildPairFailed,
buildPairRequest,
buildPairSuccess,
buildRePairRequired,
buildStatusUpdate,
CodecError,
decodeBuiltin,
encodeBuiltin,
encodeRewrittenRuleMessage,
encodeRuleMessage,
isBuiltinMessage,
parseRewrittenRuleMessage,
parseRuleMessage
} from "../src/index.js";
describe("Protocol Codec - encodeBuiltin / decodeBuiltin", () => {
it("encodes and decodes a hello envelope", () => {
const envelope = buildHello(
{
identifier: "client-a",
hasSecret: true,
hasKeyPair: true,
publicKey: "pk_test",
publicKey: "pk-test",
protocolVersion: "1"
}
};
const encoded = encodeBuiltin(envelope);
expect(encoded).toBe(
'builtin::{"type":"hello","requestId":"req_001","timestamp":1711886400,"payload":{"identifier":"client-a","hasSecret":true,"hasKeyPair":true,"publicKey":"pk_test","protocolVersion":"1"}}'
},
{ requestId: "req-001" }
);
const encoded = encodeBuiltin(envelope);
expect(encoded.startsWith("builtin::")).toBe(true);
const decoded = decodeBuiltin(encoded);
expect(decoded).toEqual(envelope);
expect(decoded.type).toBe("hello");
expect(decoded.requestId).toBe("req-001");
expect(decoded.payload).toMatchObject({
identifier: "client-a",
hasSecret: true,
hasKeyPair: true,
publicKey: "pk-test",
protocolVersion: "1"
});
});
it("should encode and decode a hello_ack message", () => {
const envelope: BuiltinEnvelope<"hello_ack", HelloAckPayload> = {
type: "hello_ack",
requestId: "req_001",
timestamp: 1711886401,
it("encodes and decodes all builtin message types", () => {
const testCases = [
{
builder: buildHelloAck,
payload: { identifier: "client-a", nextAction: "pair_required" as const }
},
{
builder: buildPairRequest,
payload: {
identifier: "client-a",
nextAction: "pair_required"
expiresAt: 1_710_000_000,
ttlSeconds: 300,
adminNotification: "sent" as const,
codeDelivery: "out_of_band" as const
}
};
},
{
builder: buildPairConfirm,
payload: { identifier: "client-a", pairingCode: "ABCD-1234-XYZ" }
},
{
builder: buildPairSuccess,
payload: { identifier: "client-a", secret: "secret-xyz", pairedAt: 1_710_000_000 }
},
{
builder: buildPairFailed,
payload: { identifier: "client-a", reason: "expired" as const }
},
{
builder: buildAuthRequest,
payload: {
identifier: "client-a",
nonce: "RANDOM24CHARACTERSTRINGX",
proofTimestamp: 1_710_000_000,
signature: "sig-base64",
publicKey: "pk-test"
}
},
{
builder: buildAuthSuccess,
payload: { identifier: "client-a", authenticatedAt: 1_710_000_000, status: "online" as const }
},
{
builder: buildAuthFailed,
payload: { identifier: "client-a", reason: "invalid_signature" as const }
},
{
builder: buildRePairRequired,
payload: { identifier: "client-a", reason: "nonce_collision" as const }
},
{
builder: buildHeartbeat,
payload: { identifier: "client-a", status: "alive" as const }
},
{
builder: buildHeartbeatAck,
payload: { identifier: "client-a", status: "online" as const }
},
{
builder: buildStatusUpdate,
payload: { identifier: "client-a", status: "unstable" as const, reason: "heartbeat_timeout_7m" }
},
{
builder: buildDisconnectNotice,
payload: { identifier: "client-a", reason: "heartbeat_timeout_11m" }
},
{
builder: buildError,
payload: { code: "MALFORMED_MESSAGE" as const, message: "Invalid JSON" }
}
];
for (const { builder, payload } of testCases) {
const envelope = builder(payload as never, { requestId: "test-req" });
const encoded = encodeBuiltin(envelope);
const decoded = decodeBuiltin(encoded);
expect(decoded).toEqual(envelope);
expect(decoded.type).toBe(envelope.type);
expect(decoded.requestId).toBe("test-req");
expect(decoded.payload).toMatchObject(payload);
}
});
it("should handle envelope without optional fields", () => {
const envelope: BuiltinEnvelope = {
type: "heartbeat"
};
const encoded = encodeBuiltin(envelope);
expect(encoded).toBe('builtin::{"type":"heartbeat"}');
const decoded = decodeBuiltin(encoded);
expect(decoded).toEqual(envelope);
it("throws CodecError for malformed messages", () => {
expect(() => decodeBuiltin("not-builtin::{")).toThrow(CodecError);
expect(() => decodeBuiltin("builtin::not-json")).toThrow(CodecError);
expect(() => decodeBuiltin("builtin::{}")).toThrow(CodecError); // missing type
expect(() => decodeBuiltin("no-delimiter")).toThrow(CodecError);
expect(() => decodeBuiltin("")).toThrow(CodecError);
});
it("should throw CodecError for malformed builtin message", () => {
expect(() => decodeBuiltin("invalid")).toThrow(CodecError);
expect(() => decodeBuiltin("builtin::")).toThrow(CodecError);
expect(() => decodeBuiltin("builtin::invalid json")).toThrow(CodecError);
});
it("should throw CodecError for non-builtin message prefix", () => {
expect(() => decodeBuiltin("hello::{\"type\":\"test\"}")).toThrow(CodecError);
it("throws CodecError for invalid envelope input", () => {
expect(() => encodeBuiltin(null as never)).toThrow(CodecError);
expect(() => encodeBuiltin({} as never)).toThrow(CodecError);
expect(() => encodeBuiltin({ type: 123 } as never)).toThrow(CodecError);
});
});
describe("isBuiltinMessage", () => {
it("should return true for builtin messages", () => {
expect(isBuiltinMessage('builtin::{"type":"hello"}')).toBe(true);
expect(isBuiltinMessage("builtin::{}")).toBe(true);
describe("Protocol Codec - Rule Message Parsing", () => {
it("parses rule messages correctly", () => {
const parsed = parseRuleMessage("chat_sync::{\"body\":\"hello\"}");
expect(parsed.ruleIdentifier).toBe("chat_sync");
expect(parsed.content).toBe('{"body":"hello"}');
});
it("should return false for non-builtin messages", () => {
expect(isBuiltinMessage("hello::world")).toBe(false);
it("handles content containing :: delimiters", () => {
const parsed = parseRuleMessage("rule::a::b::c");
expect(parsed.ruleIdentifier).toBe("rule");
expect(parsed.content).toBe("a::b::c");
});
it("throws CodecError for invalid rule messages", () => {
expect(() => parseRuleMessage("no-delimiter")).toThrow(CodecError);
expect(() => parseRuleMessage(":")).toThrow(CodecError);
expect(() => parseRuleMessage("")).toThrow(CodecError);
expect(() => parseRuleMessage("::content")).toThrow(CodecError); // empty identifier
});
it("throws CodecError for reserved builtin identifier", () => {
expect(() => parseRuleMessage("builtin::something")).toThrow(
/reserved/
);
});
it("throws CodecError for invalid rule identifier characters", () => {
expect(() => parseRuleMessage("rule with spaces::content")).toThrow(CodecError);
// Note: special chars in content are allowed - only the rule identifier is validated
expect(() => parseRuleMessage("rule::with::special!::chars")).not.toThrow(); // content can contain special chars
});
it("isBuiltinMessage identifies builtin messages", () => {
expect(isBuiltinMessage("builtin::{\"type\":\"hello\"}")).toBe(true);
expect(isBuiltinMessage("rule::content")).toBe(false);
expect(isBuiltinMessage("not-builtin::content")).toBe(false);
expect(isBuiltinMessage("")).toBe(false);
});
});
describe("parseRuleMessage", () => {
it("should parse simple rule message", () => {
const result = parseRuleMessage("chat_sync::{\"body\":\"hello\"}");
expect(result).toEqual({
rule: "chat_sync",
content: '{"body":"hello"}'
describe("Protocol Codec - Server Rewritten Messages", () => {
it("parses rewritten messages with sender identifier", () => {
const parsed = parseRewrittenRuleMessage("chat_sync::client-a::{\"body\":\"hello\"}");
expect(parsed.ruleIdentifier).toBe("chat_sync");
expect(parsed.senderIdentifier).toBe("client-a");
expect(parsed.messageContent).toBe('{"body":"hello"}');
expect(parsed.content).toBe("client-a::{\"body\":\"hello\"}");
});
it("handles complex content with multiple delimiters", () => {
const parsed = parseRewrittenRuleMessage("rule::sender::a::b::c");
expect(parsed.ruleIdentifier).toBe("rule");
expect(parsed.senderIdentifier).toBe("sender");
expect(parsed.messageContent).toBe("a::b::c");
});
it("throws CodecError for malformed rewritten messages", () => {
expect(() => parseRewrittenRuleMessage("no-delimiters")).toThrow(CodecError);
expect(() => parseRewrittenRuleMessage("rule::only-one")).toThrow(/sender/);
expect(() => parseRewrittenRuleMessage("::sender::content")).toThrow(/Empty/);
// Note: "rule:::content" has empty sender which is caught by "missing sender identifier delimiter" check
expect(() => parseRewrittenRuleMessage("rule:::content")).toThrow(/sender/);
});
});
it("should parse rule message with content containing ::", () => {
const result = parseRuleMessage("chat_sync::sender::extra::{\"body\":\"hello::world\"}");
expect(result).toEqual({
rule: "chat_sync",
content: 'sender::extra::{"body":"hello::world"}'
});
});
it("should throw CodecError for malformed rule message", () => {
expect(() => parseRuleMessage("invalid")).toThrow(CodecError);
expect(() => parseRuleMessage("")).toThrow(CodecError);
});
it("should reject builtin as rule identifier", () => {
expect(() => parseRuleMessage('builtin::{"type":"hello"}')).toThrow(CodecError);
});
});
describe("encodeRuleMessage", () => {
it("should encode rule message", () => {
describe("Protocol Codec - encodeRuleMessage", () => {
it("encodes rule messages correctly", () => {
const encoded = encodeRuleMessage("chat_sync", '{"body":"hello"}');
expect(encoded).toBe('chat_sync::{"body":"hello"}');
});
it("should reject builtin as rule", () => {
expect(() => encodeRuleMessage("builtin", "content")).toThrow(CodecError);
it("throws CodecError for invalid rule identifiers", () => {
expect(() => encodeRuleMessage("", "content")).toThrow(CodecError);
expect(() => encodeRuleMessage("builtin", "content")).toThrow(/reserved/);
expect(() => encodeRuleMessage("rule with spaces", "content")).toThrow(CodecError);
expect(() => encodeRuleMessage("rule!", "content")).toThrow(CodecError);
});
it("throws CodecError for non-string content", () => {
expect(() => encodeRuleMessage("rule", null as never)).toThrow(CodecError);
});
});
describe("parseRewrittenRuleMessage", () => {
it("should parse rewritten server-side message", () => {
const result = parseRewrittenRuleMessage("chat_sync::client-a::{\"body\":\"hello\"}");
expect(result).toEqual({
rule: "chat_sync",
sender: "client-a",
content: '{"body":"hello"}'
});
});
it("should handle content with :: delimiters", () => {
const result = parseRewrittenRuleMessage("chat_sync::client-a::extra::{\"body\":\"hello::world\"}");
expect(result).toEqual({
rule: "chat_sync",
sender: "client-a",
content: 'extra::{"body":"hello::world"}'
});
});
it("should throw CodecError for malformed rewritten message", () => {
expect(() => parseRewrittenRuleMessage("rule::content")).toThrow(CodecError);
expect(() => parseRewrittenRuleMessage("invalid")).toThrow(CodecError);
});
});
describe("encodeRewrittenRuleMessage", () => {
it("should encode rewritten message", () => {
describe("Protocol Codec - encodeRewrittenRuleMessage", () => {
it("encodes rewritten messages correctly", () => {
const encoded = encodeRewrittenRuleMessage("chat_sync", "client-a", '{"body":"hello"}');
expect(encoded).toBe('chat_sync::client-a::{"body":"hello"}');
});
it("should reject builtin as rule", () => {
expect(() => encodeRewrittenRuleMessage("builtin", "sender", "content")).toThrow(CodecError);
});
});
it("throws CodecError for reserved rule identifier", () => {
expect(() => encodeRewrittenRuleMessage("builtin", "sender", "content")).toThrow(/reserved/);
});
describe("Protocol Message Examples", () => {
describe("Hello Flow", () => {
it("should demonstrate complete hello flow", () => {
// Client sends hello
const hello: BuiltinEnvelope<"hello", HelloPayload> = {
type: "hello",
requestId: "req_001",
timestamp: Math.floor(Date.now() / 1000),
payload: {
identifier: "client-a",
hasSecret: false,
hasKeyPair: true,
publicKey: "ed25519_pk_test123",
protocolVersion: "1"
}
};
const helloWire = encodeBuiltin(hello);
expect(isBuiltinMessage(helloWire)).toBe(true);
// Server parses hello
const parsedHello = decodeBuiltin(helloWire);
expect(parsedHello.type).toBe("hello");
expect((parsedHello.payload as HelloPayload).identifier).toBe("client-a");
// Server responds with hello_ack
const helloAck: BuiltinEnvelope<"hello_ack", HelloAckPayload> = {
type: "hello_ack",
requestId: hello.requestId,
timestamp: Math.floor(Date.now() / 1000),
payload: {
identifier: "client-a",
nextAction: "pair_required"
}
};
const ackWire = encodeBuiltin(helloAck);
const parsedAck = decodeBuiltin(ackWire);
expect(parsedAck.type).toBe("hello_ack");
expect((parsedAck.payload as HelloAckPayload).nextAction).toBe("pair_required");
});
});
describe("Rule Message Flow", () => {
it("should demonstrate client to server message", () => {
const message = encodeRuleMessage("chat_sync", '{"conversationId":"abc","body":"hello"}');
expect(message).toBe('chat_sync::{"conversationId":"abc","body":"hello"}');
// Server parses
const parsed = parseRuleMessage(message);
expect(parsed.rule).toBe("chat_sync");
expect(parsed.content).toBe('{"conversationId":"abc","body":"hello"}');
});
it("should demonstrate server-side rewriting", () => {
// Server rewrites incoming message
const rewritten = encodeRewrittenRuleMessage(
"chat_sync",
"client-a",
'{"conversationId":"abc","body":"hello"}'
);
expect(rewritten).toBe('chat_sync::client-a::{"conversationId":"abc","body":"hello"}');
// Server-side handler parses
const parsed = parseRewrittenRuleMessage(rewritten);
expect(parsed.rule).toBe("chat_sync");
expect(parsed.sender).toBe("client-a");
expect(parsed.content).toBe('{"conversationId":"abc","body":"hello"}');
});
it("throws CodecError for empty identifiers", () => {
expect(() => encodeRewrittenRuleMessage("", "sender", "content")).toThrow(CodecError);
expect(() => encodeRewrittenRuleMessage("rule", "", "content")).toThrow(CodecError);
});
});