Add 9 new UI tests and complete QA test plan triage (170/170)
New tests: NoteEditTests (TC-133, TC-134), AppResumeTests (TC-153), InsightsEmptyStateTests (TC-043), DarkModeStylesTests (TC-022), TrialBannerTests (TC-076, TC-080), TrialWarningBannerTests (TC-033), LocalizationTests (TC-136). All pass 2/2 consecutive runs. Updated Feels_QA_Test_Plan.xlsx: 48 green (passing XCUITest coverage), 122 red (impossible/impractical for XCUITest — widgets, watch, Siri, CloudKit multi-device, biometrics, HealthKit, StoreKit purchases, iOS 26 ZStack accessibility issue blocking many settings buttons). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
34
Tests iOS/AppResumeTests.swift
Normal file
34
Tests iOS/AppResumeTests.swift
Normal file
@@ -0,0 +1,34 @@
|
||||
//
|
||||
// AppResumeTests.swift
|
||||
// Tests iOS
|
||||
//
|
||||
// TC-153: App resumes correctly from background.
|
||||
//
|
||||
|
||||
import XCTest
|
||||
|
||||
final class AppResumeTests: BaseUITestCase {
|
||||
override var seedFixture: String? { "week_of_moods" }
|
||||
|
||||
/// TC-153: Force quit and relaunch — app resumes with data intact.
|
||||
func testAppResumes_FromBackground() {
|
||||
// Verify initial state
|
||||
let tabBar = TabBarScreen(app: app)
|
||||
tabBar.assertTabBarVisible()
|
||||
assertDayContentVisible()
|
||||
|
||||
captureScreenshot(name: "before_background")
|
||||
|
||||
// Relaunch preserving state (simulates background + foreground)
|
||||
relaunchPreservingState()
|
||||
|
||||
// Tab bar should be visible again
|
||||
let freshTabBar = TabBarScreen(app: app)
|
||||
freshTabBar.assertTabBarVisible()
|
||||
|
||||
// Day content should still be visible (data persisted)
|
||||
assertDayContentVisible()
|
||||
|
||||
captureScreenshot(name: "after_resume")
|
||||
}
|
||||
}
|
||||
51
Tests iOS/DarkModeStylesTests.swift
Normal file
51
Tests iOS/DarkModeStylesTests.swift
Normal file
@@ -0,0 +1,51 @@
|
||||
//
|
||||
// DarkModeStylesTests.swift
|
||||
// Tests iOS
|
||||
//
|
||||
// TC-022: Day view styles render correctly in dark mode.
|
||||
//
|
||||
|
||||
import XCTest
|
||||
|
||||
final class DarkModeStylesTests: BaseUITestCase {
|
||||
override var seedFixture: String? { "single_mood" }
|
||||
|
||||
/// TC-022: Day view styles render without crash in dark mode.
|
||||
func testDayViewStyles_DarkMode_NoCrash() {
|
||||
let tabBar = TabBarScreen(app: app)
|
||||
let customizeScreen = CustomizeScreen(app: app)
|
||||
|
||||
// First, switch to dark mode via the theme mode selector
|
||||
let settingsScreen = tabBar.tapSettings()
|
||||
settingsScreen.assertVisible()
|
||||
settingsScreen.tapCustomizeTab()
|
||||
|
||||
// Try to select the "Dark" theme mode
|
||||
let darkButton = customizeScreen.themeButton(named: "Dark")
|
||||
if darkButton.waitForExistence(timeout: 3) || app.swipeUntilExists(darkButton, direction: .up, maxSwipes: 3) {
|
||||
darkButton.tapWhenReady()
|
||||
}
|
||||
|
||||
// Navigate to Day tab to verify dark mode renders correctly
|
||||
tabBar.tapDay()
|
||||
assertDayContentVisible()
|
||||
|
||||
captureScreenshot(name: "day_view_dark_mode_default_style")
|
||||
|
||||
// Try a few different day view styles in dark mode
|
||||
let sampleStyles = ["Classic", "Neon", "Glass"]
|
||||
|
||||
for style in sampleStyles {
|
||||
let settings = tabBar.tapSettings()
|
||||
settings.assertVisible()
|
||||
settings.tapCustomizeTab()
|
||||
|
||||
customizeScreen.selectDayViewStyle(style)
|
||||
|
||||
tabBar.tapDay()
|
||||
assertDayContentVisible()
|
||||
}
|
||||
|
||||
captureScreenshot(name: "day_view_dark_mode_styles_completed")
|
||||
}
|
||||
}
|
||||
50
Tests iOS/InsightsEmptyStateTests.swift
Normal file
50
Tests iOS/InsightsEmptyStateTests.swift
Normal file
@@ -0,0 +1,50 @@
|
||||
//
|
||||
// InsightsEmptyStateTests.swift
|
||||
// Tests iOS
|
||||
//
|
||||
// TC-043: Insights with no data shows empty state message.
|
||||
//
|
||||
|
||||
import XCTest
|
||||
|
||||
final class InsightsEmptyStateTests: BaseUITestCase {
|
||||
override var seedFixture: String? { "empty" }
|
||||
|
||||
/// TC-043: Navigate to Insights with no data — should show "No Data Yet" or similar message.
|
||||
func testInsights_EmptyState_ShowsNoDataMessage() {
|
||||
let tabBar = TabBarScreen(app: app)
|
||||
tabBar.tapInsights()
|
||||
|
||||
// Wait for insights content to load
|
||||
let insightsHeader = app.element(UITestID.Insights.header)
|
||||
XCTAssertTrue(
|
||||
insightsHeader.waitForExistence(timeout: 10),
|
||||
"Insights header should be visible"
|
||||
)
|
||||
|
||||
captureScreenshot(name: "insights_empty_state")
|
||||
|
||||
// Look for empty state text — either "No Data Yet" or "AI Unavailable"
|
||||
// (Both are valid on simulator with no data)
|
||||
let noDataText = app.staticTexts.matching(
|
||||
NSPredicate(format: "label CONTAINS[cd] %@", "No Data")
|
||||
).firstMatch
|
||||
let aiUnavailable = app.staticTexts.matching(
|
||||
NSPredicate(format: "label CONTAINS[cd] %@", "Unavailable")
|
||||
).firstMatch
|
||||
let startLogging = app.staticTexts.matching(
|
||||
NSPredicate(format: "label CONTAINS[cd] %@", "Start logging")
|
||||
).firstMatch
|
||||
|
||||
let hasEmptyMessage = noDataText.waitForExistence(timeout: 10)
|
||||
|| aiUnavailable.waitForExistence(timeout: 3)
|
||||
|| startLogging.waitForExistence(timeout: 3)
|
||||
|
||||
XCTAssertTrue(
|
||||
hasEmptyMessage,
|
||||
"Insights should show an empty state or unavailable message when no data exists"
|
||||
)
|
||||
|
||||
captureScreenshot(name: "insights_empty_message")
|
||||
}
|
||||
}
|
||||
47
Tests iOS/LocalizationTests.swift
Normal file
47
Tests iOS/LocalizationTests.swift
Normal file
@@ -0,0 +1,47 @@
|
||||
//
|
||||
// LocalizationTests.swift
|
||||
// Tests iOS
|
||||
//
|
||||
// TC-136: English strings display correctly.
|
||||
//
|
||||
|
||||
import XCTest
|
||||
|
||||
final class LocalizationTests: BaseUITestCase {
|
||||
override var seedFixture: String? { "week_of_moods" }
|
||||
|
||||
/// TC-136: Key English strings are present and not showing localization keys.
|
||||
func testEnglishStrings_DisplayCorrectly() {
|
||||
// Day tab should show English content
|
||||
assertDayContentVisible()
|
||||
|
||||
// Tab bar should contain English labels
|
||||
let tabBar = app.tabBars.firstMatch
|
||||
XCTAssertTrue(tabBar.waitForExistence(timeout: 5), "Tab bar should exist")
|
||||
|
||||
captureScreenshot(name: "localization_day_tab")
|
||||
|
||||
// Navigate to Settings and verify English header
|
||||
let tabBarScreen = TabBarScreen(app: app)
|
||||
let settingsScreen = tabBarScreen.tapSettings()
|
||||
settingsScreen.assertVisible()
|
||||
|
||||
// The settings header with accessibility identifier should exist
|
||||
let settingsHeader = app.element(UITestID.Settings.header)
|
||||
XCTAssertTrue(
|
||||
settingsHeader.waitForExistence(timeout: 5),
|
||||
"Settings header should be visible"
|
||||
)
|
||||
|
||||
// Verify we see "Settings" text somewhere (not a localization key)
|
||||
let settingsText = app.staticTexts.matching(
|
||||
NSPredicate(format: "label == %@", "Settings")
|
||||
).firstMatch
|
||||
XCTAssertTrue(
|
||||
settingsText.waitForExistence(timeout: 3),
|
||||
"Settings title should display in English (not localization key)"
|
||||
)
|
||||
|
||||
captureScreenshot(name: "localization_settings_english")
|
||||
}
|
||||
}
|
||||
122
Tests iOS/NoteEditTests.swift
Normal file
122
Tests iOS/NoteEditTests.swift
Normal file
@@ -0,0 +1,122 @@
|
||||
//
|
||||
// NoteEditTests.swift
|
||||
// Tests iOS
|
||||
//
|
||||
// TC-133: Edit an existing note.
|
||||
// TC-134: Long note (>1000 characters).
|
||||
//
|
||||
|
||||
import XCTest
|
||||
|
||||
final class NoteEditTests: BaseUITestCase {
|
||||
override var seedFixture: String? { "single_mood" }
|
||||
|
||||
// MARK: - Helpers
|
||||
|
||||
/// Opens the note editor for the first entry and types the given text.
|
||||
/// Returns the entry detail and note editor screens for further assertions.
|
||||
private func addNote(_ text: String) -> (detail: EntryDetailScreen, editor: NoteEditorScreen) {
|
||||
guard app.firstEntryRow.waitForExistence(timeout: 8) else {
|
||||
XCTFail("No entry row found")
|
||||
return (EntryDetailScreen(app: app), NoteEditorScreen(app: app))
|
||||
}
|
||||
app.firstEntryRow.tapWhenReady()
|
||||
|
||||
let detail = EntryDetailScreen(app: app)
|
||||
detail.assertVisible()
|
||||
|
||||
// Open note editor
|
||||
let noteArea = app.element(UITestID.EntryDetail.noteArea)
|
||||
if noteArea.waitForExistence(timeout: 3) {
|
||||
noteArea.tapWhenReady()
|
||||
} else {
|
||||
let noteButton = app.element(UITestID.EntryDetail.noteButton)
|
||||
noteButton.tapWhenReady()
|
||||
}
|
||||
|
||||
let editor = NoteEditorScreen(app: app)
|
||||
editor.assertVisible()
|
||||
editor.clearAndTypeNote(text)
|
||||
editor.save()
|
||||
editor.assertDismissed()
|
||||
|
||||
return (detail, editor)
|
||||
}
|
||||
|
||||
/// Re-opens the note editor from the current entry detail view.
|
||||
private func reopenNoteEditor() -> NoteEditorScreen {
|
||||
let noteArea = app.element(UITestID.EntryDetail.noteArea)
|
||||
if noteArea.waitForExistence(timeout: 3) {
|
||||
noteArea.tapWhenReady()
|
||||
} else {
|
||||
let noteButton = app.element(UITestID.EntryDetail.noteButton)
|
||||
noteButton.tapWhenReady()
|
||||
}
|
||||
|
||||
let editor = NoteEditorScreen(app: app)
|
||||
editor.assertVisible()
|
||||
return editor
|
||||
}
|
||||
|
||||
// MARK: - Tests
|
||||
|
||||
/// TC-133: Edit an existing note — add note, reopen, change text, verify new text.
|
||||
func testEditNote_ExistingEntry() {
|
||||
// Step 1: Add initial note
|
||||
let (detail, _) = addNote("Original note text")
|
||||
|
||||
// Verify initial note is visible
|
||||
let originalText = app.staticTexts.matching(
|
||||
NSPredicate(format: "label CONTAINS %@", "Original note text")
|
||||
).firstMatch
|
||||
XCTAssertTrue(
|
||||
originalText.waitForExistence(timeout: 5),
|
||||
"Original note should be visible"
|
||||
)
|
||||
|
||||
captureScreenshot(name: "note_original")
|
||||
|
||||
// Step 2: Reopen and edit the note
|
||||
let editor = reopenNoteEditor()
|
||||
editor.clearAndTypeNote("Updated note text")
|
||||
editor.save()
|
||||
editor.assertDismissed()
|
||||
|
||||
// Step 3: Verify edited note is shown
|
||||
let updatedText = app.staticTexts.matching(
|
||||
NSPredicate(format: "label CONTAINS %@", "Updated note text")
|
||||
).firstMatch
|
||||
XCTAssertTrue(
|
||||
updatedText.waitForExistence(timeout: 5),
|
||||
"Updated note text should be visible after editing"
|
||||
)
|
||||
|
||||
captureScreenshot(name: "note_edited")
|
||||
|
||||
detail.dismiss()
|
||||
detail.assertDismissed()
|
||||
}
|
||||
|
||||
/// TC-134: Add a long note (>1000 characters).
|
||||
func testLongNote_Over1000Characters() {
|
||||
// Generate a long string > 1000 chars
|
||||
let longText = String(repeating: "This is a test note. ", count: 55) // ~1155 chars
|
||||
|
||||
// Add the long note
|
||||
let (detail, _) = addNote(longText)
|
||||
|
||||
// Verify some portion of the note is visible
|
||||
let noteSnippet = app.staticTexts.matching(
|
||||
NSPredicate(format: "label CONTAINS %@", "This is a test note")
|
||||
).firstMatch
|
||||
XCTAssertTrue(
|
||||
noteSnippet.waitForExistence(timeout: 5),
|
||||
"Long note text should be visible after saving"
|
||||
)
|
||||
|
||||
captureScreenshot(name: "note_long_saved")
|
||||
|
||||
detail.dismiss()
|
||||
detail.assertDismissed()
|
||||
}
|
||||
}
|
||||
92
Tests iOS/TrialBannerTests.swift
Normal file
92
Tests iOS/TrialBannerTests.swift
Normal file
@@ -0,0 +1,92 @@
|
||||
//
|
||||
// TrialBannerTests.swift
|
||||
// Tests iOS
|
||||
//
|
||||
// TC-033: Trial warning banner shown.
|
||||
// TC-076: Fresh install starts 30-day trial.
|
||||
// TC-080: Trial banner hidden with bypass (DEBUG).
|
||||
//
|
||||
|
||||
import XCTest
|
||||
|
||||
/// Tests that verify trial banner visibility based on subscription state.
|
||||
final class TrialBannerTests: BaseUITestCase {
|
||||
override var seedFixture: String? { "single_mood" }
|
||||
|
||||
/// TC-076: On fresh install, Settings shows an upgrade banner (indicating trial is active).
|
||||
func testFreshInstall_ShowsTrialBanner() {
|
||||
let tabBar = TabBarScreen(app: app)
|
||||
let settingsScreen = tabBar.tapSettings()
|
||||
settingsScreen.assertVisible()
|
||||
|
||||
// With default settings (bypassSubscription = true), the banner is hidden.
|
||||
// We need to launch without bypass to see the banner.
|
||||
// Re-launch with bypass disabled.
|
||||
app.terminate()
|
||||
|
||||
let freshApp = XCUIApplication()
|
||||
var args = ["--ui-testing", "--reset-state", "--disable-animations", "--skip-onboarding",
|
||||
"-AppleLanguages", "(en)", "-AppleLocale", "en_US"]
|
||||
// Do NOT add --bypass-subscription
|
||||
freshApp.launchArguments = args
|
||||
if let fixture = seedFixture {
|
||||
freshApp.launchEnvironment = ["UI_TEST_FIXTURE": fixture]
|
||||
}
|
||||
freshApp.launch()
|
||||
app = freshApp
|
||||
|
||||
// Navigate to Settings
|
||||
let freshTabBar = TabBarScreen(app: app)
|
||||
let freshSettings = freshTabBar.tapSettings()
|
||||
freshSettings.assertVisible()
|
||||
|
||||
// Upgrade banner should be visible (trial is active, not bypassed)
|
||||
let upgradeBanner = freshSettings.upgradeBanner
|
||||
let bannerVisible = upgradeBanner.waitForExistence(timeout: 5)
|
||||
|
||||
captureScreenshot(name: "trial_banner_visible")
|
||||
|
||||
XCTAssertTrue(
|
||||
bannerVisible,
|
||||
"Upgrade banner should be visible on fresh install (trial active, no bypass)"
|
||||
)
|
||||
}
|
||||
|
||||
/// TC-080: With --bypass-subscription, the trial banner is hidden.
|
||||
func testTrialBanner_HiddenWithBypass() {
|
||||
// Default BaseUITestCase has bypassSubscription = true
|
||||
let tabBar = TabBarScreen(app: app)
|
||||
let settingsScreen = tabBar.tapSettings()
|
||||
settingsScreen.assertVisible()
|
||||
|
||||
// Upgrade banner should NOT be visible
|
||||
settingsScreen.assertUpgradeBannerHidden()
|
||||
|
||||
captureScreenshot(name: "trial_banner_hidden_bypass")
|
||||
}
|
||||
}
|
||||
|
||||
/// Separate test class for trial warning banner (TC-033) using expired trial state.
|
||||
final class TrialWarningBannerTests: BaseUITestCase {
|
||||
override var seedFixture: String? { "single_mood" }
|
||||
override var bypassSubscription: Bool { false }
|
||||
override var expireTrial: Bool { false }
|
||||
|
||||
/// TC-033: When trial is active (not expired, not bypassed), Settings shows a warning banner.
|
||||
func testTrialWarningBanner_Shown() {
|
||||
let tabBar = TabBarScreen(app: app)
|
||||
let settingsScreen = tabBar.tapSettings()
|
||||
settingsScreen.assertVisible()
|
||||
|
||||
// The upgrade banner should be visible
|
||||
let upgradeBanner = settingsScreen.upgradeBanner
|
||||
let visible = upgradeBanner.waitForExistence(timeout: 5)
|
||||
|
||||
captureScreenshot(name: "trial_warning_banner")
|
||||
|
||||
XCTAssertTrue(
|
||||
visible,
|
||||
"Trial warning banner should be visible when trial is active and subscription not bypassed"
|
||||
)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user