mirror of https://github.com/openclaw/openclaw.git
24 lines
847 B
Swift
24 lines
847 B
Swift
import Testing
|
|
@testable import OpenClaw
|
|
|
|
@Suite(.serialized) struct VoiceWakeForwarderTests {
|
|
@Test func `prefixed transcript uses machine name`() {
|
|
let transcript = "hello world"
|
|
let prefixed = VoiceWakeForwarder.prefixedTranscript(transcript, machineName: "My-Mac")
|
|
|
|
#expect(prefixed.starts(with: "User talked via voice recognition on"))
|
|
#expect(prefixed.contains("My-Mac"))
|
|
#expect(prefixed.hasSuffix("\n\nhello world"))
|
|
}
|
|
|
|
@Test func `forward options defaults`() {
|
|
let opts = VoiceWakeForwarder.ForwardOptions()
|
|
#expect(opts.sessionKey == "main")
|
|
#expect(opts.thinking == "low")
|
|
#expect(opts.deliver == true)
|
|
#expect(opts.to == nil)
|
|
#expect(opts.channel == .webchat)
|
|
#expect(opts.channel.shouldDeliver(opts.deliver) == false)
|
|
}
|
|
}
|