Add ez-assistant and kerberos service folders

This commit is contained in:
kelin
2026-02-11 14:56:03 -05:00
parent e4e8ae1b87
commit 9ccfb36923
4471 changed files with 746463 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import Testing
@testable import Moltbot
@Suite struct CameraCaptureServiceTests {
@Test func normalizeSnapDefaults() {
let res = CameraCaptureService.normalizeSnap(maxWidth: nil, quality: nil)
#expect(res.maxWidth == 1600)
#expect(res.quality == 0.9)
}
@Test func normalizeSnapClampsValues() {
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)
}
}