mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-10 19:34:59 +00:00
Mac: finish Moltbot rename (paths)
This commit is contained in:
21
apps/macos/Tests/MoltbotIPCTests/ScreenshotSizeTests.swift
Normal file
21
apps/macos/Tests/MoltbotIPCTests/ScreenshotSizeTests.swift
Normal file
@@ -0,0 +1,21 @@
|
||||
import Foundation
|
||||
import Testing
|
||||
@testable import Moltbot
|
||||
|
||||
@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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user