Move domain stuff to sub directory, clean up base classes

This commit is contained in:
Jon Staab
2026-06-19 10:42:58 -07:00
parent bfd91f2d39
commit 1bd62d3024
95 changed files with 4956 additions and 1353 deletions
@@ -0,0 +1,65 @@
import {describe, it, expect} from "vitest"
import {makeSecret, RELAY_JOIN, NOTE} from "@welshman/util"
import type {TrustedEvent} from "@welshman/util"
import {Nip01Signer} from "@welshman/signer"
import {RelayJoin, RelayJoinBuilder} from "../src/kinds/RelayJoin"
const signer = new Nip01Signer(makeSecret())
const pubkey = "ee".repeat(32)
const makeEvent = (overrides: Partial<TrustedEvent> = {}): TrustedEvent =>
({
id: "ff".repeat(32),
pubkey,
created_at: 0,
kind: RELAY_JOIN,
tags: [],
content: "",
sig: "00".repeat(64),
...overrides,
}) as TrustedEvent
describe("RelayJoin", () => {
it("reads claim tag and reason content", async () => {
const join = await RelayJoin.fromEvent(
makeEvent({tags: [["claim", "abc123"]], content: "please let me in"}),
)
expect(join.claim()).toBe("abc123")
expect(join.reason()).toBe("please let me in")
})
it("returns undefined for missing claim/reason", async () => {
const join = await RelayJoin.fromEvent(makeEvent())
expect(join.claim()).toBeUndefined()
expect(join.reason()).toBeUndefined()
})
it("round-trips with no duplicate tags and preserves passthrough/content", async () => {
const join = await RelayJoin.fromEvent(
makeEvent({tags: [["claim", "abc123"], ["alt", "x"]], content: "let me in"}),
)
const tmpl = await join.builder().toTemplate(signer)
expect(tmpl.kind).toBe(RELAY_JOIN)
expect(tmpl.tags.filter(t => t[0] === "claim").length).toBe(1)
expect(tmpl.tags).toContainEqual(["alt", "x"])
expect(tmpl.content).toBe("let me in")
})
it("builds from a fresh builder", async () => {
const tmpl = await new RelayJoinBuilder()
.setClaim("invite42")
.setReason("hello")
.toTemplate(signer)
expect(tmpl.tags).toContainEqual(["claim", "invite42"])
expect(tmpl.content).toBe("hello")
})
it("throws on the wrong kind", async () => {
await expect(RelayJoin.fromEvent(makeEvent({kind: NOTE}))).rejects.toThrow()
})
})