Fix root causes uncovered across repeated parallel runs: - Admin seed password "test1234" failed backend complexity (needs uppercase). Bumped to "Test1234" across every hard-coded reference (AuthenticatedUITestCase default, TestAccountManager seeded-login default, Tests/*Integration suites, Tests/DataLayer, OnboardingTests). - dismissKeyboard() tapped the Return key first, which races SwiftUI's TextField binding on numeric keyboards (postal, year built) and complex forms. KeyboardDismisser now prefers the keyboard-toolbar Done button, falls back to tap-above-keyboard, then keyboard Return. BaseUITestCase.clearAndEnterText uses the same helper. - Form page-object save() helpers (task / residence / contractor / document) now dismiss the keyboard and scroll the submit button into view before tapping, eliminating Suite4/6/7/8 "save button stayed visible" timeouts. - Suite6 createTask was producing a disabled-save race: under parallel contention the SwiftUI title binding lagged behind XCUITest typing. Rewritten to inline Suite5's proven pattern with a retry that nudges the title binding via a no-op edit when Add is disabled, and an explicit refreshTasks after creation. - Suite8 selectProperty now picks the residence by name (works with menu, list, or wheel picker variants) — avoids bad form-cell taps when the picker hasn't fully rendered. - run_ui_tests.sh uses 2 workers instead of 4 (4-worker contention caused XCUITest typing races across Suite5/7/8) and isolates Suite6 in its own 2-worker phase after the main parallel phase. - Add AAA_SeedTests / SuiteZZ_CleanupTests: the runner's Phase 1 (seed) and Phase 3 (cleanup) depend on these and they were missing from version control.
856 lines
37 KiB
Swift
856 lines
37 KiB
Swift
import XCTest
|
|
|
|
private enum DataLayerTestError: Error {
|
|
case taskFormNotAvailable
|
|
}
|
|
|
|
/// Integration tests for the data layer covering caching, ETag, logout cleanup, persistence, and lookup consistency.
|
|
///
|
|
/// Test Plan IDs: DATA-001 through DATA-007.
|
|
/// All tests run against the real local backend via `AuthenticatedUITestCase` with UI-driven login.
|
|
final class DataLayerTests: AuthenticatedUITestCase {
|
|
override var needsAPISession: Bool { true }
|
|
override var testCredentials: (username: String, password: String) { ("admin", "Test1234") }
|
|
override var apiCredentials: (username: String, password: String) { ("admin", "Test1234") }
|
|
// Tests 08/09 restart the app (testing persistence) — relaunch ensures clean state for subsequent tests
|
|
override var relaunchBetweenTests: Bool { true }
|
|
|
|
// MARK: - Re-login Helper (for tests that logout or restart the app)
|
|
|
|
/// Navigate to login screen, type credentials, wait for main tabs.
|
|
/// Used after logout or app restart within test methods.
|
|
private func loginViaUI() {
|
|
let mainTabs = app.otherElements[UITestID.Root.mainTabs]
|
|
let tabBar = app.tabBars.firstMatch
|
|
if mainTabs.waitForExistence(timeout: 3) || tabBar.waitForExistence(timeout: 2) {
|
|
return
|
|
}
|
|
|
|
UITestHelpers.ensureOnLoginScreen(app: app)
|
|
let login = LoginScreenObject(app: app)
|
|
login.waitForLoad(timeout: defaultTimeout)
|
|
login.enterUsername("admin")
|
|
login.enterPassword("Test1234")
|
|
app.buttons[AccessibilityIdentifiers.Authentication.loginButton].waitForExistenceOrFail(timeout: defaultTimeout).forceTap()
|
|
|
|
let verificationScreen = VerificationScreen(app: app)
|
|
let deadline = Date().addingTimeInterval(loginTimeout)
|
|
while Date() < deadline {
|
|
if mainTabs.exists || tabBar.exists { break }
|
|
if verificationScreen.codeField.exists {
|
|
verificationScreen.enterCode(TestAccountAPIClient.debugVerificationCode)
|
|
verificationScreen.submitCode()
|
|
_ = mainTabs.waitForExistence(timeout: loginTimeout) || tabBar.waitForExistence(timeout: 5)
|
|
break
|
|
}
|
|
RunLoop.current.run(until: Date().addingTimeInterval(0.5))
|
|
}
|
|
XCTAssertTrue(mainTabs.exists || tabBar.exists, "Expected main app after login")
|
|
}
|
|
|
|
// MARK: - DATA-001: Lookups Initialize After Login
|
|
|
|
func testDATA001_LookupsInitializeAfterLogin() throws {
|
|
// After setUp, the app is logged in and on main tabs.
|
|
// Navigate to tasks and open the create form to verify pickers are populated.
|
|
navigateToTasks()
|
|
try openTaskForm()
|
|
|
|
// Verify category picker (visible near top of form)
|
|
let categoryPicker = findPicker(AccessibilityIdentifiers.Task.categoryPicker)
|
|
XCTAssertTrue(
|
|
categoryPicker.waitForExistence(timeout: defaultTimeout),
|
|
"Category picker should exist in task form, indicating lookups loaded"
|
|
)
|
|
|
|
// Scroll down to reveal pickers below the fold
|
|
let formScrollView = app.scrollViews.firstMatch.exists ? app.scrollViews.firstMatch : app.collectionViews.firstMatch
|
|
if formScrollView.exists {
|
|
formScrollView.swipeUp()
|
|
}
|
|
|
|
// Verify priority picker (may be below fold)
|
|
let priorityPicker = findPicker(AccessibilityIdentifiers.Task.priorityPicker)
|
|
XCTAssertTrue(
|
|
priorityPicker.waitForExistence(timeout: defaultTimeout),
|
|
"Priority picker should exist in task form, indicating lookups loaded"
|
|
)
|
|
|
|
// Verify frequency picker
|
|
let frequencyPicker = findPicker(AccessibilityIdentifiers.Task.frequencyPicker)
|
|
XCTAssertTrue(
|
|
frequencyPicker.waitForExistence(timeout: defaultTimeout),
|
|
"Frequency picker should exist in task form, indicating lookups loaded"
|
|
)
|
|
|
|
cancelTaskForm()
|
|
}
|
|
|
|
// MARK: - DATA-002: ETag Refresh Handles 304
|
|
|
|
func testDATA002_ETagRefreshHandles304() throws {
|
|
// Verify that a second visit to a lookup-dependent form still shows data.
|
|
// If ETag / 304 handling were broken, the second load would show empty pickers.
|
|
|
|
// First: verify the endpoint supports ETag (skip if backend doesn't implement it)
|
|
guard let url = URL(string: "\(TestAccountAPIClient.baseURL)/static_data/") else {
|
|
throw XCTSkip("Invalid URL")
|
|
}
|
|
var request = URLRequest(url: url)
|
|
request.httpMethod = "GET"
|
|
request.timeoutInterval = 15
|
|
let semaphore = DispatchSemaphore(value: 0)
|
|
var etag: String?
|
|
URLSession.shared.dataTask(with: request) { _, response, _ in
|
|
defer { semaphore.signal() }
|
|
etag = (response as? HTTPURLResponse)?.allHeaderFields["Etag"] as? String
|
|
}.resume()
|
|
semaphore.wait()
|
|
guard etag != nil else {
|
|
throw XCTSkip("Backend does not return ETag header for static_data — skipping 304 test")
|
|
}
|
|
|
|
// Open task form → verify pickers populated → close
|
|
navigateToTasks()
|
|
try openTaskForm()
|
|
assertTaskFormPickersPopulated()
|
|
cancelTaskForm()
|
|
|
|
// Navigate away and back — triggers a cache check.
|
|
navigateToResidences()
|
|
navigateToTasks()
|
|
|
|
// Open form again and verify pickers still populated (caching path worked)
|
|
try openTaskForm()
|
|
assertTaskFormPickersPopulated()
|
|
cancelTaskForm()
|
|
}
|
|
|
|
// MARK: - DATA-003: Legacy Fallback When Seeded Endpoint Unavailable
|
|
|
|
func testDATA003_LegacyFallbackStillLoadsCoreLookups() throws {
|
|
// The app uses /api/static_data/ as the primary seeded endpoint.
|
|
// If it fails, there's a fallback that still loads core lookup types.
|
|
// Verify the core lookups are available by checking that UI pickers
|
|
// in both the task form and contractor form are populated.
|
|
|
|
// Verify lookups are populated in the app UI (proves the app loaded them)
|
|
navigateToTasks()
|
|
try openTaskForm()
|
|
assertTaskFormPickersPopulated()
|
|
|
|
// Also verify contractor specialty picker in contractor form
|
|
cancelTaskForm()
|
|
navigateToContractors()
|
|
|
|
let contractorAddButton = app.buttons[AccessibilityIdentifiers.Contractor.addButton].firstMatch
|
|
let contractorEmptyState = app.otherElements[AccessibilityIdentifiers.Contractor.emptyStateView]
|
|
let contractorList = app.otherElements[AccessibilityIdentifiers.Contractor.contractorsList]
|
|
|
|
let contractorLoaded = contractorAddButton.waitForExistence(timeout: defaultTimeout)
|
|
|| contractorEmptyState.waitForExistence(timeout: 3)
|
|
|| contractorList.waitForExistence(timeout: 3)
|
|
XCTAssertTrue(contractorLoaded, "Contractors screen should load")
|
|
|
|
if contractorAddButton.exists && contractorAddButton.isHittable {
|
|
contractorAddButton.forceTap()
|
|
} else {
|
|
let emptyAddButton = app.buttons.containing(
|
|
NSPredicate(format: "label CONTAINS[c] 'Add' OR label CONTAINS[c] 'Create'")
|
|
).firstMatch
|
|
emptyAddButton.waitForExistenceOrFail(timeout: defaultTimeout)
|
|
emptyAddButton.forceTap()
|
|
}
|
|
|
|
let specialtyPicker = app.buttons[AccessibilityIdentifiers.Contractor.specialtyPicker]
|
|
.exists ? app.buttons[AccessibilityIdentifiers.Contractor.specialtyPicker]
|
|
: app.otherElements[AccessibilityIdentifiers.Contractor.specialtyPicker]
|
|
|
|
XCTAssertTrue(
|
|
specialtyPicker.waitForExistence(timeout: defaultTimeout),
|
|
"Contractor specialty picker should exist, proving contractor_specialties loaded"
|
|
)
|
|
|
|
let contractorCancelButton = app.buttons[AccessibilityIdentifiers.Contractor.formCancelButton]
|
|
if contractorCancelButton.exists && contractorCancelButton.isHittable {
|
|
contractorCancelButton.forceTap()
|
|
}
|
|
}
|
|
|
|
// MARK: - DATA-004: Cache Timeout and Force Refresh
|
|
|
|
func testDATA004_CacheTimeoutAndForceRefresh() {
|
|
// Seed data via API so we have something to verify in the cache
|
|
let residence = cleaner.seedResidence(name: "Cache Test \(Int(Date().timeIntervalSince1970))")
|
|
|
|
// Navigate to residences — data should appear from cache or initial load
|
|
navigateToResidences()
|
|
|
|
let residenceText = app.staticTexts[residence.name]
|
|
pullToRefreshUntilVisible(residenceText)
|
|
XCTAssertTrue(
|
|
residenceText.waitForExistence(timeout: loginTimeout),
|
|
"Seeded residence should appear in list (initial cache load)"
|
|
)
|
|
|
|
// Navigate away and back — cached data should still be available immediately
|
|
navigateToTasks()
|
|
navigateToResidences()
|
|
|
|
XCTAssertTrue(
|
|
residenceText.waitForExistence(timeout: defaultTimeout),
|
|
"Seeded residence should still appear after tab switch (data served from cache)"
|
|
)
|
|
|
|
// Seed a second residence via API while we're on the residences tab
|
|
let residence2 = cleaner.seedResidence(name: "Cache Test 2 \(Int(Date().timeIntervalSince1970))")
|
|
|
|
// Without refresh, the new residence may not appear (stale cache)
|
|
// Pull-to-refresh should force a fresh fetch
|
|
let scrollView = app.scrollViews.firstMatch.exists ? app.scrollViews.firstMatch : app.collectionViews.firstMatch
|
|
let listElement = scrollView.exists ? scrollView : app.otherElements[AccessibilityIdentifiers.Residence.residencesList]
|
|
|
|
// Perform pull-to-refresh gesture
|
|
let start = listElement.coordinate(withNormalizedOffset: CGVector(dx: 0.5, dy: 0.15))
|
|
let finish = listElement.coordinate(withNormalizedOffset: CGVector(dx: 0.5, dy: 0.85))
|
|
start.press(forDuration: 0.1, thenDragTo: finish)
|
|
|
|
let residence2Text = app.staticTexts[residence2.name]
|
|
XCTAssertTrue(
|
|
residence2Text.waitForExistence(timeout: loginTimeout),
|
|
"Second residence should appear after pull-to-refresh (forced fresh fetch)"
|
|
)
|
|
}
|
|
|
|
// MARK: - DATA-005: Cache Invalidation on Logout
|
|
|
|
func testDATA005_LogoutClearsUserDataButRetainsTheme() {
|
|
// Seed data so there's something to clear
|
|
let residence = cleaner.seedResidence(name: "Logout Test \(Int(Date().timeIntervalSince1970))")
|
|
let _ = cleaner.seedTask(residenceId: residence.id, title: "Logout Task \(Int(Date().timeIntervalSince1970))")
|
|
|
|
// Verify data is visible
|
|
navigateToResidences()
|
|
let residenceText = app.staticTexts[residence.name]
|
|
pullToRefreshUntilVisible(residenceText)
|
|
XCTAssertTrue(
|
|
residenceText.waitForExistence(timeout: loginTimeout),
|
|
"Seeded data should be visible before logout"
|
|
)
|
|
|
|
// Perform logout via UI
|
|
performLogout()
|
|
|
|
// Verify we're on login screen (user data cleared, session invalidated)
|
|
let usernameField = app.textFields[AccessibilityIdentifiers.Authentication.usernameField]
|
|
XCTAssertTrue(
|
|
usernameField.waitForExistence(timeout: loginTimeout),
|
|
"Should be on login screen after logout"
|
|
)
|
|
|
|
// Verify main tabs are NOT accessible (data cleared)
|
|
let mainTabs = app.otherElements[UITestID.Root.mainTabs]
|
|
XCTAssertFalse(mainTabs.exists, "Main app should not be accessible after logout")
|
|
|
|
// Re-login with the same seeded account
|
|
loginViaUI()
|
|
|
|
// After re-login, the seeded residence should still exist on backend
|
|
// but this proves the app fetched fresh data, not stale cache
|
|
navigateToResidences()
|
|
|
|
// The seeded residence from this test should appear (it's on the backend)
|
|
XCTAssertTrue(
|
|
residenceText.waitForExistence(timeout: loginTimeout),
|
|
"Data should reload after re-login (fresh fetch, not stale cache)"
|
|
)
|
|
}
|
|
|
|
// MARK: - DATA-006: Disk Persistence After App Restart
|
|
|
|
func testDATA006_LookupsPersistAfterAppRestart() throws {
|
|
// Verify lookups are loaded
|
|
navigateToTasks()
|
|
try openTaskForm()
|
|
assertTaskFormPickersPopulated()
|
|
cancelTaskForm()
|
|
|
|
// Terminate and relaunch the app
|
|
app.terminate()
|
|
|
|
// Relaunch WITHOUT --reset-state so persisted data survives
|
|
app.launchArguments = [
|
|
"--ui-testing",
|
|
"--disable-animations"
|
|
]
|
|
app.launch()
|
|
app.otherElements["ui.app.ready"].waitForExistenceOrFail(timeout: defaultTimeout)
|
|
|
|
// The app may need re-login (token persisted) or go to onboarding.
|
|
// If we land on main tabs, lookups should be available from disk.
|
|
// If we land on login, log in and then check.
|
|
let mainTabs = app.otherElements[UITestID.Root.mainTabs]
|
|
let tabBar = app.tabBars.firstMatch
|
|
let usernameField = app.textFields[AccessibilityIdentifiers.Authentication.usernameField]
|
|
let onboardingRoot = app.otherElements[UITestID.Root.onboarding]
|
|
|
|
let deadline = Date().addingTimeInterval(loginTimeout)
|
|
while Date() < deadline {
|
|
if mainTabs.exists || tabBar.exists {
|
|
break
|
|
}
|
|
if usernameField.exists {
|
|
// Need to re-login
|
|
loginViaUI()
|
|
break
|
|
}
|
|
if onboardingRoot.exists {
|
|
// Navigate to login from onboarding
|
|
let loginButton = app.buttons[AccessibilityIdentifiers.Onboarding.loginButton]
|
|
if loginButton.waitForExistence(timeout: 5) {
|
|
loginButton.forceTap()
|
|
}
|
|
if usernameField.waitForExistence(timeout: 10) {
|
|
loginViaUI()
|
|
}
|
|
break
|
|
}
|
|
// Handle email verification gate
|
|
let verificationScreen = VerificationScreen(app: app)
|
|
if verificationScreen.codeField.exists {
|
|
verificationScreen.enterCode(TestAccountAPIClient.debugVerificationCode)
|
|
verificationScreen.submitCode()
|
|
break
|
|
}
|
|
RunLoop.current.run(until: Date().addingTimeInterval(0.5))
|
|
}
|
|
|
|
// Wait for main app
|
|
let reachedMain = mainTabs.waitForExistence(timeout: loginTimeout)
|
|
|| tabBar.waitForExistence(timeout: 5)
|
|
XCTAssertTrue(reachedMain, "Should reach main app after restart")
|
|
|
|
// After restart + potential re-login, lookups should be available
|
|
// (either from disk persistence or fresh fetch after login)
|
|
navigateToTasks()
|
|
try openTaskForm()
|
|
assertTaskFormPickersPopulated()
|
|
cancelTaskForm()
|
|
}
|
|
|
|
// MARK: - DATA-007: Lookup Map/List Consistency
|
|
|
|
func testDATA007_LookupMapListConsistency() throws {
|
|
// Verify that lookup data is consistent in the app by checking that
|
|
// pickers in the task form have selectable options with non-empty labels.
|
|
// NOTE: API-level uniqueness/schema validation (unique IDs, non-empty names)
|
|
// was previously tested here via direct HTTP calls to /static_data/.
|
|
// That validation now belongs in backend API tests, not UI tests.
|
|
|
|
// Verify the app's pickers are populated by checking the task form
|
|
navigateToTasks()
|
|
try openTaskForm()
|
|
|
|
// Verify category picker has selectable options
|
|
let categoryPicker = findPicker(AccessibilityIdentifiers.Task.categoryPicker)
|
|
if categoryPicker.isHittable {
|
|
categoryPicker.forceTap()
|
|
|
|
// Count visible category options
|
|
let pickerTexts = app.staticTexts.allElementsBoundByIndex.filter {
|
|
$0.exists && !$0.label.isEmpty && $0.label != "Category"
|
|
}
|
|
XCTAssertGreaterThan(
|
|
pickerTexts.count, 0,
|
|
"Category picker should have selectable options"
|
|
)
|
|
|
|
// Dismiss picker
|
|
dismissPicker()
|
|
}
|
|
|
|
// Scroll down to reveal priority picker below the fold
|
|
let formScrollView = app.scrollViews.firstMatch.exists ? app.scrollViews.firstMatch : app.collectionViews.firstMatch
|
|
if formScrollView.exists {
|
|
formScrollView.swipeUp()
|
|
}
|
|
|
|
// Verify priority picker has selectable options
|
|
let priorityPicker = findPicker(AccessibilityIdentifiers.Task.priorityPicker)
|
|
if priorityPicker.isHittable {
|
|
priorityPicker.forceTap()
|
|
|
|
let priorityTexts = app.staticTexts.allElementsBoundByIndex.filter {
|
|
$0.exists && !$0.label.isEmpty && $0.label != "Priority"
|
|
}
|
|
XCTAssertGreaterThan(
|
|
priorityTexts.count, 0,
|
|
"Priority picker should have selectable options"
|
|
)
|
|
|
|
dismissPicker()
|
|
}
|
|
|
|
cancelTaskForm()
|
|
}
|
|
|
|
// MARK: - DATA-006 (UI): Disk Persistence Preserves Lookups After App Restart
|
|
|
|
/// test08: DATA-006 — Lookups and current user reload correctly after a real app restart.
|
|
///
|
|
/// Terminates the app and relaunches without `--reset-state` so persisted data
|
|
/// survives. After re-login the task pickers must still be populated, proving that
|
|
/// the disk persistence layer successfully seeded the in-memory DataManager.
|
|
func test08_diskPersistencePreservesLookupsAfterRestart() throws {
|
|
// Step 1: Verify lookups are loaded before the restart
|
|
navigateToTasks()
|
|
try openTaskForm()
|
|
assertTaskFormPickersPopulated()
|
|
cancelTaskForm()
|
|
|
|
// Step 2: Terminate the app — persisted data should survive on disk
|
|
app.terminate()
|
|
|
|
// Step 3: Relaunch WITHOUT --reset-state so the on-disk cache is preserved
|
|
app.launchArguments = [
|
|
"--ui-testing",
|
|
"--disable-animations"
|
|
// Intentionally omitting --reset-state
|
|
]
|
|
app.launch()
|
|
app.otherElements[UITestID.Root.ready].waitForExistenceOrFail(timeout: defaultTimeout)
|
|
|
|
// Step 4: Handle whatever landing screen the app shows after restart.
|
|
// The token may have persisted (main tabs) or expired (login screen).
|
|
let mainTabs = app.otherElements[UITestID.Root.mainTabs]
|
|
let tabBar = app.tabBars.firstMatch
|
|
let usernameField = app.textFields[AccessibilityIdentifiers.Authentication.usernameField]
|
|
let onboardingRoot = app.otherElements[UITestID.Root.onboarding]
|
|
|
|
let deadline = Date().addingTimeInterval(loginTimeout)
|
|
while Date() < deadline {
|
|
if mainTabs.exists || tabBar.exists {
|
|
break
|
|
}
|
|
if usernameField.exists {
|
|
loginViaUI()
|
|
break
|
|
}
|
|
if onboardingRoot.exists {
|
|
let loginBtn = app.buttons[AccessibilityIdentifiers.Onboarding.loginButton]
|
|
if loginBtn.waitForExistence(timeout: 5) {
|
|
loginBtn.forceTap()
|
|
}
|
|
if usernameField.waitForExistence(timeout: 10) {
|
|
loginViaUI()
|
|
}
|
|
break
|
|
}
|
|
// Handle email verification gate (new accounts only — seeded account is pre-verified)
|
|
let verificationScreen = VerificationScreen(app: app)
|
|
if verificationScreen.codeField.exists {
|
|
verificationScreen.enterCode(TestAccountAPIClient.debugVerificationCode)
|
|
verificationScreen.submitCode()
|
|
break
|
|
}
|
|
RunLoop.current.run(until: Date().addingTimeInterval(0.5))
|
|
}
|
|
|
|
let reachedMain = mainTabs.waitForExistence(timeout: loginTimeout)
|
|
|| tabBar.waitForExistence(timeout: 5)
|
|
XCTAssertTrue(reachedMain, "Should reach main app after restart and potential re-login")
|
|
|
|
// Step 5: After restart + potential re-login, lookups must still be available.
|
|
// If disk persistence works, the DataManager is seeded from disk before the
|
|
// first login-triggered fetch completes, so pickers appear immediately.
|
|
navigateToTasks()
|
|
try openTaskForm()
|
|
assertTaskFormPickersPopulated()
|
|
cancelTaskForm()
|
|
}
|
|
|
|
// MARK: - THEME-001: Theme Persistence via UI
|
|
|
|
/// test09: THEME-001 — Theme choice persists across app restarts.
|
|
///
|
|
/// Navigates to the profile tab, checks for theme-related settings, optionally
|
|
/// selects a non-default theme, then restarts the app and verifies the profile
|
|
/// screen still loads (confirming the theme setting did not cause a crash and
|
|
/// persisted state is coherent).
|
|
func test09_themePersistsAcrossRestart() {
|
|
// Step 1: Navigate to settings (accessed via settings button, not a tab)
|
|
navigateToResidences()
|
|
|
|
let settingsButton = app.buttons[AccessibilityIdentifiers.Navigation.settingsButton]
|
|
guard settingsButton.waitForExistence(timeout: defaultTimeout) else {
|
|
XCTFail("Settings button not found on Residences screen")
|
|
return
|
|
}
|
|
settingsButton.forceTap()
|
|
|
|
// Step 2: Look for a theme picker button in the profile/settings UI.
|
|
// The exact identifier depends on implementation — check for common patterns.
|
|
let themeButton = app.buttons.containing(
|
|
NSPredicate(format: "label CONTAINS[c] 'Theme' OR label CONTAINS[c] 'Appearance' OR label CONTAINS[c] 'Color'")
|
|
).firstMatch
|
|
|
|
var selectedThemeName: String? = nil
|
|
|
|
if themeButton.waitForExistence(timeout: defaultTimeout) && themeButton.isHittable {
|
|
themeButton.forceTap()
|
|
|
|
// Look for theme options in any picker/sheet that appears
|
|
// Try to select a theme that is NOT the currently selected one
|
|
let themeOptions = app.buttons.allElementsBoundByIndex.filter { button in
|
|
button.exists && button.isHittable &&
|
|
button.label != "Theme" && button.label != "Appearance" &&
|
|
!button.label.isEmpty && button.label != "Cancel" && button.label != "Done"
|
|
}
|
|
|
|
if let firstOption = themeOptions.first {
|
|
selectedThemeName = firstOption.label
|
|
firstOption.forceTap()
|
|
}
|
|
|
|
// Dismiss the theme picker if still visible
|
|
let doneButton = app.buttons["Done"]
|
|
if doneButton.exists && doneButton.isHittable {
|
|
doneButton.tap()
|
|
} else {
|
|
let cancelButton = app.buttons["Cancel"]
|
|
if cancelButton.exists && cancelButton.isHittable {
|
|
cancelButton.tap()
|
|
}
|
|
}
|
|
}
|
|
|
|
// Step 3: Terminate and relaunch without --reset-state
|
|
app.terminate()
|
|
|
|
app.launchArguments = [
|
|
"--ui-testing",
|
|
"--disable-animations"
|
|
// Intentionally omitting --reset-state to preserve theme setting
|
|
]
|
|
app.launch()
|
|
app.otherElements[UITestID.Root.ready].waitForExistenceOrFail(timeout: defaultTimeout)
|
|
|
|
// Step 4: Re-login if needed
|
|
let mainTabs = app.otherElements[UITestID.Root.mainTabs]
|
|
let tabBar = app.tabBars.firstMatch
|
|
let usernameField = app.textFields[AccessibilityIdentifiers.Authentication.usernameField]
|
|
let onboardingRoot = app.otherElements[UITestID.Root.onboarding]
|
|
|
|
let deadline = Date().addingTimeInterval(loginTimeout)
|
|
while Date() < deadline {
|
|
if mainTabs.exists || tabBar.exists { break }
|
|
if usernameField.exists { loginViaUI(); break }
|
|
if onboardingRoot.exists {
|
|
let loginBtn = app.buttons[AccessibilityIdentifiers.Onboarding.loginButton]
|
|
if loginBtn.waitForExistence(timeout: 5) { loginBtn.forceTap() }
|
|
if usernameField.waitForExistence(timeout: 10) { loginViaUI() }
|
|
break
|
|
}
|
|
RunLoop.current.run(until: Date().addingTimeInterval(0.5))
|
|
}
|
|
|
|
let reachedMain = mainTabs.waitForExistence(timeout: loginTimeout)
|
|
|| tabBar.waitForExistence(timeout: 5)
|
|
XCTAssertTrue(reachedMain, "Should reach main app after restart")
|
|
|
|
// Step 5: Navigate to settings again and confirm the screen loads.
|
|
// If the theme setting is persisted and applied without errors, the app
|
|
// renders the settings screen correctly.
|
|
navigateToResidences()
|
|
|
|
let settingsButton2 = app.buttons[AccessibilityIdentifiers.Navigation.settingsButton]
|
|
guard settingsButton2.waitForExistence(timeout: defaultTimeout) else {
|
|
XCTFail("Settings button not found after restart")
|
|
return
|
|
}
|
|
settingsButton2.forceTap()
|
|
|
|
let settingsReloaded = app.staticTexts.containing(
|
|
NSPredicate(format: "label CONTAINS[c] 'Profile' OR label CONTAINS[c] 'Account' OR label CONTAINS[c] 'Settings'")
|
|
).firstMatch.waitForExistence(timeout: defaultTimeout)
|
|
|| app.otherElements.containing(
|
|
NSPredicate(format: "identifier CONTAINS[c] 'Profile' OR identifier CONTAINS[c] 'Settings'")
|
|
).firstMatch.exists
|
|
|
|
XCTAssertTrue(
|
|
settingsReloaded,
|
|
"Settings screen should load after restart with persisted theme — " +
|
|
"confirming the theme state ('\(selectedThemeName ?? "default")') did not cause a crash"
|
|
)
|
|
|
|
// If we successfully selected a theme, try to verify it's still reflected in the UI
|
|
if let themeName = selectedThemeName {
|
|
let themeStillVisible = app.buttons.containing(
|
|
NSPredicate(format: "label CONTAINS[c] %@", themeName)
|
|
).firstMatch.exists
|
|
// Non-fatal: theme picker UI varies; just log the result
|
|
if themeStillVisible {
|
|
// Theme label is visible — persistence confirmed at UI level
|
|
XCTAssertTrue(true, "Theme '\(themeName)' is still visible in settings after restart")
|
|
}
|
|
// If not visible, the theme may have been applied silently — the lack of crash is the pass criterion
|
|
}
|
|
}
|
|
|
|
// MARK: - TCOMP-004: Completion History
|
|
|
|
/// TCOMP-004 — History list loads for a task and is sorted correctly.
|
|
///
|
|
/// Seeds a task, marks it complete via API (if the endpoint exists), then opens
|
|
/// the task detail to look for a completion history section. If the task completion
|
|
/// endpoint is not available in `TestAccountAPIClient`, the test documents this
|
|
/// gap and exercises the task detail view at minimum.
|
|
func test10_completionHistoryLoadsAndIsSorted() throws {
|
|
// Seed a residence and task via API
|
|
let residence = cleaner.seedResidence(name: "TCOMP004 Residence \(Int(Date().timeIntervalSince1970))")
|
|
let task = cleaner.seedTask(residenceId: residence.id, title: "TCOMP004 Task \(Int(Date().timeIntervalSince1970))")
|
|
|
|
// Attempt to mark the task as complete via the mark-in-progress endpoint first,
|
|
// then look for a complete action. The completeTask endpoint is not yet in
|
|
// TestAccountAPIClient — document this and proceed with what is available.
|
|
//
|
|
// NOTE: If a POST /tasks/{id}/complete/ endpoint is added to TestAccountAPIClient,
|
|
// call it here to seed a completion record before opening the task detail.
|
|
let markedInProgress = TestAccountAPIClient.markTaskInProgress(token: session.token, id: task.id)
|
|
// Completion via API not yet implemented in TestAccountAPIClient — see TCOMP-004 stub note.
|
|
|
|
// Navigate to tasks and open the seeded task
|
|
navigateToTasks()
|
|
|
|
let taskText = app.staticTexts[task.title]
|
|
guard taskText.waitForExistence(timeout: loginTimeout) else {
|
|
throw XCTSkip("Seeded task '\(task.title)' not visible in current view — may require filter toggle")
|
|
}
|
|
taskText.forceTap()
|
|
|
|
// Verify the task detail view loaded
|
|
let detailView = app.otherElements[AccessibilityIdentifiers.Task.detailView]
|
|
let taskDetailLoaded = detailView.waitForExistence(timeout: defaultTimeout)
|
|
|| app.staticTexts[task.title].waitForExistence(timeout: defaultTimeout)
|
|
XCTAssertTrue(taskDetailLoaded, "Task detail view should load after tapping the task")
|
|
|
|
// Look for a completion history section.
|
|
// The identifier pattern mirrors the codebase convention used in AccessibilityIdentifiers.
|
|
let historySection = app.otherElements.containing(
|
|
NSPredicate(format: "identifier CONTAINS[c] 'History' OR identifier CONTAINS[c] 'Completion'")
|
|
).firstMatch
|
|
|
|
let historyText = app.staticTexts.containing(
|
|
NSPredicate(format: "label CONTAINS[c] 'History' OR label CONTAINS[c] 'Completed' OR label CONTAINS[c] 'completion'")
|
|
).firstMatch
|
|
|
|
if historySection.waitForExistence(timeout: defaultTimeout) || historyText.waitForExistence(timeout: defaultTimeout) {
|
|
// History section is visible — verify at least one entry if the task was completed
|
|
if markedInProgress != nil {
|
|
// The task was set in-progress; a full completion record requires the complete endpoint.
|
|
// Assert the history section is accessible (not empty or crashed).
|
|
XCTAssertTrue(
|
|
historySection.exists || historyText.exists,
|
|
"Completion history section should be present in task detail"
|
|
)
|
|
}
|
|
} else {
|
|
// NOTE: If this assertion fails, the task detail may not yet expose a completion
|
|
// history section in the UI. The TCOMP-004 test plan item requires:
|
|
// 1. POST /tasks/{id}/complete/ endpoint in TestAccountAPIClient
|
|
// 2. A completion history accessibility identifier in AccessibilityIdentifiers.Task
|
|
// 3. The SwiftUI task detail view to expose that section with an accessibility id
|
|
// Until all three are implemented, skip rather than fail hard.
|
|
throw XCTSkip(
|
|
"TCOMP-004: No completion history section found in task detail. " +
|
|
"This test requires: (1) TestAccountAPIClient.completeTask() endpoint, " +
|
|
"(2) AccessibilityIdentifiers.Task.completionHistorySection, and " +
|
|
"(3) the SwiftUI detail view to expose the history list with that identifier."
|
|
)
|
|
}
|
|
}
|
|
|
|
// MARK: - Helpers
|
|
|
|
/// Open the task creation form.
|
|
private func openTaskForm() throws {
|
|
// Ensure at least one residence exists (task add button is disabled without one)
|
|
ensureResidenceExists()
|
|
|
|
let addButton = app.buttons[AccessibilityIdentifiers.Task.addButton].firstMatch
|
|
let emptyState = app.otherElements[AccessibilityIdentifiers.Task.emptyStateView]
|
|
let taskList = app.otherElements[AccessibilityIdentifiers.Task.tasksList]
|
|
|
|
let loaded = addButton.waitForExistence(timeout: defaultTimeout)
|
|
|| emptyState.waitForExistence(timeout: 3)
|
|
|| taskList.waitForExistence(timeout: 3)
|
|
XCTAssertTrue(loaded, "Tasks screen should load")
|
|
|
|
if addButton.exists && addButton.isHittable {
|
|
addButton.forceTap()
|
|
} else {
|
|
let emptyAddButton = app.buttons.containing(
|
|
NSPredicate(format: "label CONTAINS[c] 'Add' OR label CONTAINS[c] 'Create'")
|
|
).firstMatch
|
|
emptyAddButton.waitForExistenceOrFail(timeout: defaultTimeout)
|
|
emptyAddButton.forceTap()
|
|
}
|
|
|
|
// Wait for form to be ready
|
|
let titleField = app.textFields[AccessibilityIdentifiers.Task.titleField]
|
|
if !titleField.waitForExistence(timeout: defaultTimeout) {
|
|
// Form may not open if no residence exists or add button was disabled
|
|
throw XCTSkip("Task form not available — add button may be disabled without a residence")
|
|
}
|
|
}
|
|
|
|
/// Cancel/dismiss the task form.
|
|
private func cancelTaskForm() {
|
|
let cancelButton = app.buttons[AccessibilityIdentifiers.Task.formCancelButton]
|
|
if cancelButton.exists && cancelButton.isHittable {
|
|
cancelButton.forceTap()
|
|
}
|
|
}
|
|
|
|
/// Assert core task form pickers are populated (scrolls to reveal off-screen pickers).
|
|
private func assertTaskFormPickersPopulated(file: StaticString = #filePath, line: UInt = #line) {
|
|
// Check category picker (near top of form)
|
|
let categoryPicker = findPicker(AccessibilityIdentifiers.Task.categoryPicker)
|
|
XCTAssertTrue(
|
|
categoryPicker.waitForExistence(timeout: defaultTimeout),
|
|
"Category picker should exist, indicating lookups loaded",
|
|
file: file,
|
|
line: line
|
|
)
|
|
|
|
// Scroll down to reveal pickers below the fold
|
|
let formScrollView = app.scrollViews.firstMatch.exists ? app.scrollViews.firstMatch : app.collectionViews.firstMatch
|
|
if formScrollView.exists {
|
|
formScrollView.swipeUp()
|
|
}
|
|
|
|
// Check priority picker (may be below fold)
|
|
let priorityPicker = findPicker(AccessibilityIdentifiers.Task.priorityPicker)
|
|
XCTAssertTrue(
|
|
priorityPicker.waitForExistence(timeout: defaultTimeout),
|
|
"Priority picker should exist, indicating lookups loaded",
|
|
file: file,
|
|
line: line
|
|
)
|
|
|
|
// Frequency picker should also be visible after scroll
|
|
let frequencyPicker = findPicker(AccessibilityIdentifiers.Task.frequencyPicker)
|
|
XCTAssertTrue(
|
|
frequencyPicker.waitForExistence(timeout: defaultTimeout),
|
|
"Frequency picker should exist, indicating lookups loaded",
|
|
file: file,
|
|
line: line
|
|
)
|
|
}
|
|
|
|
/// Find a picker element that may be a button or otherElement.
|
|
private func findPicker(_ identifier: String) -> XCUIElement {
|
|
let asButton = app.buttons[identifier]
|
|
if asButton.exists { return asButton }
|
|
return app.otherElements[identifier]
|
|
}
|
|
|
|
/// Dismiss an open picker overlay.
|
|
private func dismissPicker() {
|
|
let doneButton = app.buttons["Done"]
|
|
if doneButton.exists && doneButton.isHittable {
|
|
doneButton.tap()
|
|
} else {
|
|
app.coordinate(withNormalizedOffset: CGVector(dx: 0.5, dy: 0.1)).tap()
|
|
}
|
|
}
|
|
|
|
/// Perform logout via the UI (settings → logout → confirm).
|
|
private func performLogout() {
|
|
// Navigate to Residences tab (where settings button lives)
|
|
navigateToResidences()
|
|
|
|
// Tap settings button
|
|
let settingsButton = app.buttons[AccessibilityIdentifiers.Navigation.settingsButton]
|
|
settingsButton.waitForExistenceOrFail(timeout: defaultTimeout)
|
|
settingsButton.forceTap()
|
|
|
|
// Scroll to and tap logout button
|
|
let logoutButton = app.buttons[AccessibilityIdentifiers.Profile.logoutButton]
|
|
if !logoutButton.waitForExistence(timeout: defaultTimeout) {
|
|
// Try scrolling to find it
|
|
let scrollView = app.scrollViews.firstMatch
|
|
if scrollView.exists {
|
|
logoutButton.scrollIntoView(in: scrollView)
|
|
}
|
|
}
|
|
logoutButton.forceTap()
|
|
|
|
// Confirm logout in alert
|
|
let alert = app.alerts.firstMatch
|
|
if alert.waitForExistence(timeout: defaultTimeout) {
|
|
let confirmLogout = alert.buttons["Log Out"]
|
|
if confirmLogout.exists {
|
|
confirmLogout.tap()
|
|
} else {
|
|
// Fallback: tap any destructive-looking button
|
|
let deleteButton = alert.buttons.containing(
|
|
NSPredicate(format: "label CONTAINS[c] 'Log' OR label CONTAINS[c] 'Confirm'")
|
|
).firstMatch
|
|
if deleteButton.exists {
|
|
deleteButton.tap()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Verify the static_data endpoint supports ETag by hitting it directly.
|
|
private func verifyStaticDataEndpointSupportsETag() {
|
|
// First request — should return 200 with ETag
|
|
let firstResult = TestAccountAPIClient.rawRequest(method: "GET", path: "/static_data/")
|
|
XCTAssertTrue(firstResult.succeeded, "static_data should return 200")
|
|
|
|
// Parse ETag from response (we need the raw HTTP headers)
|
|
// Use a direct URLRequest to capture the ETag header
|
|
guard let url = URL(string: "\(TestAccountAPIClient.baseURL)/static_data/") else {
|
|
XCTFail("Invalid URL")
|
|
return
|
|
}
|
|
|
|
var request = URLRequest(url: url)
|
|
request.httpMethod = "GET"
|
|
request.timeoutInterval = 15
|
|
|
|
let semaphore = DispatchSemaphore(value: 0)
|
|
var etag: String?
|
|
var secondStatus: Int?
|
|
|
|
// Fetch ETag
|
|
URLSession.shared.dataTask(with: request) { _, response, _ in
|
|
defer { semaphore.signal() }
|
|
etag = (response as? HTTPURLResponse)?.allHeaderFields["Etag"] as? String
|
|
}.resume()
|
|
semaphore.wait()
|
|
|
|
XCTAssertNotNil(etag, "static_data response should include an ETag header")
|
|
guard let etagValue = etag else { return }
|
|
|
|
// Second request with If-None-Match — should return 304
|
|
var conditionalRequest = URLRequest(url: url)
|
|
conditionalRequest.httpMethod = "GET"
|
|
conditionalRequest.setValue(etagValue, forHTTPHeaderField: "If-None-Match")
|
|
conditionalRequest.timeoutInterval = 15
|
|
|
|
URLSession.shared.dataTask(with: conditionalRequest) { _, response, _ in
|
|
defer { semaphore.signal() }
|
|
secondStatus = (response as? HTTPURLResponse)?.statusCode
|
|
}.resume()
|
|
semaphore.wait()
|
|
|
|
XCTAssertEqual(
|
|
secondStatus, 304,
|
|
"static_data with matching ETag should return 304 Not Modified"
|
|
)
|
|
}
|
|
}
|