Skip to content

fix(triage): exonerate reducer for stuck-Send + clear input on Start-over (PP-4846)#1318

Merged
mauricecarrier7 merged 4 commits into
developfrom
fix/pp-4846-stuck-send-repro
Jul 22, 2026
Merged

fix(triage): exonerate reducer for stuck-Send + clear input on Start-over (PP-4846)#1318
mauricecarrier7 merged 4 commits into
developfrom
fix/pp-4846-stuck-send-repro

Conversation

@mauricecarrier7

Copy link
Copy Markdown
Contributor

PP-4846 (repro-first): after Discard → pick a different category → type, the Send arrow intermittently stayed disabled. It did not reproduce deterministically in the regression pass.

What this PR establishes

The reducer is exonerated. The Send button's disabled predicate reads !isFollowUpStep && state.inputText.trimmed.isEmpty. StuckSendReproTests drives the exact flow (Discard → re-category → type) and proves the reducer leaves inputText set and the step a composition step — i.e. Send is enabled at the state-machine level. Combined with the "UIKit gesture-timeout" log evidence and the non-determinism, that localizes the intermittent bug to the SwiftUI TextField(axis: .vertical) binding, not the reducer.

A separate latent bug, found + fixed. Writing the test surfaced that .userTappedStartOver returned to .awaitingCategory but did not clear inputText — a half-typed composer survived "start fresh", unlike Discard which lands empty. In practice Start-over is reached with the composer already empty (post-submit), so it's latent, but the two reset paths should be identical. Now both clear it.

Verification

TriageBotCore reducer suites green (StuckSendRepro + CategoryChipDebounce + StructuredEscalation, 13/13).

Not done (honest)

The SwiftUI binding race itself isn't fixed here — the recommended fix is the local-@State mirror pattern already used successfully by TicketPreviewCard (local text state + onChange → reducer, decoupling live typing from reducer re-renders). It can't be verified without a deterministic repro, so it is not shipped blind. A simdrive repro harness is the right next step; see the PP-4846 ticket comment.

…n Start-over (PP-4846)

PP-4846 (repro-first): after Discard → pick a different category → type, the Send
arrow intermittently stayed disabled. It did not reproduce deterministically.

Pinned the REDUCER side of that flow — the source of truth the Send button's
`disabled` predicate reads (`!isFollowUpStep && inputText.trimmed.isEmpty`).
`StuckSendReproTests` drives Discard → re-category → type and proves inputText is
set and the step is a composition step, i.e. Send is enabled at the reducer
level. So the intermittent field report is localized to the SwiftUI TextField
binding (consistent with the "UIKit gesture-timeout" log + the non-determinism),
NOT the state machine.

Writing that test surfaced a real, separate latent bug: `.userTappedStartOver`
returned to `.awaitingCategory` but did NOT clear `inputText`, so a half-typed
composer survived "start fresh" — unlike Discard, which lands empty. In practice
Start-over is reached with inputText already empty (post-submit), but the two
reset paths should have identical composer semantics. Now both clear it.

Verified: TriageBotCore reducer suites green (StuckSendReproTests +
CategoryChipDebounce + StructuredEscalation, 13/13).

**Scope:** the Start-over reset clears inputText; reducer-level tests for both
reset paths. No SwiftUI change.

**Not done:** the intermittent SwiftUI TextField(axis:.vertical) binding
re-sync itself — reducer is exonerated; recommended fix is the local-@State
mirror pattern already used by TicketPreviewCard, but it can't be verified
without a deterministic repro, so it is not shipped blind here.

**Deferred:** a simdrive repro harness for the SwiftUI race (needs a dedicated
run; the field bug is intermittent).
@github-actions

github-actions Bot commented Jul 21, 2026

Copy link
Copy Markdown

🏗️ CodeAtlas Ledger Analysis

✅ All Checks Passed


♿ Accessibility (via AccessLint)

💡 Static analysis against WCAG 2.1 AA guidelines for iOS accessibility.

No accessibility issues detected


🧪 Test Coverage (via QAAtlas)

⚠️ No coverage data available - QAAtlas requires an OpenAI API key.
Set OPENAI_API_KEY in repository secrets to enable AI-powered test coverage analysis.


🏛️ Architecture Analysis

Metric Value ℹ️ What This Means
Components 12 Distinct modules/layers detected in your codebase
Dependency Cycles 0 Circular dependencies (A→B→C→A). Goal: 0
Layer Violations 1 Dependencies that break architectural boundaries
Hotspots 0 Files with high complexity + frequent changes
Avg Coupling 1.00 How interconnected modules are (lower is better, <1.0 is good)

🔍 Reachability Analysis

💡 Detects code that cannot be reached from entry points (dead code).

No dead code detected


📊 0 files analyzed | 📦 Download Full Report

Powered by CodeAtlas Ledger
• Accessibility: AccessLint

@github-actions

github-actions Bot commented Jul 21, 2026

Copy link
Copy Markdown

🧪 Unit Test Results

📊 View Full Interactive Report

✅ ALL TESTS PASSED

7964 tests | 7829 passed | 0 failed | 133 skipped | ⏱️ 8m 23s | 📊 98.3% | 📈 45.8% coverage

