agent-desktop/tests/fixture-app/FixtureAsync.swift
Lahfir 3f322728b4
feat!: implement Playwright-grade foundation contract
Settle the Playwright-grade reliability contract in agent-desktop-core
before the Windows/Linux adapters are built, so they inherit it instead
of redesigning it. Every command now observes, waits, verifies, and
reports honestly instead of firing blindly.

Highlights: capability-supertrait split of PlatformAdapter with
not_supported() defaults; canonical role/state vocabulary with live
`is --property visible`; display enumeration (`list-displays`) and honest
`--screen` with scale factor; truthful Automation permission; `native_id`
identity spine; window-id-first resolution; serializable `LocatorQuery`
with live `find`; default-on auto-wait before every ref action; three-way
`hit_test` occlusion gate; `scroll_into_view` in core; core accessible-name
precedence; typed `ActionStep` delivery tier; `ProcessState` and
`APP_UNRESPONSIVE`; `LaunchOptions`; baseline-diff desktop signals
(`wait --event`); typed clipboard (`Text`/`Image`/`FileUrls`); mouse
modifier chords and `mouse-wheel`. Hardened through a 35-reviewer pass with
independent validation and a green live e2e gate (109/0), plus a
head-vs-main performance comparison harness.

BREAKING CHANGE: default-on auto-wait changes the timing of every
previously-untouched ref-action call (bounded 5000 ms default; `--timeout-ms 0`
restores single-shot). `ENVELOPE_VERSION` is now `2.1` (adds the
`APP_UNRESPONSIVE` code and process state in error details). FFI ABI major
is `3` (append-only struct evolution; `wait --event` is intentionally not
exposed over FFI). The legacy string clipboard API is removed in favor of
typed content. `key-down`/`key-up` fail closed until daemon-owned held input
exists. `close-app` verifies termination and the osascript fallback path is
removed. `--text` matching is subtree containment: `find --text X --first`
returns the outermost matching container.
2026-07-20 00:21:38 -07:00

70 lines
2.7 KiB
Swift

import SwiftUI
struct AsyncFixtureCard: View {
@Binding var delayedEnabled: Bool
@Binding var delayedText: String
@Binding var delayedActionCount: Int
@Binding var appearedText: String
@Binding var removableVisible: Bool
var body: some View {
Card(title: "Async & Dynamic") {
Button("Enable Later") {
DispatchQueue.main.asyncAfter(deadline: .now() + 0.8) {
delayedEnabled = true
delayedText = "ready"
}
}
.accessibilityLabel("enable-later")
.accessibilityIdentifier("enable-later")
Button("Delayed Button") { delayedActionCount += 1 }
.disabled(!delayedEnabled)
.accessibilityLabel("delayed-button")
.accessibilityIdentifier("delayed-button")
StatusReadout(name: "delayed-text", value: delayedText)
StatusReadout(name: "delayed-action-status", value: String(delayedActionCount))
Button("Reset Delayed Button") {
delayedEnabled = false
delayedText = "waiting"
delayedActionCount = 0
}
.accessibilityLabel("reset-delayed-button")
.accessibilityIdentifier("reset-delayed-button")
Button("Permanently Disabled") { delayedActionCount += 100 }
.disabled(true)
.accessibilityLabel("permanently-disabled")
ZeroBoundsButton().frame(width: 1, height: 1)
Button("Open Duplicate Windows") {
DuplicateWindowController.shared.openWindows()
}
.accessibilityLabel("open-duplicate-windows")
Button("Close Duplicate Windows") {
DuplicateWindowController.shared.closeWindows()
}
.accessibilityLabel("close-duplicate-windows")
Button("Appear Later") {
DispatchQueue.main.asyncAfter(deadline: .now() + 1.0) {
appearedText = "appeared-text"
}
}
.accessibilityLabel("appear-later")
Button("Reset Appeared Text") { appearedText = "" }
.accessibilityLabel("reset-appeared-text")
if !appearedText.isEmpty {
Text(appearedText).accessibilityLabel("appeared-text")
}
if removableVisible {
Button("Removable Row") {}.accessibilityLabel("removable-row")
}
Button("Remove Row") { removableVisible = false }.accessibilityLabel("remove-row")
Button("Reset Removable Row") { removableVisible = true }
.accessibilityLabel("reset-removable")
}
}
}