openclaw/apps/macos/Tests/OpenClawIPCTests/PermissionManagerTests.swift

39 lines
1.5 KiB
Swift
Raw Permalink Normal View History

import CoreLocation
import OpenClawIPC
2026-01-08 02:36:29 +00:00
import Testing
2026-01-30 03:15:10 +01:00
@testable import OpenClaw
@Suite(.serialized)
@MainActor
struct PermissionManagerTests {
@Test func `voice wake permission helpers match status`() async {
let direct = PermissionManager.voiceWakePermissionsGranted()
let ensured = await PermissionManager.ensureVoiceWakePermissions(interactive: false)
#expect(ensured == direct)
}
@Test func `status can query non interactive caps`() async {
let caps: [Capability] = [.microphone, .speechRecognition, .screenRecording]
let status = await PermissionManager.status(caps)
#expect(status.keys.count == caps.count)
}
@Test func `ensure non interactive does not throw`() async {
let caps: [Capability] = [.microphone, .speechRecognition, .screenRecording]
let ensured = await PermissionManager.ensure(caps, interactive: false)
#expect(ensured.keys.count == caps.count)
}
@Test func `location status matches authorization always`() async {
let status = CLLocationManager().authorizationStatus
let results = await PermissionManager.status([.location])
#expect(results[.location] == (status == .authorizedAlways))
}
@Test func `ensure location non interactive matches authorization always`() async {
let status = CLLocationManager().authorizationStatus
let ensured = await PermissionManager.ensure([.location], interactive: false)
#expect(ensured[.location] == (status == .authorizedAlways))
}
}