test: cover first-run pair bootstrap
This commit is contained in:
@@ -121,6 +121,53 @@ describe("Yonexus.Client runtime flow", () => {
|
||||
});
|
||||
});
|
||||
|
||||
it("SR-04: first run without credentials enters pair flow and does not require manual state bootstrap", async () => {
|
||||
const storeState = createMockStateStore({
|
||||
identifier: "client-a",
|
||||
updatedAt: 1_710_000_000
|
||||
});
|
||||
const transportState = createMockTransport();
|
||||
const runtime = createYonexusClientRuntime({
|
||||
config: {
|
||||
mainHost: "ws://localhost:8787",
|
||||
identifier: "client-a",
|
||||
notifyBotToken: "stub-token",
|
||||
adminUserId: "admin-user"
|
||||
},
|
||||
transport: transportState.transport,
|
||||
stateStore: storeState.store,
|
||||
now: () => 1_710_000_000
|
||||
});
|
||||
|
||||
await runtime.start();
|
||||
runtime.handleTransportStateChange("connected");
|
||||
|
||||
const hello = decodeBuiltin(transportState.sent[0]);
|
||||
expect(hello.type).toBe("hello");
|
||||
expect(hello.payload).toMatchObject({
|
||||
identifier: "client-a",
|
||||
hasSecret: false,
|
||||
hasKeyPair: true
|
||||
});
|
||||
|
||||
await runtime.handleMessage(
|
||||
encodeBuiltin(
|
||||
buildHelloAck(
|
||||
{
|
||||
identifier: "client-a",
|
||||
nextAction: "pair_required"
|
||||
},
|
||||
{ requestId: "req-first-run", timestamp: 1_710_000_000 }
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
expect(runtime.state.phase).toBe("pair_required");
|
||||
expect(runtime.state.clientState.secret).toBeUndefined();
|
||||
expect(runtime.state.clientState.privateKey).toBeTypeOf("string");
|
||||
expect(runtime.state.clientState.publicKey).toBeTypeOf("string");
|
||||
});
|
||||
|
||||
it("handles pair request, submits code, stores secret, and authenticates", async () => {
|
||||
let now = 1_710_000_000;
|
||||
const storeState = createMockStateStore();
|
||||
|
||||
Reference in New Issue
Block a user