mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-13 11:00:50 +00:00
21 lines
659 B
Swift
21 lines
659 B
Swift
import Testing
|
|
@testable import OpenClaw
|
|
|
|
struct CameraCaptureServiceTests {
|
|
@Test func `normalize snap defaults`() {
|
|
let res = CameraCaptureService.normalizeSnap(maxWidth: nil, quality: nil)
|
|
#expect(res.maxWidth == 1600)
|
|
#expect(res.quality == 0.9)
|
|
}
|
|
|
|
@Test func `normalize snap clamps values`() {
|
|
let low = CameraCaptureService.normalizeSnap(maxWidth: -1, quality: -10)
|
|
#expect(low.maxWidth == 1600)
|
|
#expect(low.quality == 0.05)
|
|
|
|
let high = CameraCaptureService.normalizeSnap(maxWidth: 9999, quality: 10)
|
|
#expect(high.maxWidth == 9999)
|
|
#expect(high.quality == 1.0)
|
|
}
|
|
}
|