refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions

View File

@@ -1,37 +1,39 @@
import { describe, expect, it } from "vitest";
import { renderWideAreaGatewayZoneText, WIDE_AREA_DISCOVERY_DOMAIN } from "./widearea-dns.js";
import { renderWideAreaGatewayZoneText } from "./widearea-dns.js";
describe("wide-area DNS-SD zone rendering", () => {
it("renders a moltbot.internal zone with gateway PTR/SRV/TXT records", () => {
it("renders a zone with gateway PTR/SRV/TXT records", () => {
const txt = renderWideAreaGatewayZoneText({
domain: "openclaw.internal.",
serial: 2025121701,
gatewayPort: 18789,
displayName: "Mac Studio (Moltbot)",
displayName: "Mac Studio (OpenClaw)",
tailnetIPv4: "100.123.224.76",
tailnetIPv6: "fd7a:115c:a1e0::8801:e04c",
hostLabel: "studio-london",
instanceLabel: "studio-london",
sshPort: 22,
cliPath: "/opt/homebrew/bin/moltbot",
cliPath: "/opt/homebrew/bin/openclaw",
});
expect(txt).toContain(`$ORIGIN ${WIDE_AREA_DISCOVERY_DOMAIN}`);
expect(txt).toContain(`$ORIGIN openclaw.internal.`);
expect(txt).toContain(`studio-london IN A 100.123.224.76`);
expect(txt).toContain(`studio-london IN AAAA fd7a:115c:a1e0::8801:e04c`);
expect(txt).toContain(`_moltbot-gw._tcp IN PTR studio-london._moltbot-gw._tcp`);
expect(txt).toContain(`studio-london._moltbot-gw._tcp IN SRV 0 0 18789 studio-london`);
expect(txt).toContain(`displayName=Mac Studio (Moltbot)`);
expect(txt).toContain(`_openclaw-gw._tcp IN PTR studio-london._openclaw-gw._tcp`);
expect(txt).toContain(`studio-london._openclaw-gw._tcp IN SRV 0 0 18789 studio-london`);
expect(txt).toContain(`displayName=Mac Studio (OpenClaw)`);
expect(txt).toContain(`gatewayPort=18789`);
expect(txt).toContain(`sshPort=22`);
expect(txt).toContain(`cliPath=/opt/homebrew/bin/moltbot`);
expect(txt).toContain(`cliPath=/opt/homebrew/bin/openclaw`);
});
it("includes tailnetDns when provided", () => {
const txt = renderWideAreaGatewayZoneText({
domain: "openclaw.internal.",
serial: 2025121701,
gatewayPort: 18789,
displayName: "Mac Studio (Moltbot)",
displayName: "Mac Studio (OpenClaw)",
tailnetIPv4: "100.123.224.76",
tailnetDns: "peters-mac-studio-1.sheep-coho.ts.net",
hostLabel: "studio-london",