mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
41 lines
1.6 KiB
Swift
41 lines
1.6 KiB
Swift
import Testing
|
|
@testable import OpenClaw
|
|
|
|
struct DeviceModelCatalogTests {
|
|
@Test
|
|
func `symbol prefers model identifier prefixes`() {
|
|
#expect(DeviceModelCatalog
|
|
.symbol(deviceFamily: "iPad", modelIdentifier: "iPad16,6", friendlyName: nil) == "ipad")
|
|
#expect(DeviceModelCatalog
|
|
.symbol(deviceFamily: "iPhone", modelIdentifier: "iPhone17,3", friendlyName: nil) == "iphone")
|
|
}
|
|
|
|
@Test
|
|
func `symbol uses friendly name for mac variants`() {
|
|
#expect(DeviceModelCatalog.symbol(
|
|
deviceFamily: "Mac",
|
|
modelIdentifier: "Mac99,1",
|
|
friendlyName: "Mac Studio (2025)") == "macstudio")
|
|
#expect(DeviceModelCatalog.symbol(
|
|
deviceFamily: "Mac",
|
|
modelIdentifier: "Mac99,2",
|
|
friendlyName: "Mac mini (2024)") == "macmini")
|
|
#expect(DeviceModelCatalog.symbol(
|
|
deviceFamily: "Mac",
|
|
modelIdentifier: "Mac99,3",
|
|
friendlyName: "MacBook Pro (14-inch, 2024)") == "laptopcomputer")
|
|
}
|
|
|
|
@Test
|
|
func `symbol falls back to device family`() {
|
|
#expect(DeviceModelCatalog.symbol(deviceFamily: "Android", modelIdentifier: "", friendlyName: nil) == "android")
|
|
#expect(DeviceModelCatalog.symbol(deviceFamily: "Linux", modelIdentifier: "", friendlyName: nil) == "cpu")
|
|
}
|
|
|
|
@Test
|
|
func `presentation uses bundled model mappings`() {
|
|
let presentation = DeviceModelCatalog.presentation(deviceFamily: "iPhone", modelIdentifier: "iPhone1,1")
|
|
#expect(presentation?.title == "iPhone")
|
|
}
|
|
}
|