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:
Trey t
2026-02-20 08:40:05 -06:00
parent c22d246865
commit ffc74f1a27
8 changed files with 420 additions and 0 deletions

View 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")
}
}