mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-17 15:47:28 +00:00
Merged via /review-pr -> /prepare-pr -> /merge-pr.
Prepared head SHA: a87eadea19
Co-authored-by: mbelinky <132747814+mbelinky@users.noreply.github.com>
Co-authored-by: mbelinky <132747814+mbelinky@users.noreply.github.com>
Reviewed-by: @mbelinky
128 lines
4.3 KiB
Swift
128 lines
4.3 KiB
Swift
import OpenClawKit
|
|
import Foundation
|
|
import Testing
|
|
|
|
@Suite struct DeepLinkParserTests {
|
|
@Test func parseRejectsUnknownHost() {
|
|
let url = URL(string: "openclaw://nope?message=hi")!
|
|
#expect(DeepLinkParser.parse(url) == nil)
|
|
}
|
|
|
|
@Test func parseHostIsCaseInsensitive() {
|
|
let url = URL(string: "openclaw://AGENT?message=Hello")!
|
|
#expect(DeepLinkParser.parse(url) == .agent(.init(
|
|
message: "Hello",
|
|
sessionKey: nil,
|
|
thinking: nil,
|
|
deliver: false,
|
|
to: nil,
|
|
channel: nil,
|
|
timeoutSeconds: nil,
|
|
key: nil)))
|
|
}
|
|
|
|
@Test func parseRejectsNonOpenClawScheme() {
|
|
let url = URL(string: "https://example.com/agent?message=hi")!
|
|
#expect(DeepLinkParser.parse(url) == nil)
|
|
}
|
|
|
|
@Test func parseRejectsEmptyMessage() {
|
|
let url = URL(string: "openclaw://agent?message=%20%20%0A")!
|
|
#expect(DeepLinkParser.parse(url) == nil)
|
|
}
|
|
|
|
@Test func parseAgentLinkParsesCommonFields() {
|
|
let url =
|
|
URL(string: "openclaw://agent?message=Hello&deliver=1&sessionKey=node-test&thinking=low&timeoutSeconds=30")!
|
|
#expect(
|
|
DeepLinkParser.parse(url) == .agent(
|
|
.init(
|
|
message: "Hello",
|
|
sessionKey: "node-test",
|
|
thinking: "low",
|
|
deliver: true,
|
|
to: nil,
|
|
channel: nil,
|
|
timeoutSeconds: 30,
|
|
key: nil)))
|
|
}
|
|
|
|
@Test func parseAgentLinkParsesTargetRoutingFields() {
|
|
let url =
|
|
URL(
|
|
string: "openclaw://agent?message=Hello%20World&deliver=1&to=%2B15551234567&channel=whatsapp&key=secret")!
|
|
#expect(
|
|
DeepLinkParser.parse(url) == .agent(
|
|
.init(
|
|
message: "Hello World",
|
|
sessionKey: nil,
|
|
thinking: nil,
|
|
deliver: true,
|
|
to: "+15551234567",
|
|
channel: "whatsapp",
|
|
timeoutSeconds: nil,
|
|
key: "secret")))
|
|
}
|
|
|
|
@Test func parseRejectsNegativeTimeoutSeconds() {
|
|
let url = URL(string: "openclaw://agent?message=Hello&timeoutSeconds=-1")!
|
|
#expect(DeepLinkParser.parse(url) == .agent(.init(
|
|
message: "Hello",
|
|
sessionKey: nil,
|
|
thinking: nil,
|
|
deliver: false,
|
|
to: nil,
|
|
channel: nil,
|
|
timeoutSeconds: nil,
|
|
key: nil)))
|
|
}
|
|
|
|
@Test func parseGatewayLinkParsesCommonFields() {
|
|
let url = URL(
|
|
string: "openclaw://gateway?host=openclaw.local&port=18789&tls=1&token=abc&password=def")!
|
|
#expect(
|
|
DeepLinkParser.parse(url) == .gateway(
|
|
.init(host: "openclaw.local", port: 18789, tls: true, token: "abc", password: "def")))
|
|
}
|
|
|
|
@Test func parseGatewaySetupCodeParsesBase64UrlPayload() {
|
|
let payload = #"{"url":"wss://gateway.example.com:443","token":"tok","password":"pw"}"#
|
|
let encoded = Data(payload.utf8)
|
|
.base64EncodedString()
|
|
.replacingOccurrences(of: "+", with: "-")
|
|
.replacingOccurrences(of: "/", with: "_")
|
|
.replacingOccurrences(of: "=", with: "")
|
|
|
|
let link = GatewayConnectDeepLink.fromSetupCode(encoded)
|
|
|
|
#expect(link == .init(
|
|
host: "gateway.example.com",
|
|
port: 443,
|
|
tls: true,
|
|
token: "tok",
|
|
password: "pw"))
|
|
}
|
|
|
|
@Test func parseGatewaySetupCodeRejectsInvalidInput() {
|
|
#expect(GatewayConnectDeepLink.fromSetupCode("not-a-valid-setup-code") == nil)
|
|
}
|
|
|
|
@Test func parseGatewaySetupCodeDefaultsTo443ForWssWithoutPort() {
|
|
let payload = #"{"url":"wss://gateway.example.com","token":"tok"}"#
|
|
let encoded = Data(payload.utf8)
|
|
.base64EncodedString()
|
|
.replacingOccurrences(of: "+", with: "-")
|
|
.replacingOccurrences(of: "/", with: "_")
|
|
.replacingOccurrences(of: "=", with: "")
|
|
|
|
let link = GatewayConnectDeepLink.fromSetupCode(encoded)
|
|
|
|
#expect(link == .init(
|
|
host: "gateway.example.com",
|
|
port: 443,
|
|
tls: true,
|
|
token: "tok",
|
|
password: nil))
|
|
}
|
|
}
|