33 lines
1.1 KiB
Swift
33 lines
1.1 KiB
Swift
import Foundation
|
|
import Testing
|
|
@testable import Clawdbot
|
|
|
|
@Suite struct HealthDecodeTests {
|
|
private let sampleJSON: String = // minimal but complete payload
|
|
"""
|
|
{"ts":1733622000,"durationMs":420,"web":{"linked":true,"authAgeMs":120000,"connect":{"ok":true,"status":200,"error":null,"elapsedMs":800}},"heartbeatSeconds":60,"sessions":{"path":"/tmp/sessions.json","count":1,"recent":[{"key":"abc","updatedAt":1733621900,"age":120000}]}}
|
|
"""
|
|
|
|
@Test func decodesCleanJSON() async throws {
|
|
let data = Data(sampleJSON.utf8)
|
|
let snap = decodeHealthSnapshot(from: data)
|
|
|
|
#expect(snap?.web.linked == true)
|
|
#expect(snap?.sessions.count == 1)
|
|
}
|
|
|
|
@Test func decodesWithLeadingNoise() async throws {
|
|
let noisy = "debug: something logged\n" + self.sampleJSON + "\ntrailer"
|
|
let snap = decodeHealthSnapshot(from: Data(noisy.utf8))
|
|
|
|
#expect(snap?.web.connect?.status == 200)
|
|
}
|
|
|
|
@Test func failsWithoutBraces() async throws {
|
|
let data = Data("no json here".utf8)
|
|
let snap = decodeHealthSnapshot(from: data)
|
|
|
|
#expect(snap == nil)
|
|
}
|
|
}
|