Tests by Class — 909 classes (click to expand)
Class Tests Passed Failed Duration
✅ AccessLintComplianceTests 11 11 0 48ms
✅ AccessibilityAnnouncementCenterTests 20 20 0 1.53s
✅ AccessibilityLabelTests 9 9 0 157ms
✅ AccessibilityPreferencesTests 26 26 0 399ms
✅ AccessibilityServiceTests 11 11 0 1.23s
✅ AccountAuthDocCarryoverTests 5 5 0 1.29s
✅ AccountAuthSurfaceHostsTests 7 7 0 72ms
✅ AccountAwareNetworkTests 10 10 0 1.49s
✅ AccountDetailCredentialStateTests 7 0 0 109ms
✅ AccountDetailPINVisibilityTests 25 0 0 273ms
✅ AccountDetailSignOutConfirmationTests 2 0 0 492ms
✅ AccountDetailViewModelGapTests 1 1 0 119ms
✅ AccountDetailViewModelLeakTests 1 1 0 57ms
✅ AccountDetailViewModelSignedInDerivationTests 5 0 0 293ms
✅ AccountDetailViewModelTests 19 0 0 302ms
✅ AccountDetailsAuthenticationIsBrowserBasedTests 10 10 0 146ms
✅ AccountDetailsNeedsAuthAggregateTests 10 10 0 26ms
✅ AccountDetailsURLTests 17 17 0 171ms
✅ AccountModelGapTests 9 9 0 1.20s
✅ AccountModelTests 20 20 0 77ms
✅ AccountProfileDocumentTests 3 3 0 5ms
✅ AccountStateMachineTests 10 10 0 94ms
✅ AccountSwitchCleanupTests 8 8 0 142ms
✅ AccountSwitchIntegrationTests 8 8 0 123ms
✅ AccountSwitchLifecycleTests 9 0 0 933ms
✅ AccountsManagerAccountIndexTests 7 7 0 162ms
✅ AccountsManagerCacheReadTests 4 4 0 321ms
✅ AccountsManagerCacheTests 16 16 0 736ms
✅ AccountsManagerCancellationTests 5 5 0 537ms
✅ AccountsManagerFirstRunDecodeTests 3 3 0 2.60s
✅ AccountsManagerGapTests 3 3 0 5ms
✅ AccountsManagerHelpersTests 12 12 0 180ms
✅ AccountsManagerIsolationLintTests 4 4 0 1.17s
✅ AccountsManagerLaunchSnapshotTests 13 13 0 1.88s
✅ AccountsManagerStateMachineWiringTests 16 16 0 2.75s
✅ AccountsManagerTests 51 48 0 3.45s
✅ ActiveSessionsViewModelTests 12 12 0 219ms
✅ AdobeActivationTests 6 6 0 17ms
✅ AdobeCertificateGapTests 7 7 0 92ms
✅ AdobeDRMCharacterizationTests 21 21 0 111ms
✅ AdobeDRMErrorGapTests 3 3 0 17ms
✅ AdobeDRMHandlerTests 12 12 0 207ms
✅ AdobeDRMServiceGapTests 2 2 0 2ms
✅ AlertModelCoverageTests 6 6 0 30ms
✅ AlertModelRetryTests 7 7 0 21ms
✅ AlertModelTests 2 2 0 5ms
✅ AlertPresentationRawGuardLintTests 6 6 0 43ms
✅ AlertUtilsTests 20 20 0 619ms
✅ AnnotationContractTests 3 3 0 12ms
✅ AnnotationDeviceIDTests 2 2 0 2ms
✅ AnnotationPostResponseContractTests 1 1 0 2ms
✅ AnnouncementChainTests 5 5 0 25ms
✅ AnnouncementTests 3 3 0 21ms
✅ AnonymousBorrowBaselineFixtureTests 13 13 0 385ms
✅ AnonymousBorrowCandidateFixtureTests 6 6 0 11ms
✅ AnonymousBorrowDeltaTests 2 2 0 23ms
✅ AppContainerAudiobookFactoryTests 3 3 0 4ms
✅ AppContainerAuthCoordinatorRegistrationTests 3 3 0 5ms
✅ AppContainerImageLoaderInjectionTests 4 4 0 64ms
✅ AppContainerIsolationLintTests 7 7 0 1.50s
✅ AppContainerResetTests 5 5 0 107ms
✅ AppContainerTests 4 4 0 8ms
✅ AppContainerWithSignInModalSheetPresenterTests 2 2 0 17ms
✅ AppHealthViewModelTests 8 8 0 343ms
✅ AppLaunchTrackerExtendedTests 16 16 0 270ms
✅ AppLaunchTrackerTests 10 10 0 210ms
✅ AppLaunchTrackerWiringTests 2 2 0 84ms
✅ AppRatingServiceOverrideTests 3 3 0 12ms
✅ AppRatingServiceTests 9 9 0 558ms
✅ AppRouteTests 5 5 0 184ms
✅ AppTabHostMiniPlayerIntegrationTests 6 6 0 342ms
✅ AppTabHostViewBadgeCountTests 10 10 0 55ms
✅ AppTabRouterCoverageTests 4 4 0 3ms
✅ AppTabRouterGapTests 3 3 0 33ms
✅ ArrayExtensionsTests 6 6 0 18ms
✅ AudioBookmarkGapTests 6 6 0 108ms
✅ AudioEngineWrapperTests 8 8 0 5.05s
✅ AudioInterruptionLogicTests 6 6 0 110ms
✅ AudioSessionActivatorTests 8 8 0 40ms
✅ AudiobookAccessibilityTests 7 7 0 16ms
✅ AudiobookBackgroundAudioTests 2 2 0 877ms
✅ AudiobookBookmarkBusinessLogicConcurrencyTests 3 3 0 64ms
✅ AudiobookBookmarkBusinessLogicPositionWriteTests 6 6 0 241ms
✅ AudiobookBookmarkBusinessLogicTests 21 21 0 3.85s
✅ AudiobookChapterTOCNormalizationTests 6 6 0 6ms
✅ AudiobookColdLoadRecoveryTests 4 4 0 5ms
✅ AudiobookCrossVendorSmokeTests 4 4 0 42ms
✅ AudiobookDataManagerEmptyQueueTests 1 1 0 6ms
✅ AudiobookDataManagerErrorHandlingTests 5 5 0 111ms
✅ AudiobookDataManagerModelsTests 20 20 0 25ms
✅ AudiobookDataManagerNetworkSyncTests 5 5 0 143ms
✅ AudiobookDataManagerSaveTests 4 4 0 30ms
✅ AudiobookDataManagerStoreRecoveryTests 5 5 0 423ms
✅ AudiobookFileLoggerTests 14 14 0 320ms
✅ AudiobookFirstOpenHangTests 14 14 0 1.11s
✅ AudiobookLoadFailureSAMLReauthTests 10 10 0 400ms
✅ AudiobookLoaderDispatchTests 7 7 0 493ms
✅ AudiobookLoaderFinalizeBuildTests 11 11 0 190ms
✅ AudiobookLoaderOPDSShapeMatrixTests 8 0 0 218ms
✅ AudiobookLoaderPredicateTests 11 11 0 421ms
✅ AudiobookLoaderTests 2 2 0 197ms
✅ AudiobookMorphingPlayerViewTests 10 10 0 230ms
✅ AudiobookNetworkValidationTests 3 3 0 7ms
✅ AudiobookOpenStateRaceTests 3 3 0 343ms
✅ AudiobookPhoneAlertContentTests 3 3 0 23ms
✅ AudiobookPlaybackStateTests 3 3 0 247ms
✅ AudiobookPlaybackTests 26 26 0 129ms
✅ AudiobookPlaytimesLifecycleTests 6 6 0 195ms
✅ AudiobookPositionAdapterContractTests 3 3 0 142ms
✅ AudiobookPositionPolicyValidatorTests 14 14 0 17ms
✅ AudiobookPositionRestoreTests 18 18 0 227ms
✅ AudiobookSAMLReauthTests 6 6 0 15ms
✅ AudiobookSessionErrorDescriptionTests 4 4 0 10ms
✅ AudiobookSessionErrorExtTests 4 4 0 18ms
✅ AudiobookSessionErrorTests 3 3 0 12ms
✅ AudiobookSessionManagerErrorMappingTests 6 6 0 82ms
✅ AudiobookSessionManagerFlagGatePresentationTests 4 4 0 166ms
✅ AudiobookSessionManagerPresenterMigrationTests 10 10 0 134ms
✅ AudiobookSessionManagerShutdownTests 12 12 0 399ms
✅ AudiobookSessionPresenterTests 31 31 0 405ms
✅ AudiobookSessionStateTests 6 6 0 173ms
✅ AudiobookSessionStateTransitionTests 22 22 0 230ms
✅ AudiobookSkipIntervalSettingsTests 7 7 0 65ms
✅ AudiobookSleepTimerIntegrationTests 5 5 0 146ms
✅ AudiobookStorageLocationTests 3 3 0 7ms
✅ AudiobookTOCTests 18 18 0 195ms
✅ AudiobookTimeEntryTests 6 6 0 65ms
✅ AudiobookTimeTrackerEdgeTests 8 8 0 1.24s
✅ AudiobookTimeTrackerLifecycleTests 5 5 0 1.10s
✅ AudiobookTimeTrackerTests 9 9 0 183ms
✅ AudiobookTrackCompletionTests 2 2 0 310ms
✅ AudiobookTypeRoutingTests 5 5 0 19ms
✅ AudiobookVendorAdapterTests 5 5 0 78ms
✅ AudiobookmarkTests 4 4 0 32ms
✅ AuthCoordinatorTelemetryTests 5 5 0 287ms
✅ AuthDecisionEventEmissionTests 7 7 0 13ms
✅ AuthDocumentContractTests 2 2 0 4ms
✅ AuthDocumentVariantsContractTests 5 5 0 134ms
✅ AuthErrorCategoryTests 12 12 0 36ms
✅ AuthErrorProblemDocSeamTests 6 6 0 26ms
✅ AuthFlowSecurityTests 3 0 0 368ms
✅ AuthReducerTests 21 21 0 32ms
✅ AuthTypeTests 7 7 0 49ms
✅ AuthenticationTests 16 16 0 149ms
✅ BackgroundDownloadHandlerTests 28 28 0 174ms
✅ BackgroundListenerTests 2 2 0 8ms
✅ BackgroundSessionRoutingTests 6 6 0 535ms
✅ BackupExclusionMigrationTests 3 3 0 23ms
✅ BadgeDefinitionTests 33 33 0 76ms
✅ BadgeServiceTests 16 16 0 49ms
✅ BadgeUnlockPhaseTests 4 4 0 18ms
✅ BadgesViewModelTests 14 14 0 406ms
✅ BasicAuthEmptyCredentialTests 4 4 0 47ms
✅ BearerTokenAdapterTests 5 4 0 36ms
✅ BearerTokenFulfillFlowTests 4 4 0 49ms
✅ BearerTokenRefreshTests 4 4 0 4ms
✅ BearerTokenResponseDetectionTests 7 7 0 55ms
✅ BeginningPositionPolicyTests 8 8 0 23ms
✅ BookAvailabilityFormatterTests 18 18 0 43ms
✅ BookButtonMapperHoldReadyTests 10 10 0 68ms
✅ BookButtonMapperTests 21 21 0 66ms
✅ BookButtonMapperViewModelTests 18 18 0 23ms
✅ BookButtonStateTests 8 8 0 32ms
✅ BookButtonTypeMetaTests 4 4 0 17ms
✅ BookButtonTypeTests 13 13 0 190ms
✅ BookCellModelActionTests 18 18 0 560ms
✅ BookCellModelCacheInvalidationTests 9 9 0 1.55s
✅ BookCellModelCachePrefetchSafetyTests 9 9 0 385ms
✅ BookCellModelCacheTests 22 22 0 239ms
✅ BookCellModelComputedPropertyTests 19 19 0 181ms
✅ BookCellModelOfflineTests 9 9 0 888ms
✅ BookCellModelRegistryBindingTests 4 4 0 105ms
✅ BookCellModelStateTests 16 16 0 105ms
✅ BookCellModelStreamingHTMLTests 2 2 0 389ms
✅ BookCellStateComprehensiveTests 14 14 0 36ms
✅ BookContentResetServiceTests 2 2 0 5ms
✅ BookDetailMetadataHydrationTests 6 6 0 94ms
✅ BookDetailViewModelAudiobookDismissTests 1 1 0 16ms
✅ BookDetailViewModelTests 91 91 0 1.73s
✅ BookFileManagerSideloadResolutionTests 4 4 0 40ms
✅ BookFileManagerTests 8 8 0 23ms
✅ BookListViewAccessibilityTests 9 9 0 19ms
✅ BookPreviewTests 4 4 0 8ms
✅ BookRegistryStoreTests 26 26 0 451ms
✅ BookRegistrySyncReadinessTests 3 2 0 77ms
✅ BookRegistrySyncReentrancyTests 6 6 0 4.03s
✅ BookRegistrySyncSideloadExemptionTests 2 0 0 122ms
✅ BookRegistrySyncTests 35 30 0 3.52s
✅ BookReturnCleverReauthTests 1 1 0 50ms
✅ BookReturnServiceAuthCoordinatorTests 3 3 0 62ms
✅ BookReturnServiceContractTests 9 9 0 328ms
✅ BookReturnServiceTests 16 16 0 604ms
✅ BookServiceAudiobookOpenTests 2 2 0 18ms
✅ BookSignInRedirectHandlerTests 8 8 0 305ms
✅ BookStateIntegrationTests 8 8 0 96ms
✅ BookmarkBusinessLogicExtendedTests 6 6 0 195ms
✅ BookmarkDeletionLogTests 3 3 0 98ms
✅ BookmarkDeviceIdMatchingTests 3 3 0 77ms
✅ BookmarkExistenceTests 4 4 0 135ms
✅ BookmarkManagerTests 24 24 0 276ms
✅ BookmarkSortingTests 1 1 0 55ms
✅ BookmarkSyncTests 3 3 0 130ms
✅ BorrowAndDownloadIntegrationTests 7 7 0 200ms
✅ BorrowErrorMessageTests 13 13 0 23ms
✅ BorrowErrorPresenterTests 6 6 0 892ms
✅ BorrowOperationAuthCoordinatorTests 6 6 0 127ms
✅ BorrowOperationCleverReauthTests 2 2 0 15ms
✅ BorrowOperationContractTests 8 8 0 491ms
✅ BorrowOperationStreamingHTMLTests 3 3 0 42ms
✅ BorrowOperationTests 13 13 0 113ms
✅ BorrowOperationTimeoutTests 3 3 0 110ms
✅ BorrowReducerContractTests 2 2 0 18ms
✅ BorrowReducerCoreContractTests 12 12 0 563ms
✅ BorrowReducerTests 21 21 0 251ms
✅ BundledRegistrySnapshotTests 5 5 0 552ms
✅ ButtonStateMonotonicClampTests 10 10 0 4.30s
✅ ButtonStateTests 16 16 0 727ms
✅ ButtonStyleTypeTests 2 2 0 246ms
✅ C64ConversionTests 6 6 0 7ms
✅ CarPlayAudiobookBridgePresenterMigrationTests 2 2 0 15ms
✅ CarPlayAuthHelperReadinessTests 3 3 0 458ms
✅ CarPlayChapterListTests 3 3 0 20ms
✅ CarPlayIntegrationTests 2 2 0 503ms
✅ CarPlayLibraryRefreshTests 3 3 0 13ms
✅ CarPlayNowPlayingTemplateTests 4 4 0 527ms
✅ CarPlayOpenAppAlertTests 6 6 0 250ms
✅ CarPlayPlaybackErrorTests 8 8 0 310ms
✅ CarPlayTests 12 12 0 29ms
✅ CarPlayTimeTrackingTests 3 3 0 117ms
✅ CatalogAPIDedupeTests 3 3 0 435ms
✅ CatalogAPIEntryPointTests 1 1 0 2ms
✅ CatalogAccessibilityTests 8 8 0 22ms
✅ CatalogCacheKeyAndIsolationTests 12 12 0 443ms
✅ CatalogCacheMetadataExactBoundaryTests 4 4 0 3ms
✅ CatalogCacheMetadataTests 21 21 0 160ms
✅ CatalogFeedModelTests 4 4 0 58ms
✅ CatalogFilterGroupModelTests 17 17 0 190ms
✅ CatalogFilterModelTests 17 17 0 131ms
✅ CatalogFilterServiceTests 29 29 0 42ms
✅ CatalogFilterTests 1 1 0 2ms
✅ CatalogLaneAssemblyTests 7 7 0 50ms
✅ CatalogLaneModelStructTests 20 20 0 1.13s
✅ CatalogLaneModelTests 3 3 0 3ms
✅ CatalogLaneMoreFilterStateTests 8 8 0 2.63s
✅ CatalogLaneMoreViewModelTests 43 43 0 1.72s
✅ CatalogLaneRowViewAccessibilityTests 11 11 0 139ms
✅ CatalogLaneSortingTests 5 5 0 72ms
✅ CatalogLoadIntegrationTests 6 6 0 190ms
✅ CatalogOPDS2NegotiationTests 12 12 0 107ms
✅ CatalogPreloaderTests 6 6 0 377ms
✅ CatalogProblemDocumentTests 6 6 0 9ms
✅ CatalogRepositoryCoreTests 9 9 0 83ms
✅ CatalogRepositoryStaleWhileRevalidateTests 12 12 0 260ms
✅ CatalogRepositoryTests 19 19 0 407ms
✅ CatalogSearchViewModelRegistryUpdateTests 5 5 0 78ms
✅ CatalogSearchViewModelTests 67 67 0 5.81s
✅ CatalogSelectorsTests 2 2 0 9ms
✅ CatalogSortServiceTests 14 14 0 159ms
✅ CatalogStateTests 7 7 0 17ms
✅ CatalogViewContinueRowsIntegrationTests 3 3 0 20ms
✅ CatalogViewModelStateMachineTests 19 19 0 744ms
✅ ChaosFaultInjectionTests 5 5 0 558ms
✅ ChapterChangeDetectorTests 5 5 0 1.87s
✅ ChapterTOCNormalizerTests 7 7 0 156ms
✅ CirculationAnalyticsTests 4 4 0 48ms
✅ ColdStartResumeIntegrationTests 10 10 0 1.02s
✅ ColorExtensionTests 5 5 0 46ms
✅ ConcurrentBookStateTests 3 3 0 4.84s
✅ ConcurrentDownloadStateTests 3 3 0 11ms
✅ ConcurrentTokenRefreshTests 2 2 0 24ms
✅ ContinueRowSectionTests 6 6 0 22ms
✅ ContinuousPlaybackTrackingTests 3 3 0 2.18s
✅ CookiePersistenceTests 10 10 0 584ms
✅ CrawlStateTests 16 16 0 81ms
✅ CrawlableFeedAnalysisTests 17 17 0 22ms
✅ CrawlerFallbackTests 12 12 0 223ms
✅ CredentialEdgeCaseTests 6 6 0 63ms
✅ CredentialPrivacyTests 4 4 0 45ms
✅ CredentialPromptCoordinatorTests 4 4 0 35ms
✅ CredentialSnapshotInvalidationTests 5 0 0 163ms
✅ CrossDeviceBookmarkSyncTests 12 12 0 41ms
✅ CrossDeviceSyncE2ETests 5 5 0 414ms
✅ CrossDomain401Tests 8 8 0 42ms
✅ CrossFormatMappingTests 14 14 0 30ms
✅ DPLAErrorTests 3 3 0 11ms
✅ DRMAdversarialTests 4 1 0 20ms
✅ DRMFulfilledPublicationTests 6 6 0 70ms
✅ DataBase64Tests 3 3 0 70ms
✅ DataReceptionComparisonTests 2 2 0 284ms
✅ DateExtensionTests 9 9 0 9ms
✅ DateFormattingTests 4 4 0 31ms
✅ Date_NYPLAdditionsTests 7 7 0 394ms
✅ DebugSettingsForceSkeletonsTests 4 4 0 90ms
✅ DebugSettingsGapTests 4 4 0 32ms
✅ DebugSettingsTests 31 31 0 271ms
✅ DefaultCatalogAPITests 31 31 0 1.01s
✅ DefaultRecentlyReadingServiceTests 13 13 0 755ms
✅ DeriveInitialStateTests 4 4 0 14ms
✅ DeveloperSettingsEngineeringTierTests 4 4 0 5ms
✅ DeveloperSettingsViewModelOverrideTests 3 0 0 575ms
✅ DeviceLogCollectorGapTests 2 2 0 4ms
✅ DeviceLogCollectorTests 13 13 0 33ms
✅ DeviceOrientationTests 7 7 0 42ms
✅ DeviceSpecificErrorMonitorTests 11 11 0 1.13s
✅ DictionaryExtensionsTests 5 5 0 24ms
✅ DiskBudgetManagerTests 7 7 0 11ms
✅ DiskBudgetTests 2 2 0 5ms
✅ DownloadAlertPresenterTests 8 8 0 188ms
✅ DownloadAnnouncementServiceTests 12 12 0 383ms
✅ DownloadAuthRetryHandlerAuthCoordinatorTests 6 6 0 2.60s
✅ DownloadAuthRetryHandlerTaskLifecycleTests 4 4 0 385ms
✅ DownloadAuthRetryHandlerTests 17 17 0 4.12s
✅ DownloadCancellationHandlerTests 5 5 0 94ms
✅ DownloadCompleteMomentTests 6 6 0 11ms
✅ DownloadCompletionParserTests 9 9 0 154ms
✅ DownloadCoordinatorIntegrationTests 10 10 0 202ms
✅ DownloadCoordinatorTests 11 11 0 222ms
✅ DownloadDiskSpaceTests 2 2 0 2ms
✅ DownloadErrorInfoTests 3 3 0 4ms
✅ DownloadErrorRecoveryPolicyTests 11 11 0 181ms
✅ DownloadErrorRecoveryTests 3 3 0 17ms
✅ DownloadFreeSpaceExhaustionTests 11 11 0 255ms
✅ DownloadInfoTests 5 5 0 93ms
✅ DownloadIntegrityTests 10 10 0 194ms
✅ DownloadOnlyOnWiFiTests 10 10 0 1.25s
✅ DownloadPersistenceStoreTests 5 5 0 74ms
✅ DownloadProgressPublisherCoreTests 19 19 0 674ms
✅ DownloadProgressPublisherTests 2 2 0 16ms
✅ DownloadQueueIntegrationTests 3 3 0 137ms
✅ DownloadQueueOrchestratorTests 9 9 0 207ms
✅ DownloadRMSDKHandoffTests 1 1 0 <1ms
✅ DownloadReconciliationLaunchOrderContractTests 2 2 0 10ms
✅ DownloadReconciliationTests 17 17 0 140ms
✅ DownloadRedirectTests 7 7 0 312ms
✅ DownloadResumeAfterKillTests 7 7 0 189ms
✅ DownloadSlotManagementTests 5 5 0 10ms
✅ DownloadStartCoordinatorContractTests 5 5 0 27ms
✅ DownloadStartCoordinatorTests 9 9 0 117ms
✅ DownloadStartDispatcherContractTests 12 12 0 81ms
✅ DownloadStartDispatcherTests 26 26 0 759ms
✅ DownloadStartReducerContractTests 24 24 0 24ms
✅ DownloadStateMachineIntegrationTests 15 15 0 31ms
✅ DownloadStateMachineTests 5 5 0 430ms
✅ DownloadStateManagerTests 16 16 0 94ms
✅ DownloadTaskLifecycleServiceTests 9 9 0 289ms
✅ DownloadTaskPersistenceTests 14 14 0 48ms
✅ DownloadThrottlingServiceTests 10 10 0 63ms
✅ DownloadTransferRetryTests 6 6 0 2.09s
✅ DownloadWatchdogTests 3 3 0 27ms
✅ EPUBKeyCommandsPP4289Tests 4 4 0 7ms
✅ EPUBModuleTests 4 4 0 318ms
✅ EPUBPositionTests 10 10 0 33ms
✅ EPUBSearchViewModelTests 18 18 0 258ms
✅ EPUBToolbarToggleTests 11 11 0 66ms
✅ EffectBoundaryTests 6 6 0 60ms
✅ EmailAddressTests 16 16 0 77ms
✅ EpubSampleFactoryTests 5 5 0 71ms
✅ ErrorActivityTrackerTests 12 12 0 108ms
✅ ErrorDetailTests 12 12 0 44ms
✅ ErrorDetailViewControllerGapTests 3 3 0 41ms
✅ ErrorDetailViewControllerTests 14 14 0 2.02s
✅ ErrorLogExporterTests 5 5 0 83ms
✅ ExecutorNetworkHermeticityTests 1 1 0 68ms
✅ ExpiredLoanStringsTests 5 5 0 27ms
✅ FacetEnumTests 3 3 0 106ms
✅ FacetToolbarAccessibilityTests 5 5 0 70ms
✅ FacetViewModelLogoDelegateTests 4 4 0 37ms
✅ FacetViewModelTests 18 18 0 57ms
✅ FetchManifestWithBearerTokenLCPSafetyTests 1 1 0 108ms
✅ FetchManifestWithBearerTokenTests 9 9 0 154ms
✅ FetchOpenAccessManifestLCPSafetyTests 4 4 0 283ms
✅ FileURLGenerationTests 3 3 0 11ms
✅ FindawayChapterStatusGuardTests 1 1 0 3ms
✅ FindawaySavedVsPlayedTests 1 1 0 92ms
✅ FloatTPPAdditionsTests 5 5 0 71ms
✅ FocusIndicationTests 7 7 0 82ms
✅ FontManagerTests 17 17 0 144ms
✅ ForceResetTests 6 6 0 268ms
✅ GeneralCacheClearOnUpdateTests 3 3 0 107ms
✅ GeneralCacheTests 20 20 0 1.00s
✅ GroupEnumTests 1 1 0 4ms
✅ HTMLTextViewTests 70 70 0 10.94s
✅ HoldNotificationClassificationTests 2 2 0 19ms
✅ HoldsBadgeCountTests 9 9 0 55ms
✅ HoldsBookViewModelTests 8 8 0 27ms
✅ HoldsReducerTests 11 11 0 117ms
✅ HoldsSyncFailureTests 12 12 0 185ms
✅ HoldsViewModelTests 23 23 0 1.46s
✅ HostFailureTrackerTests 2 2 0 35ms
✅ ImageCacheContinuationTests 1 1 0 30.17s
✅ ImageCacheTypeTests 1 1 0 2ms
✅ ImageCoverKeyUnificationTests 2 2 0 24ms
✅ ImageLoaderTests 14 14 0 75ms
✅ InflightFeedFetchesTimeoutTests 4 4 0 10.28s
✅ IntExtensionsTests 4 4 0 45ms
✅ IsReaderActiveTrackingModifierTests 4 4 0 9ms
✅ KeyboardNavigationFKATests 11 11 0 340ms
✅ KeyboardNavigationHandlerTests 16 16 0 232ms
✅ KeyboardVoiceOverTests 5 5 0 488ms
✅ LCPAcquisitionPredicateTests 4 4 0 8ms
✅ LCPAdapterTests 8 8 0 77ms
✅ LCPAudiobookURLSchemeTests 4 4 0 26ms
✅ LCPAudiobooksTests 21 21 0 253ms
✅ LCPBotanCRLGuardTests 5 5 0 83ms
✅ LCPCharacterizationTests 31 31 0 427ms
✅ LCPClientTests 8 8 0 33ms
✅ LCPFulfillmentHandlerTests 8 8 0 427ms
✅ LCPKeychainMigrationTests 3 3 0 47ms
✅ LCPLibraryServiceTests 20 20 0 299ms
✅ LCPLicenseDocumentDetectionTests 5 5 0 33ms
✅ LCPLicenseFilePathTests 3 3 0 4ms
✅ LCPOrphanedDownloadRegistryTests 4 4 0 87ms
✅ LCPPDFAcquisitionPredicateTests 5 5 0 5ms
✅ LCPPDFDiskExtractTests 5 5 0 52ms
✅ LCPPDFOpenProgressTests 13 13 0 140ms
✅ LCPPassphraseReadinessTests 2 2 0 20ms
✅ LCPSessionIdentifierTests 3 3 0 5ms
✅ LegacySAMLProblemDocumentPropagationTests 7 7 0 256ms
✅ LibrariesSectionViewModelTests 16 16 0 514ms
✅ LibraryCatalogMergerTests 9 9 0 131ms
✅ LibraryRegistryCrawlerTests 15 15 0 376ms
✅ LicensesServiceTests 4 4 0 22ms
✅ LiveCrawlableParsingTest 4 0 0 118ms
✅ LoanEvictionPolicyTests 13 13 0 215ms
✅ LoanRenewalServiceTests 9 9 0 589ms
✅ LocalBookContentServiceTests 7 7 0 21ms
✅ LocalFileAdapterTests 6 5 0 101ms
✅ LogTests 13 13 0 327ms
✅ LoginKeyboardTests 8 8 0 23ms
✅ MainActorHelpersTests 22 22 0 726ms
✅ MappedCatalogBridgeTests 3 3 0 15ms
✅ MappedCatalogModelTests 11 11 0 174ms
✅ MockBackendExpiredCredentialsTests 3 3 0 27ms
✅ MockBackendHoldsTests 3 3 0 334ms
✅ MockBackendIntegrationTests 4 4 0 306ms
✅ MockBackendLoanLimitTests 2 2 0 182ms
✅ MockBackendRouteMatchingTests 4 4 0 90ms
✅ MockBackendServerDownTests 1 1 0 28ms
✅ MockIsolationLintTests 5 5 0 1.43s
✅ MultiLibraryTokenIsolationTests 14 14 0 2.15s
✅ MyBooksDownloadCenterAccountIdThreadingTests 7 7 0 260ms
✅ MyBooksDownloadCenterAdeptGapTests 3 3 0 350ms
✅ MyBooksDownloadCenterConcurrencyTests 22 22 0 248ms
✅ MyBooksDownloadCenterEvictionTests 7 7 0 73ms
✅ MyBooksDownloadCenterOfflineTests 8 8 0 229ms
✅ MyBooksDownloadSessionInvalidationTests 3 3 0 9ms
✅ MyBooksSimplifiedBearerTokenTests 17 17 0 69ms
✅ MyBooksViewModelBooksPublisherTests 3 3 0 24ms
✅ MyBooksViewModelConcurrencyTests 4 4 0 33ms
✅ MyBooksViewModelDownloadStateTests 3 3 0 15ms
✅ MyBooksViewModelEmptyArrayTests 3 3 0 81ms
✅ MyBooksViewModelEmptyStateTests 4 4 0 40ms
✅ MyBooksViewModelExtendedTests 15 15 0 4.15s
✅ MyBooksViewModelFacetIntegrationTests 4 4 0 25ms
✅ MyBooksViewModelFacetPublisherTests 5 5 0 49ms
✅ MyBooksViewModelFilterSortInteractionTests 2 2 0 8ms
✅ MyBooksViewModelFilterTests 9 9 0 922ms
✅ MyBooksViewModelGuardConditionsTests 2 2 0 12ms
✅ MyBooksViewModelLargeDatasetTests 2 2 0 154ms
✅ MyBooksViewModelLoadAccountTests 2 2 0 120ms
✅ MyBooksViewModelLoginStateTests 4 4 0 319ms
✅ MyBooksViewModelMultipleAuthorSortingTests 3 3 0 15ms
✅ MyBooksViewModelNotificationTests 4 4 0 320ms
✅ MyBooksViewModelOfflineFilteringTests 3 3 0 9ms
✅ MyBooksViewModelPublisherTests 7 7 0 49ms
✅ MyBooksViewModelSearchEdgeCaseTests 6 6 0 158ms
✅ MyBooksViewModelSearchQueryTests 3 3 0 420ms
✅ MyBooksViewModelSortPersistenceTests 3 3 0 29ms
✅ MyBooksViewModelSortingIntegrationTests 5 5 0 39ms
✅ MyBooksViewModelSortingTests 6 6 0 702ms
✅ MyBooksViewModelStateTransitionTests 3 3 0 353ms
✅ MyBooksViewModelUIBindingTests 3 3 0 30ms
✅ NSErrorAdditionsTests 7 7 0 201ms
✅ NSNotificationTPPTests 3 3 0 7ms
✅ NavigationCoordinatorTests 18 18 0 34ms
✅ NavigationFreezePreventionTests 5 5 0 6ms
✅ NetworkCacheClearRoutingTests 3 3 0 17ms
✅ NetworkExecutorCredentialGuardTests 8 8 0 283ms
✅ NetworkExecutorResponseRegressionTests 4 4 0 40ms
✅ NetworkExecutorTaskTypeTests 3 3 0 184ms
✅ NetworkOfflineDetectionTests 3 3 0 85ms
✅ NetworkQueueTests 11 11 0 2.82s
✅ NetworkRequestQueueTests 2 2 0 10.10s
✅ NetworkRetryLogicTests 7 7 0 60ms
✅ NetworkTimeoutTests 2 2 0 1ms
✅ NotificationEventTypeContractTests 7 7 0 29ms
✅ NotificationPayloadContractTests 10 10 0 63ms
✅ NotificationServiceStateMachineTests 9 9 0 470ms
✅ NotificationServiceTests 16 16 0 255ms
✅ NotificationServiceTokenTests 13 13 0 33ms
✅ NotificationSyncThrottleTests 5 5 0 150ms
✅ NotificationTokenDataTests 4 4 0 16ms
✅ NotificationTokenRegistrationTests 10 10 0 643ms
✅ NowPlayingCoordinatorBackgroundTests 6 6 0 2.33s
✅ NowPlayingCoordinatorTests 19 19 0 1.28s
✅ OAuthSAMLRedirectRegressionTests 4 4 0 576ms
✅ OIDCAuthDocumentParsingTests 4 4 0 179ms
✅ OIDCAuthTypeTests 5 5 0 18ms
✅ OIDCAuthenticationPropertyTests 8 8 0 1.06s
✅ OIDCCallbackEdgeCaseTests 9 9 0 337ms
✅ OIDCCallbackHandlingTests 5 5 0 833ms
✅ OIDCCallbackSchemeTests 3 3 0 2ms
✅ OIDCIsolationRegressionTests 6 6 0 5.68s
✅ OIDCLoginRoutingTests 3 3 0 143ms
✅ OIDCMakeRequestTests 3 3 0 117ms
✅ OIDCNSCodingTests 1 1 0 196ms
✅ OIDCNetworkLayer401Tests 5 5 0 286ms
✅ OIDCReauthOnExpiredTokenTests 5 5 0 169ms
✅ OIDCRedirectURIConstructionTests 6 6 0 203ms
✅ OIDCRegressionTests 9 9 0 316ms
✅ OIDCSelectedAuthenticationTests 2 2 0 64ms
✅ OIDCSignOutRegressionTests 6 6 0 488ms
✅ OIDCTokenRefreshRegressionTests 6 6 0 461ms
✅ OIDCUpdateUserAccountTests 5 5 0 195ms
✅ OIDCViewModelRegressionTests 1 1 0 61ms
✅ OIDCViewModelSignInTests 2 2 0 10ms
✅ OPDS1BorrowEntryContractTests 4 4 0 25ms
✅ OPDS1CatalogGroupedContractTests 3 3 0 9ms
✅ OPDS1HoldEntriesContractTests 4 4 0 9ms
✅ OPDS1LoansFeedContractTests 6 6 0 78ms
✅ OPDS1ParsingTests 34 34 0 290ms
✅ OPDS1RevokeResponseContractTests 2 2 0 7ms
✅ OPDS2AuthenticationDocumentTests 18 18 0 60ms
✅ OPDS2AvailabilityTests 4 4 0 7ms
✅ OPDS2BookBridgeTests 44 44 0 207ms
✅ OPDS2BorrowResponseContractTests 3 3 0 66ms
✅ OPDS2CatalogWiringTests 21 21 0 259ms
✅ OPDS2CatalogsFeedTests 3 3 0 404ms
✅ OPDS2ContributorTests 2 2 0 1ms
✅ OPDS2EmptyFeedContractTests 1 1 0 4ms
✅ OPDS2FeedContractTests 4 4 0 67ms
✅ OPDS2FeedParsingTests 11 11 0 155ms
✅ OPDS2FeedTests 14 14 0 75ms
✅ OPDS2FullMetadataTests 4 4 0 96ms
✅ OPDS2FullPublicationTests 13 13 0 36ms
✅ OPDS2IntegrationTests 18 18 0 281ms
✅ OPDS2LinkArrayTests 5 5 0 50ms
✅ OPDS2LinkComputedPropertyTests 20 20 0 380ms
✅ OPDS2LinkRelTests 1 1 0 2ms
✅ OPDS2LinkTests 2 2 0 50ms
✅ OPDS2ParsingTests 38 38 0 574ms
✅ OPDS2PublicationExtendedTests 53 53 0 163ms
✅ OPDS2PublicationImageTests 6 6 0 142ms
✅ OPDS2PublicationNarratorTests 3 3 0 3ms
✅ OPDS2PublicationTests 2 2 0 49ms
✅ OPDS2SamlIDPTests 6 6 0 22ms
✅ OPDS2SearchResultsContractTests 3 3 0 25ms
✅ OPDS2SubjectTests 2 2 0 35ms
✅ OPDS2SupportingTypesTests 5 5 0 14ms
✅ OPDSAcquisitionPathExpandedTests 15 15 0 99ms
✅ OPDSFeedCacheTests 14 14 0 29ms
✅ OPDSFeedMigrationTests 11 11 0 29ms
✅ OPDSFeedParsingTests 2 2 0 56ms
✅ OPDSFeedServiceStateMachineTests 3 3 0 182ms
✅ OPDSFeedServiceTests 2 2 0 6ms
✅ OPDSFormatTests 13 13 0 26ms
✅ OPDSParserCoreTests 4 4 0 4ms
✅ OPDSParserTests 4 4 0 60ms
✅ OPDSParsingTests 57 57 0 1.43s
✅ OfflineActionTests 29 29 0 2.12s
✅ OfflineQueueCoordinatorTests 11 11 0 36ms
✅ OfflineQueueServiceExtendedTests 13 13 0 5.29s
✅ OfflineQueueServiceTests 17 17 0 7.49s
✅ OpenAccessAdapterTests 13 13 0 201ms
✅ OverdriveDeferredFulfillmentTests 6 6 0 34ms
✅ OverdriveDownloadHandlerTests 9 9 0 633ms
✅ OverdriveFulfillmentTests 25 24 0 113ms
✅ PDFExtensionsTests 20 20 0 167ms
✅ PDFKitThumbnailProviderTests 5 5 0 36ms
✅ PDFReaderTests 12 12 0 16ms
✅ PDFSearchEmptyStateTests 4 4 0 10ms
✅ PP3596RegressionTests 3 3 0 19ms
✅ Palace 2 2 0 <1ms
✅ PalaceCheckPropertyTests 8 8 0 100ms
✅ PalaceErrorCategoryTests 20 20 0 341ms
✅ PalaceErrorExtendedTests 23 23 0 1.24s
✅ PalaceErrorTests 11 11 0 58ms
✅ PalaceHapticTests 4 4 0 6ms
✅ PalaceMotionTests 11 11 0 136ms
✅ PalacePDFViewTests 12 12 0 332ms
✅ PalacePressableButtonStyleTests 6 6 0 9ms
✅ PalaceTestSetupObservationTests 4 4 0 27.64s
✅ PalaceWiringTestCaseTests 4 4 0 547ms
✅ ParserFuzzTests 4 4 0 9.40s
✅ PatronProfileContractTests 4 4 0 5ms
✅ PerformanceMonitorTests 14 14 0 228ms
✅ PerformanceReportTests 14 14 0 38ms
✅ PersistentLoggerTests 9 9 0 726ms
✅ PlaybackBootstrapperAudioSessionTests 2 2 0 149ms
✅ PlaybackBootstrapperTests 8 8 0 2.22s
✅ PlaybackFailureRecordTests 5 5 0 94ms
✅ PlaybackOpenPolicyTests 7 7 0 101ms
✅ PlaybackRateTests 18 18 0 156ms
✅ PlaybackTrackingRegressionTests 5 5 0 49ms
✅ PoolResponsivenessProbeTests 5 4 0 1.86s
✅ PositionPersistenceLogicTests 6 6 0 15ms
✅ PositionPersistenceTests 2 2 0 52ms
✅ PositionSyncServiceTests 13 13 0 116ms
✅ PositionSyncTests 5 5 0 35ms
✅ PositionWriterContractTests 6 6 0 64ms
✅ PostUpdateMigrationTests 5 5 0 13ms
✅ ProblemDocumentContractTests 4 4 0 10ms
✅ ProblemDocumentLoanExpiryTests 5 5 0 29ms
✅ ProblemDocumentTests 12 12 0 27ms
✅ ProblemReportEmailTests 8 8 0 47ms
✅ RatingCardMotionGateTests 5 5 0 29ms
✅ RatingEligibilityPolicyTests 17 17 0 149ms
✅ RatingEngagementTrackerTests 9 9 0 137ms
✅ RatingFeedbackPresenterTests 3 3 0 13ms
✅ RatingPromptPresenterTests 15 15 0 648ms
✅ ReachabilityTests 10 10 0 1.29s
✅ Reader2BookmarkContractTests 3 3 0 31ms
✅ Reader2PositionAdapterContractTests 4 3 0 262ms
✅ Reader2PositionResumeContractTests 3 3 0 146ms
✅ ReaderAccessibilityTests 7 7 0 2.24s
✅ ReaderChromeToggleFadeTests 3 3 0 31ms
✅ ReaderEditingActionsTests 5 5 0 89ms
✅ ReaderErrorTests 5 5 0 11ms
✅ ReaderNavBarVoiceOverTests 2 2 0 20ms
✅ ReaderServicePDFRouteTests 3 3 0 73ms
✅ ReaderServiceSyncTests 3 3 0 85ms
✅ ReaderThemeTests 24 24 0 194ms
✅ ReadingPositionTests 22 22 0 594ms
✅ ReadingSessionTrackerTests 13 13 0 281ms
✅ ReadingStatsServiceTests 12 12 0 122ms
✅ ReadingStatsStoreTests 9 9 0 241ms
✅ RedirectHandlingIntegrationTests 4 4 0 6ms
✅ RedirectPolicyTests 9 9 0 44ms
✅ RegistryFileRecoveryTests 21 21 0 91ms
✅ RemoteFeatureFlagsGapTests 4 4 0 30ms
✅ RemoteFeatureFlagsSideLoadingTests 5 5 0 21ms
✅ RemoteFeatureFlagsTests 21 21 0 737ms
✅ ResourcePropertiesLengthTests 3 3 0 310ms
✅ RetryClassificationTests 17 17 0 131ms
✅ ReturnFlowTests 1 1 0 <1ms
✅ ReturnReducerContractTests 16 16 0 52ms
✅ RightsManagementDetectionTests 5 5 0 4ms
✅ RightsManagementDispatcherTests 10 10 0 235ms
✅ RuntimeQuiescenceGateTests 11 10 0 1.12s
✅ RuntimeQuiescenceLintTests 5 5 0 806ms
✅ SAMLCookieSyncTests 5 5 0 21ms
✅ SAMLLogoutCallbackDetectionTests 4 4 0 51ms
✅ SAMLLogoutLinkParsingTests 5 5 0 312ms
✅ SAMLLogoutURLTests 4 4 0 7ms
✅ SAMLPlusBiblioBoardExpirationTests 8 8 0 384ms
✅ SEMigrationsTests 6 6 0 72ms
✅ SafeDictionaryTests 21 21 0 169ms
✅ SamplePlayerErrorTests 5 5 0 4ms
✅ SampleTypeTests 8 8 0 26ms
✅ SceneDelegateTests 1 1 0 <1ms
✅ ScopedResetTests 9 9 0 185ms
✅ SearchAccessibilityTests 11 11 0 55ms
✅ SearchFlowIntegrationTests 8 8 0 87ms
✅ SettingsViewModelComputedPropertyTests 6 6 0 92ms
✅ SettingsViewModelEdgeCaseTests 7 7 0 74ms
✅ SettingsViewModelGapTests 1 1 0 4ms
✅ SettingsViewModelSyncTests 14 14 0 323ms
✅ SettingsViewModelTests 33 33 0 529ms
✅ SideloadBoundaryTests 6 6 0 62ms
✅ SideloadImportContractTests 1 1 0 50ms
✅ SideloadedBookManagerTests 17 17 0 272ms
✅ SideloadedBookRegistryTests 14 14 0 55ms
✅ SideloadedLaneBridgeTests 6 6 0 18ms
✅ SideloadedLaneViewModelTests 7 7 0 47ms
✅ SignInFormPresentationTests 3 3 0 27ms
✅ SignInModalLifecycleTests 9 9 0 598ms
✅ SignInModalPredicateTests 3 3 0 17ms
✅ SignInModalSAMLOIDCTests 6 6 0 74ms
✅ SignInOAuthErrorPropagationTests 8 8 0 438ms
✅ SignInToReadFlowIntegrationTests 5 5 0 488ms
✅ SignInWebSheetIntegrationTests 3 3 0 3.00s
✅ SignInWebSheetViewModelTests 31 31 0 260ms
✅ SignOutCacheClearingTests 3 3 0 41ms
✅ SingletonResetRegistryTests 5 5 0 91ms
✅ SkeletonTests 22 22 0 339ms
✅ StatsViewModelTests 10 10 0 369ms
✅ StatusAnnouncementTests 22 22 0 473ms
✅ StopPositionSaveTests 2 2 0 1ms
✅ StoreTests 5 5 0 19ms
✅ StreamingReaderPresentationContractTests 1 1 0 9ms
✅ StreamingReaderProgressStoreTests 7 7 0 32ms
✅ StreamingReaderViewControllerScrollRestoreTests 12 12 0 757ms
✅ StreamingReaderViewModelTests 9 9 0 94ms
✅ StringExtensionTests 8 8 0 116ms
✅ StringExtensionsTests 3 3 0 6ms
✅ StringHTMLEntitiesTests 7 7 0 61ms
✅ StringNYPLAdditionsTests 4 4 0 159ms
✅ String_NYPLAdditionsTests 4 4 0 33ms
✅ SupportSectionDecisionTests 5 5 0 312ms
✅ SyncConflictResolutionTests 3 3 0 36ms
✅ SyncDeletionGuardTests 5 5 0 5ms
✅ SyncDeletionRatioTests 6 6 0 4ms
✅ SyncPermissionTests 5 5 0 88ms
✅ TPPAccountAuthStateEnumTests 5 5 0 134ms
✅ TPPAccountListDataSourceTests 3 3 0 7ms
✅ TPPAdobeActivationSkipTests 6 6 0 380ms
✅ TPPAgeCheckCompletionTests 5 5 0 179ms
✅ TPPAgeCheckIsValidTests 5 5 0 24ms
✅ TPPAgeCheckStateMachineTests 4 4 0 396ms
✅ TPPAgeCheckTests 6 6 0 1.63s
✅ TPPAgeCheckVerifyDecisionTests 5 5 0 387ms
✅ TPPAlertUtilsTests 45 45 0 693ms
✅ TPPAnnotationsHermeticTests 15 15 0 98ms
✅ TPPAnnotationsOverrideTests 4 4 0 83ms
✅ TPPAnnotationsTests 29 29 0 1.10s
✅ TPPAnnouncementManagerTests 3 3 0 114ms
✅ TPPAuthDocumentContractTests 3 3 0 17ms
✅ TPPBackgroundExecutorTests 3 3 0 11ms
✅ TPPBadgeImageGapTests 2 2 0 12ms
✅ TPPBaseReaderViewControllerInitialLocationTests 10 10 0 111ms
✅ TPPBasicAuthTests 11 11 0 15ms
✅ TPPBookAccessibilityLabelTests 8 8 0 51ms
✅ TPPBookAuthorCoverageTests 3 3 0 16ms
✅ TPPBookAuthorTests 6 6 0 143ms
✅ TPPBookBearerTokenTests 9 8 0 70ms
✅ TPPBookButtonsStateTests 7 7 0 16ms
✅ TPPBookContentMetadataFilesHelperTests 9 9 0 11ms
✅ TPPBookContentTypeConverterStreamingHTMLTests 2 2 0 5ms
✅ TPPBookContentTypeConverterTests 4 4 0 5ms
✅ TPPBookContentTypeExtendedTests 4 4 0 3ms
✅ TPPBookContentTypeTests 14 14 0 95ms
✅ TPPBookCoverRegistryTests 17 17 0 432ms
✅ TPPBookCreationTests 7 7 0 400ms
✅ TPPBookExtensionsTests 21 21 0 105ms
✅ TPPBookIsDRMProtectedTests 9 9 0 66ms
✅ TPPBookLocationCoverageTests 7 7 0 698ms
✅ TPPBookLocationEdgeCaseTests 27 27 0 143ms
✅ TPPBookLocationKeyTests 3 3 0 3ms
✅ TPPBookLocationTests 11 11 0 21ms
✅ TPPBookModelGapTests 4 4 0 11ms
✅ TPPBookRegistryAsyncReadinessTests 3 3 0 1.07s
✅ TPPBookRegistryAtomicWriteTests 7 7 0 828ms
✅ TPPBookRegistryBookRetrievalTests 7 7 0 52ms
✅ TPPBookRegistryBookmarkTests 7 7 0 569ms
✅ TPPBookRegistryCorruptedDataTests 5 5 0 16ms
✅ TPPBookRegistryDataTests 4 4 0 143ms
✅ TPPBookRegistryDependencyTests 4 4 0 137ms
✅ TPPBookRegistryFulfillmentIdTests 4 4 0 65ms
✅ TPPBookRegistryLargeCorpusTests 5 5 0 30.52s
✅ TPPBookRegistryLoadReentrancyTests 2 2 0 3ms
✅ TPPBookRegistryLocationTests 4 4 0 73ms
✅ TPPBookRegistryMigrationTests 16 16 0 1.59s
✅ TPPBookRegistryMutationContractTests 10 10 0 174ms
✅ TPPBookRegistryPersistenceTests 10 10 0 2.36s
✅ TPPBookRegistryProcessingTests 2 2 0 6ms
✅ TPPBookRegistryPublisherTests 6 6 0 656ms
✅ TPPBookRegistryRecordPersistenceTests 3 3 0 24ms
✅ TPPBookRegistryRecordTests 10 10 0 489ms
✅ TPPBookRegistryStateConcurrencyTests 2 2 0 40ms
✅ TPPBookRegistryStateManagementTests 11 11 0 386ms
✅ TPPBookRegistryThreadSafetyTests 3 3 0 80ms
✅ TPPBookRegistryUpdateAndRemoveTests 1 1 0 5ms
✅ TPPBookRequiresAdobeDRMTests 6 6 0 54ms
✅ TPPBookSerializationTests 13 13 0 66ms
✅ TPPBookStateInitializationTests 4 4 0 7ms
✅ TPPBookStateTests 4 4 0 204ms
✅ TPPBookTests 98 98 0 1.56s
✅ TPPBookmarkDeletionLogTests 11 11 0 97ms
✅ TPPBookmarkFactoryInitTests 2 2 0 8ms
✅ TPPBookmarkFactoryServerAnnotationEdgeCaseTests 5 5 0 80ms
✅ TPPBookmarkFactoryTests 15 15 0 197ms
✅ TPPBookmarkR3ConversionTests 5 5 0 10ms
✅ TPPBookmarkR3LocationTests 13 13 0 157ms
✅ TPPBookmarkSpecTests 1 1 0 3ms
✅ TPPCachingTests 3 3 0 17ms
✅ TPPCapturedCredentialsTests 5 5 0 190ms
✅ TPPConfigurationCustomRegistryTests 16 16 0 554ms
✅ TPPConfigurationTests 22 22 0 64ms
✅ TPPContentTypeTests 9 9 0 86ms
✅ TPPCredentialConcurrencyTests 3 3 0 134ms
✅ TPPCredentialIsolationE2ETests 5 0 0 183ms
✅ TPPCredentialPersistenceTests 6 6 0 229ms
✅ TPPCredentialSnapshotCoherenceTests 3 0 0 185ms
✅ TPPCredentialSnapshotTests 8 8 0 11ms
✅ TPPCredentialsCoverageTests 9 9 0 63ms
✅ TPPCredentialsTests 26 26 0 326ms
✅ TPPCrossLibrarySignOutTests 6 6 0 391ms
✅ TPPDRMFailureCredentialPreservationTests 4 4 0 317ms
✅ TPPErrorLoggerTests 27 27 0 98ms
✅ TPPIdleSignOutRegressionTests 13 13 0 729ms
✅ TPPJWKConversionTest 1 1 0 334ms
✅ TPPKeychainManagerTests 5 5 0 180ms
✅ TPPLastReadPositionPosterTests 13 13 0 117ms
✅ TPPLastReadPositionSynchronizerIntegrationTests 5 5 0 59ms
✅ TPPLastReadPositionSynchronizerTests 23 23 0 43ms
✅ TPPLastReadPositionSynchronizer_BehaviorDocumentationTests 5 5 0 17ms
✅ TPPLastReadPositionSynchronizer_BookLocationTests 9 9 0 134ms
✅ TPPLastReadPositionSynchronizer_ConcurrencyTests 3 3 0 11ms
✅ TPPLastReadPositionSynchronizer_ReadiumBookmarkTests 9 9 0 97ms
✅ TPPLastReadPositionSynchronizer_SyncLogicTests 10 10 0 566ms
✅ TPPLastReadPositionSynchronizer_WriterDelegationTests 4 4 0 113ms
✅ TPPLoginNoActivationTests 3 3 0 121ms
✅ TPPMainThreadCheckerTests 4 4 0 15ms
✅ TPPMigrationManagerTests 15 15 0 337ms
✅ TPPNetworkExecutorAPITests 14 14 0 45ms
✅ TPPNetworkExecutorConcurrencyTests 4 4 0 306ms
✅ TPPNetworkExecutorStubbedTests 17 17 0 268ms
✅ TPPNetworkExecutorTests 3 3 0 8ms
✅ TPPNetworkResponderAuthCoordinatorTests 5 5 0 82ms
✅ TPPNetworkResponderSizeLimitTests 5 5 0 188ms
✅ TPPNetworkResponderTests 12 12 0 77ms
✅ TPPOPDSAcquisitionPathTests 5 5 0 19ms
✅ TPPOPDSEntryTests 5 5 0 750ms
✅ TPPOPDSFeedTests 3 3 0 58ms
✅ TPPOPDSGroupSwiftTests 3 3 0 131ms
✅ TPPOPDSLinkTests 7 7 0 37ms
✅ TPPOpenSearchDescriptionExpandedTests 10 10 0 10ms
✅ TPPOpenSearchDescriptionTests 1 1 0 3ms
✅ TPPPDFDocumentMetadataTests 15 15 0 986ms
✅ TPPPDFDocumentTests 8 8 0 72ms
✅ TPPPDFLocationCoverageTests 7 7 0 34ms
✅ TPPPDFLocationTests 10 10 0 240ms
✅ TPPPDFPageBookmarkTests 9 9 0 88ms
✅ TPPPDFPageTests 5 5 0 15ms
✅ TPPPDFReaderModeTests 6 6 0 83ms
✅ TPPPDFReaderSearchBindingTests 3 3 0 6ms
✅ TPPPerAccountIsolationTests 8 0 0 315ms
✅ TPPPreferredAuthSelectionTests 8 8 0 821ms
✅ TPPProblemDocumentCacheManagerTests 12 12 0 27ms
✅ TPPProblemDocumentTests 21 21 0 447ms
✅ TPPReaderAppearanceTests 4 4 0 52ms
✅ TPPReaderBlockNavigationTests 12 12 0 9ms
✅ TPPReaderBookmarksBusinessLogicTests 12 12 0 618ms
✅ TPPReaderBookmarksReadinessTests 2 2 0 338ms
✅ TPPReaderFontTests 4 4 0 80ms
✅ TPPReaderFootnoteAccessibilityTests 16 16 0 32ms
✅ TPPReaderPageListBusinessLogicTests 27 27 0 61ms
✅ TPPReaderPositionReportTests 10 10 0 74ms
✅ TPPReaderPreferencesLoadTests 3 3 0 18ms
✅ TPPReaderSettingsTests 28 28 0 75ms
✅ TPPReaderTOCBusinessLogicTests 15 15 0 296ms
✅ TPPReaderTOCFlattenTests 2 2 0 4ms
✅ TPPReadiumBookmarkLocationMatchingTests 5 5 0 158ms
✅ TPPReadiumBookmarkTests 23 23 0 73ms
✅ TPPReauthenticatorMockTests 2 2 0 1ms
✅ TPPReauthenticatorTests 4 4 0 72ms
✅ TPPReturnPromptHelperTests 5 5 0 19ms
✅ TPPSAMLCookieExpirationTests 7 7 0 225ms
✅ TPPSAMLFlowTests 10 10 0 17ms
✅ TPPSAMLReauthFlowTests 2 2 0 88ms
✅ TPPSAMLRegressionTests 4 4 0 448ms
✅ TPPSAMLSignInTests 26 26 0 1.29s
✅ TPPSAMLStateIsolationTests 4 4 0 156ms
✅ TPPSAMLStateMachineTests 6 6 0 191ms
✅ TPPSettingsTests 6 6 0 583ms
✅ TPPSignInAdobeSkipTests 14 14 0 1.53s
✅ TPPSignInAuthStateTransitionTests 3 3 0 1.10s
✅ TPPSignInBusinessLogicExtendedTests 58 58 0 1m 10s
✅ TPPSignInBusinessLogicOAuthTests 11 11 0 323ms
✅ TPPSignInBusinessLogicSignOutTests 11 11 0 511ms
✅ TPPSignInBusinessLogicStateMachineTests 10 10 0 426ms
✅ TPPSignInBusinessLogicTests 18 18 0 732ms
✅ TPPSignInBusinessLogicTokenFlowTests 3 3 0 134ms
✅ TPPSignInBusinessLogicValidationCallbackOrderTests 2 2 0 118ms
✅ TPPSignInErrorHandlingTests 2 2 0 144ms
✅ TPPSignInProfileDocEdgeCaseTests 3 3 0 227ms
✅ TPPSignedInStateProviderTests 3 3 0 6ms
✅ TPPUserAccountAuthStateTests 6 6 0 4ms
✅ TPPUserAccountConcurrencyTests 1 1 0 31ms
✅ TPPUserAccountGapTests 4 4 0 6ms
✅ TPPUserAccountIsolationLintTests 3 3 0 1.06s
✅ TPPUserAccountTestFactoryTests 7 0 0 252ms
✅ TPPUserFriendlyErrorTests 11 11 0 39ms
✅ TPPUserNotificationsTests 10 10 0 83ms
✅ TPPXMLSwiftTests 16 16 0 56ms
✅ TPPXMLTests 3 3 0 5ms
✅ TabBarModernizationTests 8 8 0 736ms
✅ TearDownRequiredLintTests 5 5 0 2.22s
✅ TestAppContainerFactoryTests 5 5 0 43ms
✅ TestTargetHermeticityRegressionTests 4 3 0 384ms
✅ TimeEntryTests 3 3 0 10ms
✅ TokenRefreshAndRetryQueueTests 9 9 0 1.59s
✅ TokenRefreshIntegrationTests 2 2 0 60ms
✅ TokenRefreshInterceptorAuthCoordinatorTests 8 8 0 66ms
✅ TokenRefreshInterceptorTests 24 24 0 309ms
✅ TokenRefreshOnForegroundTests 10 10 0 1.98s
✅ TokenRefreshTests 25 25 0 422ms
✅ TokenRefreshWatchdogTests 5 5 0 20ms
✅ TokenRequestCredentialGuardTests 13 13 0 5.65s
✅ TokenRequestTests 11 11 0 63ms
✅ TokenResponseTests 21 21 0 418ms
✅ TriageBotKeyAdminTests 4 4 0 203ms
✅ TypographyPresetTests 21 21 0 234ms
✅ TypographyServiceTests 31 31 0 809ms
✅ TypographySettingsViewModelTests 27 27 0 743ms
✅ UIAlertCACommitGuardTests 9 9 0 9.45s
✅ UIColor_NYPLAdditionsTests 1 1 0 2ms
✅ URLBackupExclusionTests 3 3 0 10ms
✅ URLExtensionTests 16 16 0 539ms
✅ URLExtensionsTests 11 11 0 11ms
✅ URLRequestExtensionsCoverageTests 3 3 0 2ms
✅ URLRequestExtensionsTests 11 11 0 27ms
✅ URLRequestNYPLAdditionsTests 11 11 0 149ms
✅ URLRequest_NYPLTests 1 1 0 1ms
✅ URLResponseAuthenticationTests 10 10 0 87ms
✅ URLResponseNYPLTests 14 14 0 229ms
✅ URLSessionCredentialStorageTests 3 3 0 17ms
✅ URLSessionStubbingResetTests 2 2 0 6ms
✅ URLTypeTests 2 2 0 11ms
✅ URLValidationTests 5 5 0 126ms
✅ UnifiedOPDSServiceStateMachineTests 2 2 0 171ms
✅ UserAccountPublisherAuthStateTests 5 5 0 23ms
✅ UserAccountPublisherTests 14 14 0 298ms
✅ UserAccountValidationTests 11 11 0 591ms
✅ UserDefaultsIsolationLintTests 2 2 0 613ms
✅ UserProfileDocumentTests 7 7 0 1.43s
✅ UserRetryTrackerTests 10 10 0 198ms
✅ XCTestCase_testUserDefaultsTests 3 3 0 263ms
✅ iPadOnMacRMSDKGuardTests 7 7 0 42ms

📊 Testing Coverage Breakdown

Unit Test Line Coverage (testable surfaces): 45.8%

Total coverage incl. UI/lifecycle: 44.8% (17 files excluded from testable denominator — see scripts/coverage-exclude.json)

Target Lines Covered
Palace.app 44.8%

Why two coverage numbers? Testable coverage subtracts files that can't be exercised from xcodebuild — SwiftUI views, UIKit VCs, lifecycle (see scripts/coverage-exclude.json) — so raising it means more testable logic is tested, not that we shipped less UI. Total coverage is kept for continuity. The excluded paths are covered by simdrive E2E journeys (see chaos-replay-on-pr.yml).


🔗 Interactive HTML Report | CI Run Details

📦 Downloadable Artifacts
Artifact Description
test-report 📄 Markdown + HTML reports
test-data 📊 JSON data for tooling
test-results 🔍 Full xcresult (open in Xcode)

@mauricecarrier7
mauricecarrier7 merged commit 428c35e into develop Jul 22, 2026
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant