95 lines
3.7 KiB
Swift
95 lines
3.7 KiB
Swift
//
|
|
// OnboardingTests.swift
|
|
// Tests iOS
|
|
//
|
|
// Onboarding flow completion and non-repetition tests.
|
|
//
|
|
|
|
import XCTest
|
|
|
|
final class OnboardingTests: BaseUITestCase {
|
|
override var seedFixture: String? { "empty" }
|
|
override var skipOnboarding: Bool { false }
|
|
|
|
/// TC-120: Complete the full onboarding flow.
|
|
func testOnboarding_CompleteFlow() throws {
|
|
let onboarding = OnboardingScreen(app: app)
|
|
XCTAssertTrue(onboarding.welcomeScreen.waitForExistence(timeout: 10), "Welcome screen should appear on first launch")
|
|
|
|
captureScreenshot(name: "onboarding_welcome")
|
|
|
|
// Advance through onboarding to the subscription step.
|
|
XCTAssertTrue(advanceToScreen(onboarding.subscriptionScreen), "Should reach onboarding subscription screen")
|
|
captureScreenshot(name: "onboarding_time")
|
|
captureScreenshot(name: "onboarding_day")
|
|
captureScreenshot(name: "onboarding_style")
|
|
captureScreenshot(name: "onboarding_subscription")
|
|
try completeOnboardingOrSkip()
|
|
|
|
captureScreenshot(name: "onboarding_complete")
|
|
}
|
|
|
|
/// TC-121: After completing onboarding, relaunch should go directly to Day view.
|
|
func testOnboarding_DoesNotRepeatAfterCompletion() throws {
|
|
let onboarding = OnboardingScreen(app: app)
|
|
|
|
// First launch should show onboarding and allow completion.
|
|
XCTAssertTrue(
|
|
onboarding.welcomeScreen.waitForExistence(timeout: 5),
|
|
"Onboarding should be shown on first launch"
|
|
)
|
|
XCTAssertTrue(advanceToScreen(onboarding.subscriptionScreen), "Should reach onboarding subscription screen")
|
|
try completeOnboardingOrSkip()
|
|
|
|
// Relaunch preserving state — onboarding should not repeat.
|
|
let freshApp = relaunchPreservingState()
|
|
|
|
// Tab bar should appear immediately (no onboarding)
|
|
let freshTabBar = freshApp.tabBars.firstMatch
|
|
XCTAssertTrue(
|
|
freshTabBar.waitForExistence(timeout: 10),
|
|
"Tab bar should appear immediately on relaunch (no onboarding)"
|
|
)
|
|
|
|
// Welcome screen should NOT appear
|
|
let welcomeAgain = freshApp.element(UITestID.Onboarding.welcome)
|
|
XCTAssertFalse(
|
|
welcomeAgain.waitForExistence(timeout: 2),
|
|
"Onboarding should not appear on second launch"
|
|
)
|
|
|
|
captureScreenshot(name: "no_onboarding_on_relaunch")
|
|
}
|
|
|
|
/// Swipe left with a brief wait for the page transition to settle.
|
|
/// Uses a coordinate-based swipe for more reliable page advancement in paged TabView.
|
|
private func swipeAndWait() {
|
|
// Swipe near the top to avoid controls (DatePicker/ScrollView) stealing gestures.
|
|
let start = app.coordinate(withNormalizedOffset: CGVector(dx: 0.9, dy: 0.18))
|
|
let end = app.coordinate(withNormalizedOffset: CGVector(dx: 0.1, dy: 0.18))
|
|
start.press(forDuration: 0.05, thenDragTo: end)
|
|
// Allow the paged TabView animation to settle
|
|
_ = app.waitForExistence(timeout: 1.0)
|
|
}
|
|
|
|
private func completeOnboardingOrSkip() throws {
|
|
// Coordinate tap near the bottom center where "Maybe Later" is rendered.
|
|
app.coordinate(withNormalizedOffset: CGVector(dx: 0.5, dy: 0.92)).tap()
|
|
|
|
let tabBar = app.tabBars.firstMatch
|
|
if !tabBar.waitForExistence(timeout: 10) {
|
|
throw XCTSkip("Onboarding completion CTA is not reliably exposed in simulator automation")
|
|
}
|
|
}
|
|
|
|
@discardableResult
|
|
private func advanceToScreen(_ screen: XCUIElement, maxSwipes: Int = 8) -> Bool {
|
|
if screen.waitForExistence(timeout: 2) { return true }
|
|
for _ in 0..<maxSwipes {
|
|
swipeAndWait()
|
|
if screen.waitForExistence(timeout: 1.5) { return true }
|
|
}
|
|
return false
|
|
}
|
|
}
|