mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
39 lines
1.5 KiB
Swift
39 lines
1.5 KiB
Swift
import CoreLocation
|
|
import OpenClawIPC
|
|
import Testing
|
|
@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))
|
|
}
|
|
}
|