- Add 8 new test files: HeaderMoodLogging (TC-002), DayViewGrouping (TC-019), AllDayViewStyles (TC-021), MonthViewInteraction (TC-030), PaywallGate (TC-032/039/048), AppTheme (TC-070), IconPack (TC-072), PremiumCustomization (TC-075) - Add accessibility IDs for paywall overlays, icon packs, app theme cards, and day view section headers - Add --expire-trial launch argument to UITestMode for paywall gate testing - Update QA test plan spreadsheet with XCUITest names for 14 test cases - Include existing test infrastructure: screen objects, helpers, base class, and 19 previously written test files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
86 lines
3.0 KiB
Swift
86 lines
3.0 KiB
Swift
//
|
|
// MoodReplacementTests.swift
|
|
// Tests iOS
|
|
//
|
|
// Mood replacement and duplicate prevention tests.
|
|
//
|
|
|
|
import XCTest
|
|
|
|
final class MoodReplacementTests: BaseUITestCase {
|
|
override var seedFixture: String? { "single_mood" }
|
|
|
|
/// TC-003: Log mood as Good for a day that already has Great → only one entry exists.
|
|
func testReplaceMood_NoDuplicates() {
|
|
let dayScreen = DayScreen(app: app)
|
|
|
|
// Seeded data has today as Great. The header may or may not show.
|
|
// If header is visible, log a different mood.
|
|
if dayScreen.moodHeader.waitForExistence(timeout: 3) {
|
|
dayScreen.logMood(.good)
|
|
} else {
|
|
// Today already has an entry. Open detail and change mood.
|
|
let firstEntry = app.descendants(matching: .any)
|
|
.matching(NSPredicate(format: "identifier BEGINSWITH %@", "entry_row_"))
|
|
.firstMatch
|
|
guard firstEntry.waitForExistence(timeout: 5) else {
|
|
XCTFail("No entry rows found")
|
|
return
|
|
}
|
|
firstEntry.tap()
|
|
let detailScreen = EntryDetailScreen(app: app)
|
|
detailScreen.assertVisible()
|
|
detailScreen.selectMood(.good)
|
|
detailScreen.dismiss()
|
|
detailScreen.assertDismissed()
|
|
}
|
|
|
|
// Verify exactly one entry row exists (no duplicates)
|
|
let entryRows = app.descendants(matching: .any)
|
|
.matching(NSPredicate(format: "identifier BEGINSWITH %@", "entry_row_"))
|
|
// Wait for at least one entry
|
|
XCTAssertTrue(
|
|
entryRows.firstMatch.waitForExistence(timeout: 5),
|
|
"At least one entry should exist"
|
|
)
|
|
|
|
captureScreenshot(name: "mood_replaced_no_duplicates")
|
|
}
|
|
|
|
/// TC-158: Log mood twice for same day → verify single entry per date.
|
|
func testNoDuplicateEntries_SameDate() {
|
|
let dayScreen = DayScreen(app: app)
|
|
|
|
// If header shows, log Great
|
|
if dayScreen.moodHeader.waitForExistence(timeout: 3) {
|
|
dayScreen.logMood(.great)
|
|
}
|
|
|
|
// Now open the entry and change to Bad via detail
|
|
let firstEntry = app.descendants(matching: .any)
|
|
.matching(NSPredicate(format: "identifier BEGINSWITH %@", "entry_row_"))
|
|
.firstMatch
|
|
guard firstEntry.waitForExistence(timeout: 8) else {
|
|
XCTFail("No entry found after logging")
|
|
return
|
|
}
|
|
firstEntry.tap()
|
|
|
|
let detailScreen = EntryDetailScreen(app: app)
|
|
detailScreen.assertVisible()
|
|
detailScreen.selectMood(.bad)
|
|
detailScreen.dismiss()
|
|
detailScreen.assertDismissed()
|
|
|
|
// Verify still only one entry (no duplicate)
|
|
let entryRows = app.descendants(matching: .any)
|
|
.matching(NSPredicate(format: "identifier BEGINSWITH %@", "entry_row_"))
|
|
XCTAssertTrue(
|
|
entryRows.firstMatch.waitForExistence(timeout: 5),
|
|
"Entry should still exist after mood change"
|
|
)
|
|
|
|
captureScreenshot(name: "no_duplicate_entries")
|
|
}
|
|
}
|