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>
61 lines
1.9 KiB
Swift
61 lines
1.9 KiB
Swift
//
|
|
// DeepLinkTests.swift
|
|
// Tests iOS
|
|
//
|
|
// TC-125, TC-126: Deep link handling.
|
|
//
|
|
|
|
import XCTest
|
|
|
|
final class DeepLinkTests: BaseUITestCase {
|
|
override var seedFixture: String? { "empty" }
|
|
override var bypassSubscription: Bool { false }
|
|
override var expireTrial: Bool { true }
|
|
|
|
/// TC-126: Opening a malformed deep link does not crash the app.
|
|
func testDeepLink_MalformedURL_NoCrash() {
|
|
let tabBar = TabBarScreen(app: app)
|
|
tabBar.assertVisible()
|
|
|
|
// Send a malformed deep link
|
|
app.open(URL(string: "reflect://invalidpath")!)
|
|
|
|
// App should still be running and responsive -- tab bar visible
|
|
tabBar.assertVisible()
|
|
|
|
// Navigate to another tab to verify full responsiveness
|
|
tabBar.tapYear()
|
|
app.element(UITestID.Paywall.yearOverlay)
|
|
.waitForExistenceOrFail(
|
|
timeout: navigationTimeout,
|
|
message: "App should be fully navigable after malformed deep link"
|
|
)
|
|
|
|
captureScreenshot(name: "deeplink_malformed_no_crash")
|
|
}
|
|
|
|
/// TC-125: reflect://subscribe opens subscription view.
|
|
func testDeepLink_Subscribe_OpensPaywall() {
|
|
let tabBar = TabBarScreen(app: app)
|
|
tabBar.assertVisible()
|
|
|
|
captureScreenshot(name: "deeplink_before_subscribe")
|
|
|
|
// Send subscribe deep link
|
|
app.open(URL(string: "reflect://subscribe")!)
|
|
|
|
// Subscription view should appear as a sheet.
|
|
// Detect the SubscriptionStoreView container.
|
|
let storeContainer = app.descendants(matching: .any)
|
|
.matching(identifier: "Subscription Store View Container")
|
|
.firstMatch
|
|
|
|
storeContainer.waitForExistenceOrFail(
|
|
timeout: 8,
|
|
message: "Subscription view should appear after reflect://subscribe deep link"
|
|
)
|
|
|
|
captureScreenshot(name: "deeplink_subscribe_result")
|
|
}
|
|
}
|