Files
openclaw/apps/macos/Tests/OpenClawIPCTests/LogLocatorTests.swift
2026-01-30 03:16:21 +01:00

25 lines
748 B
Swift

import Darwin
import Foundation
import Testing
@testable import OpenClaw
@Suite struct LogLocatorTests {
@Test func launchdGatewayLogPathEnsuresTmpDirExists() throws {
let fm = FileManager()
let baseDir = URL(fileURLWithPath: NSTemporaryDirectory(), isDirectory: true)
let logDir = baseDir.appendingPathComponent("openclaw-tests-\(UUID().uuidString)")
setenv("OPENCLAW_LOG_DIR", logDir.path, 1)
defer {
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)
}
}