42 lines
1.8 KiB
Swift
42 lines
1.8 KiB
Swift
import Foundation
|
|
import Testing
|
|
@testable import Clawdbot
|
|
|
|
@Suite struct GatewayEnvironmentTests {
|
|
@Test func semverParsesCommonForms() {
|
|
#expect(Semver.parse("1.2.3") == Semver(major: 1, minor: 2, patch: 3))
|
|
#expect(Semver.parse("v2.0.0") == Semver(major: 2, minor: 0, patch: 0))
|
|
#expect(Semver.parse("3.4.5-beta.1") == Semver(major: 3, minor: 4, patch: 0)) // patch drops trailing text
|
|
#expect(Semver.parse(nil) == nil)
|
|
#expect(Semver.parse("invalid") == nil)
|
|
}
|
|
|
|
@Test func semverCompatibilityRequiresSameMajorAndNotOlder() {
|
|
let required = Semver(major: 2, minor: 1, patch: 0)
|
|
#expect(Semver(major: 2, minor: 1, patch: 0).compatible(with: required))
|
|
#expect(Semver(major: 2, minor: 2, patch: 0).compatible(with: required))
|
|
#expect(Semver(major: 3, minor: 0, patch: 0).compatible(with: required) == false)
|
|
#expect(Semver(major: 1, minor: 9, patch: 9).compatible(with: required) == false)
|
|
}
|
|
|
|
@Test func gatewayPortDefaultsAndRespectsOverride() async {
|
|
let configPath = TestIsolation.tempConfigPath()
|
|
await TestIsolation.withIsolatedState(
|
|
env: ["CLAWDBOT_CONFIG_PATH": configPath],
|
|
defaults: ["gatewayPort": nil])
|
|
{
|
|
let defaultPort = GatewayEnvironment.gatewayPort()
|
|
#expect(defaultPort == 18789)
|
|
|
|
UserDefaults.standard.set(19999, forKey: "gatewayPort")
|
|
defer { UserDefaults.standard.removeObject(forKey: "gatewayPort") }
|
|
#expect(GatewayEnvironment.gatewayPort() == 19999)
|
|
}
|
|
}
|
|
|
|
@Test func expectedGatewayVersionFromStringUsesParser() {
|
|
#expect(GatewayEnvironment.expectedGatewayVersion(from: "v9.1.2") == Semver(major: 9, minor: 1, patch: 2))
|
|
#expect(GatewayEnvironment.expectedGatewayVersion(from: nil) == nil)
|
|
}
|
|
}
|