Files
clawdbot/apps/macos/Tests/ClawdbotIPCTests/ScreenshotSizeTests.swift
2026-01-08 02:36:29 +00:00

22 lines
620 B
Swift

import Foundation
import Testing
@testable import Clawdbot
@Suite
struct ScreenshotSizeTests {
@Test
func readPNGSizeReturnsDimensions() throws {
let pngBase64 =
"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/x8AAwMCAO+WZxkAAAAASUVORK5CYII="
let data = try #require(Data(base64Encoded: pngBase64))
let size = ScreenshotSize.readPNGSize(data: data)
#expect(size?.width == 1)
#expect(size?.height == 1)
}
@Test
func readPNGSizeRejectsNonPNGData() {
#expect(ScreenshotSize.readPNGSize(data: Data("nope".utf8)) == nil)
}
}