mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-19 18:39:20 -05:00
34 lines
1.2 KiB
Swift
34 lines
1.2 KiB
Swift
import OpenClawKit
|
|
import Network
|
|
import Testing
|
|
@testable import OpenClaw
|
|
|
|
@Suite struct GatewayEndpointIDTests {
|
|
@Test func stableIDForServiceDecodesAndNormalizesName() {
|
|
let endpoint = NWEndpoint.service(
|
|
name: "OpenClaw\\032Gateway \\032 Node\n",
|
|
type: "_openclaw-gw._tcp",
|
|
domain: "local.",
|
|
interface: nil)
|
|
|
|
#expect(GatewayEndpointID.stableID(endpoint) == "_openclaw-gw._tcp|local.|OpenClaw Gateway Node")
|
|
}
|
|
|
|
@Test func stableIDForNonServiceUsesEndpointDescription() {
|
|
let endpoint = NWEndpoint.hostPort(host: NWEndpoint.Host("127.0.0.1"), port: 4242)
|
|
#expect(GatewayEndpointID.stableID(endpoint) == String(describing: endpoint))
|
|
}
|
|
|
|
@Test func prettyDescriptionDecodesBonjourEscapes() {
|
|
let endpoint = NWEndpoint.service(
|
|
name: "OpenClaw\\032Gateway",
|
|
type: "_openclaw-gw._tcp",
|
|
domain: "local.",
|
|
interface: nil)
|
|
|
|
let pretty = GatewayEndpointID.prettyDescription(endpoint)
|
|
#expect(pretty == BonjourEscapes.decode(String(describing: endpoint)))
|
|
#expect(!pretty.localizedCaseInsensitiveContains("\\032"))
|
|
}
|
|
}
|