Files
openclaw/apps/macos/Tests/OpenClawIPCTests/LogLocatorTests.swift

25 lines
748 B
Swift
Raw Normal View History

import Darwin
import Foundation
import Testing
2026-01-30 03:15:10 +01:00
@testable import OpenClaw
@Suite struct LogLocatorTests {
@Test func launchdGatewayLogPathEnsuresTmpDirExists() throws {
let fm = FileManager()
let baseDir = URL(fileURLWithPath: NSTemporaryDirectory(), isDirectory: true)
2026-01-30 03:15:10 +01:00
let logDir = baseDir.appendingPathComponent("openclaw-tests-\(UUID().uuidString)")
2026-01-30 03:15:10 +01:00
setenv("OPENCLAW_LOG_DIR", logDir.path, 1)
defer {
2026-01-30 03:15:10 +01:00
unsetenv("OPENCLAW_LOG_DIR")
try? fm.removeItem(at: logDir)
}
_ = LogLocator.launchdGatewayLogPath
var isDir: ObjCBool = false
#expect(fm.fileExists(atPath: logDir.path, isDirectory: &isDir))
#expect(isDir.boolValue == true)
}
}