mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
25 lines
972 B
Swift
25 lines
972 B
Swift
import Testing
|
|
@testable import OpenClaw
|
|
|
|
@Suite(.serialized)
|
|
struct GatewayAutostartPolicyTests {
|
|
@Test func `starts gateway only when local and not paused`() {
|
|
#expect(GatewayAutostartPolicy.shouldStartGateway(mode: .local, paused: false))
|
|
#expect(!GatewayAutostartPolicy.shouldStartGateway(mode: .local, paused: true))
|
|
#expect(!GatewayAutostartPolicy.shouldStartGateway(mode: .remote, paused: false))
|
|
#expect(!GatewayAutostartPolicy.shouldStartGateway(mode: .unconfigured, paused: false))
|
|
}
|
|
|
|
@Test func `ensures launch agent when local and not attach only`() {
|
|
#expect(GatewayAutostartPolicy.shouldEnsureLaunchAgent(
|
|
mode: .local,
|
|
paused: false))
|
|
#expect(!GatewayAutostartPolicy.shouldEnsureLaunchAgent(
|
|
mode: .local,
|
|
paused: true))
|
|
#expect(!GatewayAutostartPolicy.shouldEnsureLaunchAgent(
|
|
mode: .remote,
|
|
paused: false))
|
|
}
|
|
}
|