mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-11 05:06:05 +00:00
* feat(ios): durable offline command outbox for chat sends
Text messages sent while the gateway is unreachable queue in a durable
per-gateway outbox (new outbox_commands table in the per-gateway chat
cache SQLite store, schema v2) instead of failing. Queued bubbles render
with visible Queued/Sending/Not sent states and flush strictly in
createdAt order once transport health recovers; each command's client
UUID rides as the send idempotency key, so at-least-once delivery plus
gateway dedupe keeps the transcript exact.
Contract summary:
- Bounds: 50 queued commands per gateway; refused enqueues keep the
draft. Queued rows older than 48h expire to failed("expired") rather
than silently sending stale commands; tap-to-retry refreshes
createdAt so an expired row can resend as new intent.
- Failure taxonomy: transport-level failures keep rows queued without
burning retry attempts (backoff ladder, then health drops so the
reconnect machinery owns pacing); gateway rejections burn attempts
and fail terminally after 3, with context-menu retry/delete.
- Deletes are tombstoned synchronously and rechecked after the claim
await so an active flush can never send a removed command; Delete is
hidden while a bubble is already in flight; offline enqueue is
guarded against double submit during the health probe.
- Post-reconnect live sends route behind draining outbox rows (FIFO),
and a cold open assumes a backlog until restore adopts durable rows.
- Crash safety: 'sending' rows revert to 'queued' at startup; flushed
turns are spliced into the session's cached transcript before their
outbox row is deleted, and stale history snapshots cannot evict a
just-flushed turn until a snapshot confirms it.
- Per-gateway scoping and purge ride the transcript cache: one SQLite
file per gateway; reset/forget drops the queue with the cache.
Fixture/unpaired transports get no outbox.
Part of #46664
* chore(ios): sync native i18n inventory
* style(chat-ui): satisfy strict SwiftFormat lint (doc comment, scope blank line)
481 lines
22 KiB
Swift
481 lines
22 KiB
Swift
import Foundation
|
|
import OpenClawKit
|
|
import SQLite3
|
|
import Testing
|
|
@testable import OpenClawChatUI
|
|
|
|
private func makeDatabaseURL() throws -> URL {
|
|
let dir = FileManager.default.temporaryDirectory
|
|
.appendingPathComponent("chat-cache-tests-\(UUID().uuidString)", isDirectory: true)
|
|
try FileManager.default.createDirectory(at: dir, withIntermediateDirectories: true)
|
|
return dir.appendingPathComponent("chat-cache.sqlite", isDirectory: false)
|
|
}
|
|
|
|
private func cacheMessage(
|
|
role: String,
|
|
text: String,
|
|
timestamp: Double,
|
|
idempotencyKey: String? = nil) -> OpenClawChatMessage
|
|
{
|
|
OpenClawChatMessage(
|
|
role: role,
|
|
content: [
|
|
OpenClawChatMessageContent(
|
|
type: "text",
|
|
text: text,
|
|
mimeType: nil,
|
|
fileName: nil,
|
|
content: nil),
|
|
],
|
|
timestamp: timestamp,
|
|
idempotencyKey: idempotencyKey)
|
|
}
|
|
|
|
private func cacheSessionEntry(key: String, updatedAt: Double) -> OpenClawChatSessionEntry {
|
|
OpenClawChatSessionEntry(
|
|
key: key,
|
|
kind: nil,
|
|
displayName: nil,
|
|
surface: nil,
|
|
subject: nil,
|
|
room: nil,
|
|
space: nil,
|
|
updatedAt: updatedAt,
|
|
sessionId: nil,
|
|
systemSent: nil,
|
|
abortedLastRun: nil,
|
|
thinkingLevel: nil,
|
|
verboseLevel: nil,
|
|
inputTokens: nil,
|
|
outputTokens: nil,
|
|
totalTokens: nil,
|
|
modelProvider: nil,
|
|
model: nil,
|
|
contextTokens: nil)
|
|
}
|
|
|
|
private func messageTexts(_ messages: [OpenClawChatMessage]) -> [String] {
|
|
messages.map { $0.content.compactMap(\.text).joined() }
|
|
}
|
|
|
|
private func outboxCommand(
|
|
id: String = UUID().uuidString,
|
|
sessionKey: String = "main",
|
|
text: String,
|
|
thinking: String = "off",
|
|
createdAt: Double = Date().timeIntervalSince1970) -> OpenClawChatOutboxCommand
|
|
{
|
|
OpenClawChatOutboxCommand(
|
|
id: id,
|
|
sessionKey: sessionKey,
|
|
text: text,
|
|
thinking: thinking,
|
|
createdAt: createdAt,
|
|
status: .queued,
|
|
retryCount: 0,
|
|
lastError: nil)
|
|
}
|
|
|
|
struct ChatTranscriptCacheStoreTests {
|
|
@Test func `transcript and sessions round trip`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
|
|
let messages = [
|
|
cacheMessage(role: "user", text: "hello", timestamp: 1000, idempotencyKey: "run-1:user"),
|
|
cacheMessage(role: "assistant", text: "hi there", timestamp: 2000, idempotencyKey: "run-1"),
|
|
]
|
|
await store.storeTranscript(sessionKey: "main", messages: messages)
|
|
await store.storeSessions([cacheSessionEntry(key: "main", updatedAt: 2000)])
|
|
|
|
let loaded = await store.loadTranscript(sessionKey: "main")
|
|
#expect(messageTexts(loaded) == ["hello", "hi there"])
|
|
#expect(loaded.map(\.role) == ["user", "assistant"])
|
|
#expect(loaded.map(\.idempotencyKey) == ["run-1:user", "run-1"])
|
|
#expect(loaded.map(\.timestamp) == [1000, 2000])
|
|
|
|
let sessions = await store.loadSessions()
|
|
#expect(sessions.map(\.key) == ["main"])
|
|
|
|
#expect(await store.loadTranscript(sessionKey: "unknown").isEmpty)
|
|
}
|
|
|
|
@Test func `transcript keeps only most recent messages within bound`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
let bound = OpenClawChatSQLiteTranscriptCache.maxCachedMessagesPerSession
|
|
|
|
let messages = (0..<(bound + 50)).map { index in
|
|
cacheMessage(role: "user", text: "m\(index)", timestamp: Double(index))
|
|
}
|
|
await store.storeTranscript(sessionKey: "main", messages: messages)
|
|
|
|
let loaded = await store.loadTranscript(sessionKey: "main")
|
|
#expect(loaded.count == bound)
|
|
#expect(messageTexts(loaded).first == "m50")
|
|
#expect(messageTexts(loaded).last == "m\(bound + 49)")
|
|
}
|
|
|
|
@Test func `sessions list is bounded to most recently updated`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
let bound = OpenClawChatSQLiteTranscriptCache.maxCachedSessions
|
|
|
|
let sessions = (0..<(bound + 10)).map { index in
|
|
cacheSessionEntry(key: "s\(index)", updatedAt: Double(index))
|
|
}
|
|
await store.storeSessions(sessions)
|
|
|
|
let loaded = await store.loadSessions()
|
|
#expect(loaded.count == bound)
|
|
// Highest updatedAt survives, oldest entries are dropped.
|
|
#expect(loaded.map(\.key).contains("s\(bound + 9)"))
|
|
#expect(!loaded.map(\.key).contains("s0"))
|
|
}
|
|
|
|
@Test func `transcript eviction keeps most recent sessions`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
let bound = OpenClawChatSQLiteTranscriptCache.maxCachedTranscripts
|
|
|
|
for index in 0..<(bound + 5) {
|
|
await store.storeTranscript(
|
|
sessionKey: "s\(index)",
|
|
messages: [cacheMessage(role: "user", text: "m\(index)", timestamp: Double(index))])
|
|
}
|
|
|
|
// The five oldest transcripts were evicted; the newest ones remain.
|
|
for index in 0..<5 {
|
|
#expect(await store.loadTranscript(sessionKey: "s\(index)").isEmpty)
|
|
}
|
|
for index in 5..<(bound + 5) {
|
|
#expect(await !(store.loadTranscript(sessionKey: "s\(index)").isEmpty))
|
|
}
|
|
}
|
|
|
|
@Test func `transcripts are scoped per gateway identity`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let storeA = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
let storeB = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-b")
|
|
|
|
await storeA.storeTranscript(
|
|
sessionKey: "main",
|
|
messages: [cacheMessage(role: "user", text: "gateway A secret", timestamp: 1)])
|
|
await storeA.storeSessions([cacheSessionEntry(key: "main", updatedAt: 1)])
|
|
|
|
#expect(await storeB.loadTranscript(sessionKey: "main").isEmpty)
|
|
#expect(await storeB.loadSessions().isEmpty)
|
|
|
|
await storeB.storeTranscript(
|
|
sessionKey: "main",
|
|
messages: [cacheMessage(role: "user", text: "gateway B", timestamp: 2)])
|
|
#expect(await messageTexts(storeA.loadTranscript(sessionKey: "main")) == ["gateway A secret"])
|
|
#expect(await messageTexts(storeB.loadTranscript(sessionKey: "main")) == ["gateway B"])
|
|
}
|
|
|
|
@Test func `empty transcript store clears cached row`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
|
|
await store.storeTranscript(
|
|
sessionKey: "main",
|
|
messages: [cacheMessage(role: "user", text: "old", timestamp: 1)])
|
|
await store.storeTranscript(sessionKey: "main", messages: [])
|
|
#expect(await store.loadTranscript(sessionKey: "main").isEmpty)
|
|
}
|
|
|
|
@Test func `reset retirement permits physical removal of all gateway rows`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let storeA = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
let storeB = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-b")
|
|
await storeA.storeTranscript(
|
|
sessionKey: "main",
|
|
messages: [cacheMessage(role: "user", text: "gateway A", timestamp: 1)])
|
|
await storeA.storeSessions([cacheSessionEntry(key: "main", updatedAt: 1)])
|
|
await storeB.storeTranscript(
|
|
sessionKey: "main",
|
|
messages: [cacheMessage(role: "user", text: "gateway B", timestamp: 2)])
|
|
|
|
await storeA.retire()
|
|
await storeB.retire()
|
|
OpenClawChatSQLiteTranscriptCache.removeDatabaseFiles(at: url)
|
|
await storeA.storeTranscript(
|
|
sessionKey: "main",
|
|
messages: [cacheMessage(role: "user", text: "late write", timestamp: 3)])
|
|
|
|
let readerA = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
let readerB = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-b")
|
|
#expect(await storeA.loadTranscript(sessionKey: "main").isEmpty)
|
|
#expect(await storeA.loadSessions().isEmpty)
|
|
#expect(await readerA.loadTranscript(sessionKey: "main").isEmpty)
|
|
#expect(await readerB.loadTranscript(sessionKey: "main").isEmpty)
|
|
}
|
|
|
|
@Test func `removing one gateway database preserves another`() async throws {
|
|
let urlA = try makeDatabaseURL()
|
|
let directory = urlA.deletingLastPathComponent()
|
|
let urlB = directory.appendingPathComponent("chat-cache-b.sqlite", isDirectory: false)
|
|
defer { try? FileManager.default.removeItem(at: directory) }
|
|
let storeA = OpenClawChatSQLiteTranscriptCache(databaseURL: urlA, gatewayID: "gw-a")
|
|
let storeB = OpenClawChatSQLiteTranscriptCache(databaseURL: urlB, gatewayID: "gw-b")
|
|
await storeA.storeSessions([cacheSessionEntry(key: "a", updatedAt: 1)])
|
|
await storeA.storeTranscript(
|
|
sessionKey: "a",
|
|
messages: [cacheMessage(role: "user", text: "gateway A", timestamp: 1)])
|
|
await storeB.storeSessions([cacheSessionEntry(key: "b", updatedAt: 2)])
|
|
await storeB.storeTranscript(
|
|
sessionKey: "b",
|
|
messages: [cacheMessage(role: "user", text: "gateway B", timestamp: 2)])
|
|
|
|
await storeA.retire()
|
|
OpenClawChatSQLiteTranscriptCache.removeDatabaseFiles(at: urlA)
|
|
|
|
let readerA = OpenClawChatSQLiteTranscriptCache(databaseURL: urlA, gatewayID: "gw-a")
|
|
#expect(await readerA.loadSessions().isEmpty)
|
|
#expect(await readerA.loadTranscript(sessionKey: "a").isEmpty)
|
|
#expect(await storeB.loadSessions().map(\.key) == ["b"])
|
|
#expect(await messageTexts(storeB.loadTranscript(sessionKey: "b")) == ["gateway B"])
|
|
}
|
|
|
|
@Test func `attachment payloads are not persisted`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
|
|
let message = OpenClawChatMessage(
|
|
role: "user",
|
|
content: [
|
|
OpenClawChatMessageContent(
|
|
type: "text",
|
|
text: "See attached.",
|
|
mimeType: nil,
|
|
fileName: nil,
|
|
content: nil),
|
|
OpenClawChatMessageContent(
|
|
type: "image",
|
|
text: nil,
|
|
mimeType: "image/png",
|
|
fileName: "photo.png",
|
|
content: AnyCodable("aGVsbG8tYmluYXJ5LWJsb2I=")),
|
|
],
|
|
timestamp: 1000)
|
|
await store.storeTranscript(sessionKey: "main", messages: [message])
|
|
|
|
let loaded = await store.loadTranscript(sessionKey: "main")
|
|
let items = try #require(loaded.first?.content)
|
|
#expect(items.count == 2)
|
|
// Text and small descriptors survive; binary payloads never hit disk.
|
|
#expect(items[0].text == "See attached.")
|
|
#expect(items[1].fileName == "photo.png")
|
|
#expect(items[1].content == nil)
|
|
}
|
|
|
|
@Test func `schema version mismatch drops and rebuilds silently`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
do {
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
await store.storeTranscript(
|
|
sessionKey: "main",
|
|
messages: [cacheMessage(role: "user", text: "old-schema", timestamp: 1)])
|
|
}
|
|
|
|
var raw: OpaquePointer?
|
|
#expect(sqlite3_open(url.path, &raw) == SQLITE_OK)
|
|
#expect(sqlite3_exec(raw, "PRAGMA user_version = 99", nil, nil, nil) == SQLITE_OK)
|
|
sqlite3_close_v2(raw)
|
|
|
|
let rebuilt = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
#expect(await rebuilt.loadTranscript(sessionKey: "main").isEmpty)
|
|
|
|
// Rebuilt store is fully functional again.
|
|
await rebuilt.storeTranscript(
|
|
sessionKey: "main",
|
|
messages: [cacheMessage(role: "user", text: "fresh", timestamp: 2)])
|
|
#expect(await messageTexts(rebuilt.loadTranscript(sessionKey: "main")) == ["fresh"])
|
|
}
|
|
|
|
@Test func `corrupt database file drops and rebuilds silently`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
try Data("this is not a sqlite database".utf8).write(to: url)
|
|
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
#expect(await store.loadTranscript(sessionKey: "main").isEmpty)
|
|
await store.storeTranscript(
|
|
sessionKey: "main",
|
|
messages: [cacheMessage(role: "user", text: "recovered", timestamp: 1)])
|
|
#expect(await messageTexts(store.loadTranscript(sessionKey: "main")) == ["recovered"])
|
|
}
|
|
|
|
@Test func `undecodable row is dropped and treated as miss`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
await store.storeTranscript(
|
|
sessionKey: "main",
|
|
messages: [cacheMessage(role: "user", text: "seed", timestamp: 1)])
|
|
|
|
var raw: OpaquePointer?
|
|
#expect(sqlite3_open(url.path, &raw) == SQLITE_OK)
|
|
#expect(sqlite3_exec(
|
|
raw,
|
|
"UPDATE cached_transcripts SET payload = '{not json' WHERE session_key = 'main'",
|
|
nil,
|
|
nil,
|
|
nil) == SQLITE_OK)
|
|
sqlite3_close_v2(raw)
|
|
|
|
let reader = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
#expect(await reader.loadTranscript(sessionKey: "main").isEmpty)
|
|
// The bad row was deleted, not just skipped.
|
|
#expect(await reader.loadTranscript(sessionKey: "main").isEmpty)
|
|
}
|
|
}
|
|
|
|
struct ChatCommandOutboxStoreTests {
|
|
@Test func `outbox commands round trip in createdAt order across store instances`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
// Recent timestamps: rows older than the staleness gate would expire.
|
|
let now = Date().timeIntervalSince1970
|
|
do {
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
#expect(await store.enqueueCommand(
|
|
outboxCommand(id: "c-2", text: "second", thinking: "high", createdAt: now - 10)))
|
|
#expect(await store.enqueueCommand(
|
|
outboxCommand(id: "c-1", text: "first", thinking: "off", createdAt: now - 20)))
|
|
}
|
|
|
|
// New instance = simulated app relaunch: rows are durable.
|
|
let reopened = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
let loaded = await reopened.loadCommands()
|
|
#expect(loaded.map(\.id) == ["c-1", "c-2"])
|
|
#expect(loaded.map(\.text) == ["first", "second"])
|
|
#expect(loaded.map(\.thinking) == ["off", "high"])
|
|
#expect(loaded.map(\.status) == [.queued, .queued])
|
|
#expect(loaded.map(\.retryCount) == [0, 0])
|
|
#expect(loaded.map(\.lastError) == [nil, nil])
|
|
#expect(loaded.map(\.sessionKey) == ["main", "main"])
|
|
}
|
|
|
|
@Test func `claiming a deleted command returns false`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
#expect(await store.enqueueCommand(outboxCommand(id: "c-1", text: "kept")))
|
|
#expect(await store.markCommandSending(id: "c-1"))
|
|
|
|
// Deleted (or never-existing) rows must refuse the claim so a flush
|
|
// pass working from a stale snapshot cannot send them.
|
|
await store.deleteCommand(id: "c-1")
|
|
#expect(await store.markCommandSending(id: "c-1") == false)
|
|
#expect(await store.markCommandSending(id: "never-existed") == false)
|
|
}
|
|
|
|
@Test func `interrupted sending rows revert to queued on recovery`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
do {
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
#expect(await store.enqueueCommand(outboxCommand(id: "c-1", text: "in flight")))
|
|
await store.markCommandSending(id: "c-1")
|
|
#expect(await store.loadCommands().map(\.status) == [.sending])
|
|
}
|
|
|
|
// Simulated crash mid-send: a fresh process recovers the row to
|
|
// queued; the idempotency key makes the re-send safe.
|
|
let reopened = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
#expect(await reopened.recoverInterruptedSends())
|
|
#expect(await reopened.loadCommands().map(\.status) == [.queued])
|
|
|
|
// An unreachable store must report failure so callers do not burn
|
|
// their once-per-launch recovery gate while the DB is locked.
|
|
await reopened.retire()
|
|
#expect(await !reopened.recoverInterruptedSends())
|
|
}
|
|
|
|
@Test func `queued commands expire to failed at the staleness boundary`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
let now = Date().timeIntervalSince1970
|
|
let maxAge = OpenClawChatSQLiteTranscriptCache.outboxCommandMaxAge
|
|
#expect(await store.enqueueCommand(
|
|
outboxCommand(id: "c-stale", text: "stale", createdAt: now - maxAge - 60)))
|
|
#expect(await store.enqueueCommand(
|
|
outboxCommand(id: "c-fresh", text: "fresh", createdAt: now - maxAge + 60)))
|
|
|
|
let loaded = await store.loadCommands()
|
|
let stale = try #require(loaded.first { $0.id == "c-stale" })
|
|
let fresh = try #require(loaded.first { $0.id == "c-fresh" })
|
|
#expect(stale.status == .failed)
|
|
#expect(stale.lastError == OpenClawChatSQLiteTranscriptCache.outboxExpiredError)
|
|
#expect(fresh.status == .queued)
|
|
#expect(fresh.lastError == nil)
|
|
}
|
|
|
|
@Test func `enqueue refuses beyond the queue bound`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
let bound = OpenClawChatSQLiteTranscriptCache.maxQueuedCommands
|
|
|
|
for index in 0..<bound {
|
|
#expect(await store.enqueueCommand(outboxCommand(id: "c-\(index)", text: "m\(index)")))
|
|
}
|
|
#expect(await !store.enqueueCommand(outboxCommand(id: "c-overflow", text: "one too many")))
|
|
#expect(await store.loadCommands().count == bound)
|
|
|
|
// Deleting a row frees capacity again.
|
|
await store.deleteCommand(id: "c-0")
|
|
#expect(await store.enqueueCommand(outboxCommand(id: "c-after-delete", text: "fits now")))
|
|
}
|
|
|
|
@Test func `outbox rows are scoped per gateway identity`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let storeA = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
let storeB = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-b")
|
|
|
|
#expect(await storeA.enqueueCommand(outboxCommand(id: "c-a", text: "for gateway A")))
|
|
#expect(await storeB.loadCommands().isEmpty)
|
|
|
|
// Cross-gateway mutations must not leak either.
|
|
await storeB.markCommandFailed(id: "c-a", retryCount: 3, lastError: "boom")
|
|
await storeB.deleteCommand(id: "c-a")
|
|
let survivors = await storeA.loadCommands()
|
|
#expect(survivors.map(\.id) == ["c-a"])
|
|
#expect(survivors.map(\.status) == [.queued])
|
|
}
|
|
|
|
@Test func `retry and failure marks persist retry count and last error`() async throws {
|
|
let url = try makeDatabaseURL()
|
|
defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) }
|
|
let store = OpenClawChatSQLiteTranscriptCache(databaseURL: url, gatewayID: "gw-a")
|
|
#expect(await store.enqueueCommand(outboxCommand(id: "c-1", text: "retry me")))
|
|
|
|
await store.markCommandQueued(id: "c-1", retryCount: 2, lastError: "socket closed")
|
|
var loaded = await store.loadCommands()
|
|
#expect(loaded.map(\.status) == [.queued])
|
|
#expect(loaded.map(\.retryCount) == [2])
|
|
#expect(loaded.map(\.lastError) == ["socket closed"])
|
|
|
|
await store.markCommandFailed(id: "c-1", retryCount: 3, lastError: "gave up")
|
|
loaded = await store.loadCommands()
|
|
#expect(loaded.map(\.status) == [.failed])
|
|
#expect(loaded.map(\.retryCount) == [3])
|
|
#expect(loaded.map(\.lastError) == ["gave up"])
|
|
|
|
await store.deleteCommand(id: "c-1")
|
|
#expect(await store.loadCommands().isEmpty)
|
|
}
|
|
}
|