Rewrote 60+ test files to follow honeydue-style test guidelines:
- defaultTimeout=2s, navigationTimeout=5s — fail fast, no long waits
- No coordinate taps (except onboarding paged TabView swipes)
- No sleep(), no retry loops
- No guard...else { return } silent passes — XCTFail everywhere
- All elements by accessibility ID via UITestID constants
- Screen objects for all navigation/actions/assertions
- One logical assertion per test method
Added missing accessibility identifiers to app views:
- MonthView.swift: added AccessibilityID.MonthView.grid to ScrollView
- YearView.swift: added AccessibilityID.YearView.heatmap to ScrollView
Framework rewrites:
- BaseUITestCase: added session ID, localeArguments, extraLaunchArguments
- WaitHelpers: waitForExistenceOrFail, waitUntilHittableOrFail,
waitForNonExistence, scrollIntoView, forceTap
- All 7 screen objects rewritten with fail-fast semantics
- TEST_RULES.md added with non-negotiable rules
Known remaining issues:
- OnboardingTests: paged TabView swipes unreliable on iOS 26 simulator
- SettingsLegalLinksTests: EULA/Privacy buttons too deep in DEBUG scroll
- Customization horizontal picker scrolling needs further tuning
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
41 lines
1.3 KiB
Swift
41 lines
1.3 KiB
Swift
//
|
|
// HierarchyDumpTest.swift
|
|
// Tests iOS
|
|
//
|
|
// Debug helper: dumps the accessibility hierarchy for inspection.
|
|
//
|
|
|
|
import XCTest
|
|
|
|
final class HierarchyDumpTest: BaseUITestCase {
|
|
|
|
/// Dump the accessibility tree for debug inspection.
|
|
func testDumpAccessibilityTree() {
|
|
// Wait for the app to settle
|
|
let tabBar = TabBarScreen(app: app)
|
|
tabBar.assertVisible()
|
|
|
|
print("\n=== ELEMENT QUERIES ===")
|
|
print("otherElements[mood_header]: \(app.otherElements[UITestID.Day.moodHeader].exists)")
|
|
print("descendants[mood_header]: \(app.element(UITestID.Day.moodHeader).exists)")
|
|
print("buttons[mood_button_great]: \(app.buttons["mood_button_great"].exists)")
|
|
print("tabBars count: \(app.tabBars.count)")
|
|
if app.tabBars.count > 0 {
|
|
let tb = app.tabBars.firstMatch
|
|
for b in tb.buttons.allElementsBoundByIndex {
|
|
print(" tab button: \(b.identifier) label=\(b.label)")
|
|
}
|
|
}
|
|
|
|
print("\n=== HIERARCHY (first 200 lines) ===")
|
|
let desc = app.debugDescription
|
|
let lines = desc.components(separatedBy: "\n")
|
|
for (i, line) in lines.prefix(200).enumerated() {
|
|
print("\(i): \(line)")
|
|
}
|
|
|
|
// Always pass -- this is a debug/diagnostic test
|
|
XCTAssertTrue(true)
|
|
}
|
|
}
|