Skip to content

PP-4542 F-012: keep a Settings support path when the triage bot is disabled#1054

Open
mauricecarrier7 wants to merge 1 commit into
developfrom
fix/pp4542-f012-support-fallback
Open

PP-4542 F-012: keep a Settings support path when the triage bot is disabled#1054
mauricecarrier7 wants to merge 1 commit into
developfrom
fix/pp4542-f012-support-fallback

Conversation

@mauricecarrier7

Copy link
Copy Markdown
Contributor

Problem

TPPSettingsView.supportSection wrapped the entire main-Settings "Support" section in if RemoteFeatureFlags.shared.isTriageBotEnabled with no else. The triage_bot_enabled Firebase flag defaults to false in production (FirebaseManager.swift:105), so in production the Support section never appears — and a patron on a library without a supportEmail/supportURL has no in-app support path at all. A kill-switch should degrade to legacy support, not delete the entry point.

(Not a strict regression vs 3.1.0 — main Settings had no Support section then either — but #1032 shipped a support feature that is invisible in production with no fallback. Caught during PP-4542 manual review.)

Fix

Introduced a pure, testable seam SupportSectionDecision.decide(isTriageBotEnabled:supportEmail:):

  • bot ON.triageBot (the existing "Get Help" → TriageBotSupportView row, byte-for-byte unchanged).
  • bot OFF.legacyEmail(account.supportEmail ?? "support@thepalaceproject.org") → a "Report an Issue" row that opens the legacy ProblemReportEmail compose flow (which already handles the no-mail-configured case with an alert).

The Support section now always renders, so support is reachable for every library/config.

Tests (SupportSectionDecisionTests, 5)

  • bot ON → .triageBot regardless of email (legacy not shown)
  • bot OFF + account email → that email
  • bot OFF + no/empty email → general fallback support@thepalaceproject.org (the critical "support still reachable" case)
  • bot OFF + no current account → general fallback (never a no-op)

** TEST SUCCEEDED ** (5/5). Mutation surface is if let/bool (not auto-mutable); hand-verified by neutralizing the fallback and the flag check → tests fail. DoD checks (name-vs-body, blast-radius, superpartner) exit 0. Bot-ON path confirmed unchanged via diff.

Jira: PP-4542 (F-012)

…+ legacy email when triage bot OFF

`TPPSettingsView.supportSection` only rendered a Support section when
`RemoteFeatureFlags.shared.isTriageBotEnabled`. The production Firebase
default for `triage_bot_enabled` is FALSE, so in production the Support
section vanished entirely, leaving users with no app-level support path.

Add a `SupportSectionDecision` seam — a pure, fixture-free decision that
maps (isTriageBotEnabled, currentAccount/supportEmail) to `.triageBot` or
`.legacyEmail(address:)`. The section now ALWAYS renders:
- bot ON: unchanged "Get Help" -> TriageBotSupportView row (byte-for-byte).
- bot OFF: legacy "Report an Issue" row -> ProblemReportEmail.beginComposing,
  addressed to the current account's supportEmail, else the general fallback
  support@thepalaceproject.org. Empty/nil email also falls back, never a
  no-op. beginComposing already alerts when mail isn't configured, so the
  row is always safe to offer.

Tests (PalaceTests/Settings/SupportSectionDecisionTests) pin all four
branches as behavior assertions, incl. the critical no-supportEmail-still-
reachable case. Hand mutation-verified: removing the `!email.isEmpty` guard
kills the empty-email test; inverting the bot gate kills 4/5.

**Scope:** Palace/Settings/NewSettings/TPPSettingsView.swift (seam + else
branch + presentLegacyReportIssue/topViewController helpers) and the new
test file. No change to ProblemReportEmail, RemoteFeatureFlags, or
FirebaseManager. Bot-ON path verified byte-for-byte unchanged.

**Not done:** no simdrive E2E pass (SwiftUI body not driven); decision
covered by unit tests at the production seam.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@github-actions

github-actions Bot commented Jun 9, 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 22 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 0.55 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 Jun 9, 2026

Copy link
Copy Markdown

🧪 Unit Test Results

📊 View Full Interactive Report

❌ 3 TESTS FAILED

7131 tests | 7028 passed | 3 failed | 100 skipped | ⏱️ 7m 43s | 📊 98.6% | 📈 47.8% coverage

Tests by Class — 821 classes, 3 with failures
Class Tests Passed Failed Duration
✅ AccessLintComplianceTests 11 11 0 87ms
✅ AccessibilityAnnouncementCenterTests 20 20 0 1.57s
✅ AccessibilityLabelTests 9 9 0 21ms
✅ AccessibilityPreferencesTests 26 26 0 274ms
✅ AccessibilityServiceTests 11 11 0 59ms
✅ AccountAuthDocCarryoverTests 5 5 0 538ms
✅ AccountAuthSurfaceHostsTests 7 7 0 75ms
✅ AccountAwareNetworkTests 10 10 0 534ms
✅ AccountDetailCredentialStateTests 7 0 0 51ms
✅ AccountDetailPINVisibilityTests 25 0 0 991ms
✅ AccountDetailSignOutConfirmationTests 2 0 0 38ms
✅ AccountDetailViewModelGapTests 1 1 0 70ms
✅ AccountDetailViewModelTests 19 0 0 102ms
✅ AccountDetailsAuthenticationIsBrowserBasedTests 10 10 0 90ms
✅ AccountDetailsNeedsAuthAggregateTests 10 10 0 29ms
✅ AccountDetailsURLTests 17 17 0 102ms
✅ AccountModelGapTests 9 9 0 692ms
✅ AccountModelTests 20 20 0 59ms
✅ AccountProfileDocumentTests 3 3 0 12ms
✅ AccountStateMachineTests 10 10 0 104ms
✅ AccountSwitchCleanupTests 8 8 0 91ms
✅ AccountSwitchIntegrationTests 8 8 0 247ms
✅ AccountSwitchLifecycleTests 9 0 0 112ms
✅ AccountsManagerCacheTests 16 16 0 300ms
✅ AccountsManagerCancellationTests 5 5 0 527ms
✅ AccountsManagerGapTests 3 3 0 7ms
✅ AccountsManagerHelpersTests 12 12 0 81ms
✅ AccountsManagerIsolationLintTests 2 2 0 933ms
✅ AccountsManagerStateMachineWiringTests 13 13 0 3.87s
✅ AccountsManagerTests 51 51 0 9.90s
✅ ActiveSessionsViewModelTests 12 12 0 251ms
✅ AdobeActivationTests 6 6 0 24ms
✅ AdobeCertificateGapTests 7 7 0 14ms
✅ AdobeDRMCharacterizationTests 21 21 0 50ms
✅ AdobeDRMErrorGapTests 3 3 0 9ms
✅ AdobeDRMHandlerTests 12 12 0 97ms
✅ AdobeDRMServiceGapTests 2 2 0 169ms
✅ AlertModelCoverageTests 6 6 0 12ms
✅ AlertModelRetryTests 7 7 0 24ms
✅ AlertModelTests 2 2 0 4ms
✅ AlertUtilsTests 20 20 0 402ms
✅ AnnotationContractTests 3 3 0 15ms
✅ AnnotationDeviceIDTests 2 2 0 5ms
✅ AnnotationPostResponseContractTests 1 1 0 3ms
✅ AnnouncementChainTests 5 5 0 480ms
✅ AnnouncementTests 3 3 0 14ms
✅ AnonymousBorrowBaselineFixtureTests 13 13 0 45ms
✅ AnonymousBorrowCandidateFixtureTests 6 6 0 19ms
✅ AnonymousBorrowDeltaTests 2 2 0 21ms
✅ AppContainerAudiobookFactoryTests 3 3 0 9ms
✅ AppContainerAuthCoordinatorRegistrationTests 3 3 0 10ms
✅ AppContainerImageLoaderInjectionTests 4 4 0 100ms
✅ AppContainerIsolationLintTests 5 5 0 1.09s
✅ AppContainerResetTests 4 4 0 40ms
✅ AppContainerTests 4 4 0 10ms
✅ AppContainerWithSignInModalSheetPresenterTests 2 2 0 6ms
✅ AppHealthViewModelTests 8 8 0 1.35s
✅ AppLaunchTrackerExtendedTests 16 16 0 397ms
✅ AppLaunchTrackerTests 10 10 0 345ms
✅ AppRouteTests 5 5 0 30ms
✅ AppTabHostMiniPlayerIntegrationTests 6 6 0 564ms
✅ AppTabHostViewBadgeCountTests 10 10 0 76ms
✅ AppTabRouterCoverageTests 4 4 0 12ms
✅ AppTabRouterGapTests 3 3 0 16ms
✅ ArrayExtensionsTests 6 6 0 13ms
✅ AudioBookmarkGapTests 6 6 0 13ms
✅ AudioEngineWrapperTests 8 8 0 176ms
✅ AudioInterruptionLogicTests 6 6 0 12ms
✅ AudiobookAccessibilityTests 7 7 0 35ms
✅ AudiobookBackgroundAudioTests 2 2 0 58ms
✅ AudiobookBookmarkBusinessLogicPositionWriteTests 6 6 0 926ms
✅ AudiobookBookmarkBusinessLogicTests 21 21 0 4.06s
✅ AudiobookChapterTOCNormalizationTests 6 6 0 17ms
✅ AudiobookCrossVendorSmokeTests 4 4 0 37ms
✅ AudiobookDataManagerEmptyQueueTests 1 1 0 6ms
✅ AudiobookDataManagerErrorHandlingTests 5 5 0 10.20s
✅ AudiobookDataManagerModelsTests 20 20 0 51ms
✅ AudiobookDataManagerNetworkSyncTests 5 5 0 5.14s
✅ AudiobookDataManagerSaveTests 4 4 0 33ms
✅ AudiobookDataManagerStoreRecoveryTests 5 5 0 2.05s
✅ AudiobookFileLoggerTests 14 14 0 236ms
✅ AudiobookFirstOpenHangTests 5 5 0 834ms
✅ AudiobookFullPlayerCoverContainerTests 9 9 0 66ms
✅ AudiobookLoadFailureSAMLReauthTests 10 10 0 1.95s
✅ AudiobookLoaderDispatchTests 7 7 0 86ms
✅ AudiobookLoaderFinalizeBuildTests 9 9 0 66ms
✅ AudiobookLoaderOPDSShapeMatrixTests 5 5 0 65ms
✅ AudiobookLoaderPredicateTests 11 11 0 42ms
✅ AudiobookLoaderTests 2 2 0 69ms
✅ AudiobookMiniPlayerViewTests 13 13 0 40ms
✅ AudiobookNetworkValidationTests 3 3 0 18ms
✅ AudiobookOpenStateRaceTests 3 3 0 374ms
✅ AudiobookPhoneAlertContentTests 3 3 0 9ms
✅ AudiobookPlaybackStateTests 3 3 0 44ms
✅ AudiobookPlaybackTests 26 26 0 333ms
✅ AudiobookPlaytimesLifecycleTests 6 6 0 1.01s
✅ AudiobookPositionAdapterContractTests 3 3 0 76ms
✅ AudiobookPositionPolicyValidatorTests 14 14 0 36ms
✅ AudiobookSAMLReauthTests 6 6 0 39ms
✅ AudiobookSessionErrorDescriptionTests 4 4 0 13ms
✅ AudiobookSessionErrorExtTests 4 4 0 9ms
✅ AudiobookSessionErrorTests 2 2 0 7ms
✅ AudiobookSessionManagerErrorMappingTests 6 6 0 11ms
✅ AudiobookSessionManagerFlagGatePresentationTests 4 4 0 116ms
✅ AudiobookSessionManagerPresenterMigrationTests 8 8 0 93ms
✅ AudiobookSessionManagerShutdownTests 8 8 0 69ms
✅ AudiobookSessionPresenterTests 16 16 0 931ms
✅ AudiobookSessionStateTests 6 6 0 17ms
✅ AudiobookSessionStateTransitionTests 18 18 0 139ms
✅ AudiobookSleepTimerIntegrationTests 5 5 0 177ms
✅ AudiobookStorageLocationTests 3 3 0 8ms
✅ AudiobookTOCTests 18 18 0 259ms
✅ AudiobookTimeEntryTests 6 6 0 16ms
✅ AudiobookTimeTrackerEdgeTests 8 8 0 82ms
✅ AudiobookTimeTrackerLifecycleTests 5 5 0 1.11s
✅ AudiobookTimeTrackerTests 9 9 0 115ms
✅ AudiobookTrackCompletionTests 2 2 0 27ms
✅ AudiobookTypeRoutingTests 5 5 0 25ms
✅ AudiobookVendorAdapterTests 5 5 0 26ms
✅ AudiobookmarkTests 4 4 0 48ms
✅ AuthCoordinatorTelemetryTests 5 5 0 27ms
✅ AuthDecisionEventEmissionTests 7 7 0 22ms
✅ AuthDocumentContractTests 2 2 0 21ms
✅ AuthDocumentVariantsContractTests 5 5 0 606ms
✅ AuthErrorCategoryTests 12 12 0 45ms
✅ AuthErrorProblemDocSeamTests 6 6 0 44ms
✅ AuthFlowSecurityTests 3 0 0 27ms
✅ AuthReducerTests 21 21 0 64ms
✅ AuthTypeTests 7 7 0 33ms
✅ AuthenticationTests 16 16 0 47ms
✅ BackgroundDownloadHandlerTests 28 28 0 161ms
✅ BackgroundListenerTests 2 2 0 21ms
✅ BackupExclusionMigrationTests 3 3 0 22ms
✅ BadgeDefinitionTests 33 33 0 575ms
✅ BadgeServiceTests 16 16 0 130ms
✅ BadgesViewModelTests 14 14 0 141ms
✅ BasicAuthEmptyCredentialTests 4 4 0 14ms
✅ BearerTokenAdapterTests 5 4 0 47ms
✅ BearerTokenFulfillFlowTests 4 4 0 80ms
✅ BearerTokenRefreshTests 4 4 0 9ms
✅ BearerTokenResponseDetectionTests 7 7 0 15ms
✅ BeginningPositionPolicyTests 8 8 0 17ms
✅ BookAvailabilityFormatterTests 18 18 0 68ms
✅ BookButtonMapperHoldReadyTests 10 10 0 521ms
✅ BookButtonMapperTests 21 21 0 73ms
✅ BookButtonMapperViewModelTests 18 18 0 36ms
✅ BookButtonStateTests 8 8 0 21ms
✅ BookButtonTypeMetaTests 4 4 0 16ms
✅ BookButtonTypeTests 13 13 0 45ms
✅ BookCellModelActionTests 18 18 0 657ms
✅ BookCellModelCacheInvalidationTests 8 8 0 69ms
✅ BookCellModelCachePrefetchSafetyTests 9 9 0 169ms
✅ BookCellModelCacheTests 22 22 0 510ms
✅ BookCellModelComputedPropertyTests 19 19 0 180ms
✅ BookCellModelOfflineTests 9 9 0 447ms
✅ BookCellModelRegistryBindingTests 4 4 0 281ms
✅ BookCellModelStateTests 16 16 0 243ms
✅ BookCellModelStreamingHTMLTests 2 2 0 86ms
✅ BookCellStateComprehensiveTests 14 14 0 27ms
✅ BookContentResetServiceTests 2 2 0 10ms
✅ BookDetailMetadataHydrationTests 6 6 0 85ms
✅ BookDetailViewModelTests 87 87 0 1.33s
✅ BookFileManagerTests 8 8 0 52ms
✅ BookListViewAccessibilityTests 9 9 0 51ms
✅ BookPreviewTests 4 4 0 13ms
✅ BookRegistryStoreTests 26 26 0 775ms
✅ BookRegistrySyncReadinessTests 3 2 0 385ms
✅ BookRegistrySyncTests 23 23 0 204ms
✅ BookReturnCleverReauthTests 1 1 0 41ms
❌ BookReturnServiceAuthCoordinatorTests 3 2 1 600ms
✅ BookReturnServiceContractTests 5 5 0 792ms
✅ BookReturnServiceTests 12 12 0 1.39s
✅ BookSignInRedirectHandlerTests 8 8 0 237ms
✅ BookStateIntegrationTests 8 8 0 37ms
✅ BookmarkBusinessLogicExtendedTests 6 6 0 472ms
✅ BookmarkDeletionLogTests 3 3 0 256ms
✅ BookmarkDeviceIdMatchingTests 3 3 0 258ms
✅ BookmarkExistenceTests 4 4 0 366ms
✅ BookmarkManagerTests 24 24 0 333ms
✅ BookmarkSortingTests 1 1 0 194ms
✅ BookmarkSyncTests 3 3 0 307ms
✅ BorrowAndDownloadIntegrationTests 7 7 0 292ms
✅ BorrowErrorMessageTests 13 13 0 30ms
✅ BorrowErrorPresenterTests 6 6 0 560ms
✅ BorrowOperationAuthCoordinatorTests 6 6 0 4.31s
✅ BorrowOperationCleverReauthTests 2 2 0 575ms
✅ BorrowOperationContractTests 6 6 0 894ms
✅ BorrowOperationStreamingHTMLTests 3 3 0 339ms
✅ BorrowOperationTests 12 12 0 1.60s
✅ BorrowOperationTimeoutTests 3 3 0 111ms
✅ BorrowReducerContractTests 2 2 0 23ms
✅ BorrowReducerTests 21 21 0 48ms
✅ BundledRegistrySnapshotTests 5 5 0 548ms
✅ ButtonStateTests 16 16 0 1.06s
✅ ButtonStyleTypeTests 2 2 0 4ms
✅ C64ConversionTests 6 6 0 22ms
✅ CarPlayAudiobookBridgePresenterMigrationTests 2 2 0 132ms
✅ CarPlayAuthHelperReadinessTests 3 3 0 332ms
✅ CarPlayChapterListTests 3 3 0 24ms
✅ CarPlayIntegrationTests 2 2 0 136ms
✅ CarPlayLibraryRefreshTests 3 3 0 18ms
✅ CarPlayNowPlayingTemplateTests 4 4 0 2.08s
✅ CarPlayOpenAppAlertTests 4 4 0 10ms
✅ CarPlayPlaybackErrorTests 8 8 0 28ms
✅ CarPlayTests 12 12 0 243ms
✅ CarPlayTimeTrackingTests 3 3 0 93ms
✅ CatalogAPIDedupeTests 3 3 0 446ms
✅ CatalogAPIEntryPointTests 1 1 0 4ms
✅ CatalogAccessibilityTests 8 8 0 18ms
✅ CatalogCacheKeyAndIsolationTests 12 12 0 350ms
✅ CatalogCacheMetadataExactBoundaryTests 4 4 0 9ms
✅ CatalogCacheMetadataTests 21 21 0 1.87s
✅ CatalogFeedModelTests 4 4 0 17ms
✅ CatalogFilterGroupModelTests 17 17 0 64ms
✅ CatalogFilterModelTests 17 17 0 65ms
✅ CatalogFilterServiceTests 29 29 0 61ms
✅ CatalogFilterTests 1 1 0 3ms
✅ CatalogLaneAssemblyTests 7 7 0 18ms
✅ CatalogLaneModelStructTests 18 18 0 275ms
✅ CatalogLaneModelTests 1 1 0 2ms
✅ CatalogLaneMoreFilterStateTests 8 8 0 44ms
✅ CatalogLaneMoreViewModelTests 42 42 0 3.01s
✅ CatalogLaneRowViewAccessibilityTests 11 11 0 48ms
✅ CatalogLaneSortingTests 4 4 0 77ms
✅ CatalogLoadIntegrationTests 6 6 0 57ms
✅ CatalogOPDS2NegotiationTests 12 12 0 100ms
✅ CatalogPreloaderTests 6 6 0 31ms
✅ CatalogProblemDocumentTests 6 6 0 28ms
✅ CatalogRepositoryCoreTests 9 9 0 268ms
✅ CatalogRepositoryStaleWhileRevalidateTests 12 12 0 521ms
✅ CatalogRepositoryTests 19 19 0 208ms
✅ CatalogSearchViewModelRegistryUpdateTests 5 5 0 473ms
✅ CatalogSearchViewModelTests 67 67 0 7.04s
✅ CatalogSelectorsTests 2 2 0 4ms
✅ CatalogSortServiceTests 14 14 0 77ms
✅ CatalogStateTests 7 7 0 24ms
✅ CatalogViewContinueRowsIntegrationTests 3 3 0 30ms
✅ CatalogViewModelStateMachineTests 10 10 0 536ms
✅ ChaosFaultInjectionTests 5 5 0 84ms
✅ ChapterChangeDetectorTests 5 5 0 10ms
✅ ChapterTOCNormalizerTests 7 7 0 188ms
✅ CirculationAnalyticsTests 4 4 0 12ms
✅ ColdStartResumeIntegrationTests 10 10 0 914ms
✅ ColorExtensionTests 5 5 0 13ms
✅ ConcurrentBookStateTests 3 3 0 25ms
✅ ConcurrentDownloadStateTests 3 3 0 24ms
✅ ConcurrentTokenRefreshTests 2 2 0 11ms
✅ ContinueRowSectionTests 6 6 0 170ms
✅ ContinuousPlaybackTrackingTests 3 3 0 359ms
✅ CookiePersistenceTests 10 10 0 867ms
✅ CrawlStateTests 16 16 0 1.00s
✅ CrawlableFeedAnalysisTests 17 17 0 40ms
✅ CrawlerFallbackTests 12 12 0 107ms
✅ CredentialEdgeCaseTests 6 6 0 13ms
✅ CredentialPrivacyTests 4 4 0 38ms
✅ CredentialPromptCoordinatorTests 4 4 0 347ms
✅ CrossDeviceBookmarkSyncTests 12 12 0 35ms
✅ CrossDeviceSyncE2ETests 5 5 0 3.81s
✅ CrossDomain401Tests 8 8 0 27ms
✅ CrossFormatMappingTests 14 14 0 47ms
✅ DPLAErrorTests 3 3 0 7ms
✅ DRMAdversarialTests 4 1 0 48ms
✅ DRMFulfilledPublicationTests 6 6 0 44ms
✅ DataBase64Tests 3 3 0 7ms
✅ DataReceptionComparisonTests 2 2 0 35ms
✅ DateExtensionTests 9 9 0 20ms
✅ DateFormattingTests 4 4 0 12ms
✅ Date_NYPLAdditionsTests 7 7 0 463ms
✅ DebugSettingsTests 27 27 0 150ms
✅ DefaultCatalogAPITests 31 31 0 161ms
✅ DefaultRecentlyReadingServiceTests 12 12 0 40ms
✅ DeriveInitialStateTests 4 4 0 17ms
✅ DeveloperSettingsTierTests 4 4 0 11ms
✅ DeviceLogCollectorGapTests 2 2 0 5.19s
✅ DeviceLogCollectorTests 9 9 0 33.82s
✅ DeviceOrientationTests 7 7 0 53ms
✅ DeviceSpecificErrorMonitorTests 11 11 0 34ms
✅ DictionaryExtensionsTests 5 5 0 11ms
✅ DiskBudgetManagerTests 7 7 0 40ms
✅ DiskBudgetTests 2 2 0 26ms
✅ DownloadAlertPresenterTests 8 8 0 303ms
✅ DownloadAnnouncementServiceTests 12 12 0 53ms
✅ DownloadAuthRetryHandlerAuthCoordinatorTests 6 6 0 2.66s
✅ DownloadAuthRetryHandlerTaskLifecycleTests 4 4 0 375ms
✅ DownloadAuthRetryHandlerTests 14 14 0 1.51s
✅ DownloadCancellationHandlerTests 5 5 0 271ms
✅ DownloadCompletionParserTests 9 9 0 148ms
✅ DownloadCoordinatorIntegrationTests 10 10 0 371ms
✅ DownloadCoordinatorTests 11 11 0 56ms
✅ DownloadDiskSpaceTests 2 2 0 5ms
✅ DownloadErrorInfoTests 3 3 0 17ms
✅ DownloadErrorRecoveryPolicyTests 11 11 0 93ms
✅ DownloadErrorRecoveryTests 3 3 0 14ms
✅ DownloadFreeSpaceExhaustionTests 11 11 0 84ms
✅ DownloadInfoTests 5 5 0 12ms
✅ DownloadIntegrityTests 10 10 0 176ms
✅ DownloadOnlyOnWiFiTests 10 10 0 30ms
✅ DownloadPersistenceStoreTests 5 5 0 126ms
✅ DownloadProgressPublisherCoreTests 19 19 0 620ms
✅ DownloadProgressPublisherTests 2 2 0 18ms
✅ DownloadQueueIntegrationTests 3 3 0 91ms
✅ DownloadQueueOrchestratorTests 9 9 0 171ms
✅ DownloadRMSDKHandoffTests 1 1 0 2ms
✅ DownloadRedirectTests 7 7 0 13ms
✅ DownloadResumeAfterKillTests 7 7 0 94ms
✅ DownloadSlotManagementTests 5 5 0 22ms
✅ DownloadStartCoordinatorContractTests 5 5 0 61ms
✅ DownloadStartCoordinatorTests 9 9 0 148ms
✅ DownloadStartDispatcherTests 26 26 0 209ms
✅ DownloadStateMachineIntegrationTests 15 15 0 101ms
✅ DownloadStateMachineTests 5 5 0 22ms
✅ DownloadStateManagerTests 16 16 0 119ms
✅ DownloadTaskLifecycleServiceTests 9 9 0 77ms
✅ DownloadThrottlingServiceTests 10 10 0 341ms
✅ DownloadWatchdogTests 3 3 0 13ms
✅ EPUBKeyCommandsPP4289Tests 4 4 0 9ms
✅ EPUBModuleTests 4 4 0 31ms
✅ EPUBPositionTests 10 10 0 36ms
✅ EPUBSearchViewModelTests 18 18 0 126ms
✅ EPUBToolbarToggleTests 11 11 0 30ms
✅ EmailAddressTests 16 16 0 57ms
✅ EpubSampleFactoryTests 5 5 0 19ms
✅ ErrorActivityTrackerTests 12 12 0 45ms
✅ ErrorDetailTests 12 12 0 103ms
✅ ErrorDetailViewControllerGapTests 3 3 0 149ms
✅ ErrorDetailViewControllerTests 14 14 0 98ms
✅ ErrorLogExporterTests 5 5 0 2.16s
✅ ExpiredLoanStringsTests 5 5 0 98ms
✅ FacetEnumTests 3 3 0 6ms
✅ FacetToolbarAccessibilityTests 5 5 0 11ms
✅ FacetViewModelLogoDelegateTests 4 4 0 84ms
✅ FacetViewModelTests 18 18 0 103ms
✅ FetchManifestWithBearerTokenLCPSafetyTests 1 1 0 29ms
✅ FetchManifestWithBearerTokenTests 9 9 0 60ms
✅ FetchOpenAccessManifestLCPSafetyTests 4 4 0 10ms
✅ FileURLGenerationTests 3 3 0 51ms
✅ FindawayChapterStatusGuardTests 1 1 0 3ms
✅ FloatTPPAdditionsTests 5 5 0 22ms
✅ FocusIndicationTests 7 7 0 29ms
✅ FontManagerTests 17 17 0 275ms
✅ ForceResetTests 6 6 0 43ms
✅ GeneralCacheTests 20 20 0 2.64s
✅ GroupEnumTests 1 1 0 7ms
✅ HTMLTextViewTests 70 70 0 10.31s
✅ HoldNotificationClassificationTests 2 2 0 6ms
✅ HoldsBadgeCountTests 9 9 0 61ms
✅ HoldsBookViewModelTests 8 8 0 43ms
✅ HoldsReducerTests 11 11 0 65ms
✅ HoldsSyncFailureTests 12 12 0 826ms
✅ HoldsViewModelTests 23 23 0 1.22s
✅ ImageCacheContinuationTests 1 1 0 207ms
✅ ImageCacheTypeTests 1 1 0 6ms
✅ ImageLoaderTests 11 11 0 111ms
✅ IntExtensionsTests 4 4 0 19ms
✅ IsReaderActiveTrackingModifierTests 4 4 0 22ms
✅ KeyboardNavigationFKATests 11 11 0 103ms
✅ KeyboardNavigationHandlerTests 16 16 0 111ms
✅ KeyboardVoiceOverTests 5 5 0 43ms
✅ LCPAcquisitionPredicateTests 4 4 0 13ms
✅ LCPAdapterTests 8 8 0 42ms
✅ LCPAudiobookURLSchemeTests 4 4 0 8ms
✅ LCPAudiobooksTests 21 21 0 2.11s
✅ LCPBotanCRLGuardTests 5 5 0 449ms
✅ LCPCharacterizationTests 31 31 0 124ms
✅ LCPClientTests 8 8 0 62ms
✅ LCPFulfillmentHandlerTests 8 8 0 715ms
✅ LCPKeychainMigrationTests 3 3 0 37ms
✅ LCPLibraryServiceTests 20 20 0 151ms
✅ LCPLicenseDocumentDetectionTests 5 5 0 14ms
✅ LCPLicenseFilePathTests 3 3 0 8ms
✅ LCPOrphanedDownloadRegistryTests 4 4 0 17ms
✅ LCPPDFAcquisitionPredicateTests 5 5 0 12ms
✅ LCPPDFDiskExtractTests 5 5 0 43ms
✅ LCPPDFOpenProgressTests 13 13 0 93ms
✅ LCPPassphraseReadinessTests 2 2 0 16ms
✅ LCPSessionIdentifierTests 3 3 0 16ms
✅ LegacySAMLProblemDocumentPropagationTests 7 7 0 585ms
✅ LibrariesSectionViewModelTests 11 11 0 117ms
✅ LibraryCatalogMergerTests 9 9 0 30ms
✅ LibraryRegistryCrawlerTests 14 14 0 118ms
✅ LicensesServiceTests 4 4 0 22ms
✅ LiveCrawlableParsingTest 4 0 0 14ms
✅ LocalBookContentServiceTests 7 7 0 37ms
✅ LocalFileAdapterTests 6 5 0 44ms
✅ LogTests 14 14 0 337ms
✅ LoginKeyboardTests 8 8 0 46ms
✅ MainActorHelpersTests 22 22 0 593ms
✅ MappedCatalogBridgeTests 3 3 0 9ms
✅ MappedCatalogModelTests 11 11 0 400ms
✅ MockBackendExpiredCredentialsTests 3 3 0 50ms
✅ MockBackendIntegrationTests 4 4 0 81ms
✅ MockBackendLoanLimitTests 2 2 0 20ms
✅ MockBackendRouteMatchingTests 4 4 0 10ms
✅ MockBackendServerDownTests 1 1 0 15ms
✅ MockIsolationLintTests 5 5 0 1.28s
✅ MultiLibraryTokenIsolationTests 14 14 0 160ms
✅ MyBooksDownloadCenterAccountIdThreadingTests 6 6 0 40ms
✅ MyBooksDownloadCenterAdeptGapTests 3 3 0 11ms
✅ MyBooksDownloadCenterConcurrencyTests 21 21 0 579ms
✅ MyBooksDownloadCenterEvictionTests 7 7 0 86ms
✅ MyBooksDownloadCenterOfflineTests 8 8 0 639ms
✅ MyBooksDownloadSessionInvalidationTests 3 3 0 40ms
✅ MyBooksSimplifiedBearerTokenTests 17 17 0 236ms
✅ MyBooksViewModelBooksPublisherTests 3 3 0 230ms
✅ MyBooksViewModelConcurrencyTests 4 4 0 41ms
✅ MyBooksViewModelDownloadStateTests 3 3 0 302ms
✅ MyBooksViewModelEmptyArrayTests 3 3 0 8ms
✅ MyBooksViewModelEmptyStateTests 4 4 0 43ms
✅ MyBooksViewModelExtendedTests 15 15 0 119ms
✅ MyBooksViewModelFacetIntegrationTests 4 4 0 55ms
✅ MyBooksViewModelFacetPublisherTests 3 3 0 14ms
✅ MyBooksViewModelFilterSortInteractionTests 2 2 0 15ms
✅ MyBooksViewModelFilterTests 9 9 0 421ms
✅ MyBooksViewModelGuardConditionsTests 2 2 0 2.24s
✅ MyBooksViewModelLargeDatasetTests 2 2 0 331ms
✅ MyBooksViewModelLoadAccountTests 2 2 0 2.00s
✅ MyBooksViewModelLoginStateTests 4 4 0 445ms
✅ MyBooksViewModelMultipleAuthorSortingTests 3 3 0 25ms
✅ MyBooksViewModelNotificationTests 4 4 0 344ms
✅ MyBooksViewModelOfflineFilteringTests 3 3 0 27ms
✅ MyBooksViewModelPublisherTests 7 7 0 53ms
✅ MyBooksViewModelSearchEdgeCaseTests 6 6 0 46ms
✅ MyBooksViewModelSearchQueryTests 3 3 0 19ms
✅ MyBooksViewModelSortPersistenceTests 3 3 0 18ms
✅ MyBooksViewModelSortingIntegrationTests 5 5 0 33ms
✅ MyBooksViewModelSortingTests 6 6 0 38ms
✅ MyBooksViewModelStateTransitionTests 3 3 0 338ms
✅ MyBooksViewModelUIBindingTests 3 3 0 14ms
✅ NSErrorAdditionsTests 7 7 0 14ms
✅ NSNotificationTPPTests 3 3 0 28ms
✅ NavigationCoordinatorTests 17 17 0 47ms
✅ NavigationFreezePreventionTests 5 5 0 22ms
✅ NetworkExecutorCredentialGuardTests 8 8 0 52ms
✅ NetworkExecutorResponseRegressionTests 4 4 0 832ms
✅ NetworkExecutorTaskTypeTests 3 3 0 49ms
✅ NetworkOfflineDetectionTests 3 3 0 18ms
✅ NetworkQueueTests 11 11 0 744ms
✅ NetworkRequestQueueTests 2 2 0 10.13s
✅ NetworkRetryLogicTests 7 7 0 81ms
✅ NetworkTimeoutTests 2 2 0 23ms
✅ NotificationEventTypeContractTests 7 7 0 14ms
✅ NotificationPayloadContractTests 10 10 0 33ms
✅ NotificationServiceStateMachineTests 9 9 0 1.37s
✅ NotificationServiceTests 16 16 0 49ms
✅ NotificationServiceTokenTests 13 13 0 37ms
✅ NotificationSyncThrottleTests 5 5 0 11ms
✅ NotificationTokenDataTests 4 4 0 12ms
✅ NotificationTokenRegistrationTests 10 10 0 99ms
✅ NowPlayingCoordinatorBackgroundTests 6 6 0 404ms
✅ NowPlayingCoordinatorTests 19 19 0 206ms
✅ OAuthSAMLRedirectRegressionTests 4 4 0 338ms
✅ OIDCAuthDocumentParsingTests 4 4 0 253ms
✅ OIDCAuthTypeTests 5 5 0 12ms
✅ OIDCAuthenticationPropertyTests 8 8 0 679ms
✅ OIDCCallbackEdgeCaseTests 9 9 0 735ms
✅ OIDCCallbackHandlingTests 5 5 0 402ms
✅ OIDCCallbackSchemeTests 3 3 0 15ms
✅ OIDCIsolationRegressionTests 6 6 0 642ms
✅ OIDCLoginRoutingTests 3 3 0 267ms
✅ OIDCMakeRequestTests 3 3 0 245ms
✅ OIDCNSCodingTests 1 1 0 453ms
✅ OIDCNetworkLayer401Tests 5 5 0 2.50s
✅ OIDCReauthOnExpiredTokenTests 5 5 0 1.04s
✅ OIDCRedirectURIConstructionTests 6 6 0 507ms
✅ OIDCRegressionTests 9 9 0 2.74s
✅ OIDCSelectedAuthenticationTests 2 2 0 166ms
✅ OIDCSignOutRegressionTests 6 6 0 547ms
✅ OIDCTokenRefreshRegressionTests 6 6 0 485ms
✅ OIDCUpdateUserAccountTests 5 5 0 747ms
✅ OIDCViewModelRegressionTests 1 1 0 91ms
✅ OIDCViewModelSignInTests 2 2 0 32ms
✅ OPDS1BorrowEntryContractTests 4 4 0 31ms
✅ OPDS1CatalogGroupedContractTests 3 3 0 17ms
✅ OPDS1HoldEntriesContractTests 4 4 0 234ms
✅ OPDS1LoansFeedContractTests 6 6 0 54ms
✅ OPDS1ParsingTests 34 34 0 223ms
✅ OPDS1RevokeResponseContractTests 2 2 0 14ms
✅ OPDS2AuthenticationDocumentTests 18 18 0 342ms
✅ OPDS2AvailabilityTests 4 4 0 9ms
✅ OPDS2BookBridgeTests 44 44 0 131ms
✅ OPDS2BorrowResponseContractTests 3 3 0 8ms
✅ OPDS2CatalogWiringTests 17 17 0 131ms
✅ OPDS2CatalogsFeedTests 3 3 0 234ms
✅ OPDS2ContributorTests 2 2 0 6ms
✅ OPDS2EmptyFeedContractTests 1 1 0 4ms
✅ OPDS2FeedContractTests 4 4 0 25ms
✅ OPDS2FeedParsingTests 11 11 0 601ms
✅ OPDS2FeedTests 13 13 0 57ms
✅ OPDS2FullMetadataTests 4 4 0 14ms
✅ OPDS2FullPublicationTests 13 13 0 212ms
✅ OPDS2IntegrationTests 18 18 0 162ms
✅ OPDS2LinkArrayTests 5 5 0 20ms
✅ OPDS2LinkComputedPropertyTests 20 20 0 67ms
✅ OPDS2LinkRelTests 1 1 0 2ms
✅ OPDS2LinkTests 2 2 0 162ms
✅ OPDS2ParsingTests 38 38 0 159ms
✅ OPDS2PublicationExtendedTests 53 53 0 313ms
✅ OPDS2PublicationImageTests 6 6 0 14ms
✅ OPDS2PublicationNarratorTests 3 3 0 17ms
✅ OPDS2PublicationTests 2 2 0 197ms
✅ OPDS2SamlIDPTests 6 6 0 14ms
✅ OPDS2SearchResultsContractTests 3 3 0 15ms
✅ OPDS2SubjectTests 2 2 0 4ms
✅ OPDS2SupportingTypesTests 5 5 0 32ms
✅ OPDSAcquisitionPathExpandedTests 15 15 0 404ms
✅ OPDSFeedCacheTests 14 14 0 202ms
✅ OPDSFeedMigrationTests 11 11 0 53ms
✅ OPDSFeedParsingTests 2 2 0 155ms
✅ OPDSFeedServiceStateMachineTests 3 3 0 386ms
✅ OPDSFeedServiceTests 2 2 0 5ms
✅ OPDSFormatTests 13 13 0 158ms
✅ OPDSParserCoreTests 4 4 0 12ms
✅ OPDSParserTests 4 4 0 11ms
✅ OPDSParsingTests 57 57 0 7.95s
✅ OfflineActionTests 29 29 0 71ms
✅ OfflineQueueServiceExtendedTests 13 13 0 5.27s
✅ OfflineQueueServiceTests 17 17 0 7.03s
✅ OpenAccessAdapterTests 6 6 0 95ms
✅ OverdriveDeferredFulfillmentTests 6 6 0 12ms
✅ OverdriveDownloadHandlerTests 9 9 0 432ms
✅ OverdriveFulfillmentTests 5 5 0 94ms
✅ PDFExtensionsTests 20 20 0 57ms
✅ PDFReaderTests 12 12 0 40ms
✅ PP3596RegressionTests 3 3 0 42ms
❌ Palace 2 1 1 <1ms
✅ PalaceCheckPropertyTests 8 8 0 137ms
✅ PalaceErrorCategoryTests 20 20 0 57ms
✅ PalaceErrorExtendedTests 23 23 0 56ms
✅ PalaceErrorTests 11 11 0 85ms
✅ PalacePDFViewTests 12 12 0 90ms
✅ PalaceTestSetupObservationTests 4 4 0 74ms
✅ PalaceWiringTestCaseTests 4 4 0 16ms
✅ ParserFuzzTests 4 4 0 32.50s
✅ PatronProfileContractTests 4 4 0 13ms
✅ PerformanceMonitorTests 14 14 0 116ms
✅ PerformanceReportTests 14 14 0 59ms
✅ PersistentLoggerTests 9 9 0 1.73s
✅ PlaybackBootstrapperTests 8 8 0 84ms
✅ PlaybackFailureRecordTests 5 5 0 15ms
✅ PlaybackOpenPolicyTests 7 7 0 27ms
✅ PlaybackRateTests 16 16 0 96ms
✅ PlaybackTrackingRegressionTests 5 5 0 122ms
✅ PositionPersistenceLogicTests 6 6 0 15ms
✅ PositionPersistenceTests 2 2 0 13ms
✅ PositionSyncServiceTests 13 13 0 178ms
✅ PositionSyncTests 5 5 0 17ms
✅ PositionWriterContractTests 6 6 0 84ms
✅ PostUpdateMigrationTests 5 5 0 36ms
✅ ProblemDocumentContractTests 4 4 0 25ms
✅ ProblemDocumentLoanExpiryTests 5 5 0 17ms
✅ ProblemDocumentTests 12 12 0 28ms
✅ ProblemReportEmailTests 8 8 0 39ms
✅ ReachabilityTests 10 10 0 23ms
✅ Reader2BookmarkContractTests 3 3 0 18ms
✅ Reader2PositionAdapterContractTests 4 3 0 237ms
✅ Reader2PositionResumeContractTests 3 3 0 144ms
✅ ReaderAccessibilityTests 7 7 0 27ms
✅ ReaderEditingActionsTests 5 5 0 14ms
✅ ReaderErrorTests 5 5 0 14ms
✅ ReaderNavBarVoiceOverTests 2 2 0 14ms
✅ ReaderServiceSyncTests 3 3 0 28ms
✅ ReaderThemeTests 24 24 0 83ms
✅ ReadingPositionTests 22 22 0 87ms
✅ ReadingSessionTrackerTests 13 13 0 191ms
✅ ReadingStatsServiceTests 12 12 0 65ms
✅ ReadingStatsStoreTests 9 9 0 595ms
✅ RedirectHandlingIntegrationTests 4 4 0 10ms
✅ RedirectPolicyTests 9 9 0 35ms
✅ RemoteFeatureFlagsGapTests 4 4 0 482ms
✅ RemoteFeatureFlagsTests 9 9 0 359ms
✅ ResourcePropertiesLengthTests 3 3 0 9ms
✅ RetryClassificationTests 17 17 0 84ms
✅ ReturnFlowTests 1 1 0 2ms
✅ RightsManagementDetectionTests 5 5 0 9ms
✅ RightsManagementDispatcherTests 10 10 0 123ms
✅ SAMLCookieSyncTests 5 5 0 29ms
✅ SAMLLogoutCallbackDetectionTests 4 4 0 8ms
✅ SAMLLogoutLinkParsingTests 5 5 0 93ms
✅ SAMLLogoutURLTests 4 4 0 10ms
✅ SAMLPlusBiblioBoardExpirationTests 8 8 0 636ms
✅ SEMigrationsTests 6 6 0 177ms
✅ SafeDictionaryTests 21 21 0 682ms
✅ SamplePlayerErrorTests 5 5 0 19ms
✅ SampleTypeTests 8 8 0 34ms
✅ SceneDelegateTests 1 1 0 3ms
✅ ScopedResetTests 9 9 0 130ms
✅ SearchAccessibilityTests 6 6 0 51ms
✅ SearchFlowIntegrationTests 8 8 0 255ms
✅ SettingsViewModelComputedPropertyTests 6 6 0 30ms
✅ SettingsViewModelEdgeCaseTests 7 7 0 82ms
✅ SettingsViewModelGapTests 1 1 0 3ms
✅ SettingsViewModelSyncTests 14 14 0 123ms
✅ SettingsViewModelTests 33 33 0 2.40s
✅ SignInModalLifecycleTests 9 9 0 53ms
✅ SignInModalPredicateTests 3 3 0 10ms
✅ SignInModalSAMLOIDCTests 6 6 0 11ms
✅ SignInOAuthErrorPropagationTests 8 8 0 659ms
✅ SignInToReadFlowIntegrationTests 5 5 0 836ms
✅ SignInWebSheetIntegrationTests 3 3 0 1.93s
✅ SignInWebSheetViewModelTests 31 31 0 94ms
✅ SignOutCacheClearingTests 3 3 0 11ms
✅ SingletonResetRegistryTests 5 5 0 80ms
✅ StatsViewModelTests 10 10 0 463ms
✅ StatusAnnouncementTests 22 22 0 144ms
✅ StopPositionSaveTests 2 2 0 5ms
✅ StoreTests 5 5 0 14ms
✅ StreamingReaderPresentationContractTests 1 1 0 22ms
✅ StreamingReaderProgressStoreTests 7 7 0 50ms
✅ StreamingReaderViewControllerScrollRestoreTests 12 12 0 689ms
✅ StreamingReaderViewModelTests 9 9 0 70ms
✅ StringExtensionTests 8 8 0 21ms
✅ StringExtensionsTests 3 3 0 19ms
✅ StringHTMLEntitiesTests 7 7 0 15ms
✅ StringNYPLAdditionsTests 4 4 0 27ms
✅ String_NYPLAdditionsTests 4 4 0 11ms
✅ SupportSectionDecisionTests 5 5 0 12ms
✅ SyncConflictResolutionTests 3 3 0 8ms
✅ SyncDeletionGuardTests 5 5 0 10ms
✅ SyncDeletionRatioTests 6 6 0 14ms
✅ SyncPermissionTests 5 5 0 164ms
✅ TPPAccountAuthStateEnumTests 5 5 0 11ms
✅ TPPAccountListDataSourceTests 3 3 0 9ms
✅ TPPAdobeActivationSkipTests 6 6 0 464ms
✅ TPPAgeCheckCompletionTests 5 5 0 404ms
✅ TPPAgeCheckIsValidTests 5 5 0 489ms
✅ TPPAgeCheckStateMachineTests 4 4 0 547ms
✅ TPPAgeCheckTests 6 6 0 1.50s
✅ TPPAgeCheckVerifyDecisionTests 5 5 0 320ms
✅ TPPAlertUtilsTests 45 45 0 960ms
✅ TPPAnnotationsHermeticTests 15 15 0 124ms
✅ TPPAnnotationsOverrideTests 4 4 0 226ms
✅ TPPAnnotationsTests 29 29 0 2.37s
✅ TPPAnnouncementManagerTests 3 3 0 12ms
✅ TPPAuthDocumentContractTests 3 3 0 27ms
✅ TPPBackgroundExecutorTests 3 3 0 18ms
✅ TPPBadgeImageGapTests 2 2 0 87ms
✅ TPPBaseReaderViewControllerInitialLocationTests 5 5 0 100ms
✅ TPPBasicAuthTests 11 11 0 27ms
✅ TPPBookAccessibilityLabelTests 8 8 0 35ms
✅ TPPBookAuthorCoverageTests 3 3 0 7ms
✅ TPPBookAuthorTests 6 6 0 23ms
✅ TPPBookBearerTokenTests 9 8 0 68ms
✅ TPPBookButtonsStateTests 7 7 0 87ms
✅ TPPBookContentMetadataFilesHelperTests 9 9 0 21ms
✅ TPPBookContentTypeConverterStreamingHTMLTests 2 2 0 4ms
✅ TPPBookContentTypeConverterTests 4 4 0 8ms
✅ TPPBookContentTypeExtendedTests 4 4 0 13ms
✅ TPPBookContentTypeTests 14 14 0 44ms
✅ TPPBookCoverRegistryTests 14 14 0 546ms
✅ TPPBookCreationTests 7 7 0 89ms
✅ TPPBookExtensionsTests 21 21 0 116ms
✅ TPPBookIsDRMProtectedTests 9 9 0 28ms
✅ TPPBookLocationCoverageTests 7 7 0 127ms
✅ TPPBookLocationEdgeCaseTests 27 27 0 101ms
✅ TPPBookLocationKeyTests 3 3 0 79ms
✅ TPPBookLocationTests 11 11 0 54ms
✅ TPPBookModelGapTests 4 4 0 32ms
✅ TPPBookRegistryAsyncReadinessTests 3 3 0 313ms
✅ TPPBookRegistryAtomicWriteTests 7 7 0 635ms
✅ TPPBookRegistryBookRetrievalTests 7 7 0 77ms
✅ TPPBookRegistryBookmarkTests 7 7 0 50ms
✅ TPPBookRegistryCorruptedDataTests 5 5 0 37ms
✅ TPPBookRegistryDataTests 4 4 0 19ms
✅ TPPBookRegistryDependencyTests 4 4 0 22ms
✅ TPPBookRegistryFulfillmentIdTests 4 4 0 270ms
✅ TPPBookRegistryLargeCorpusTests 5 5 0 1m 12s
✅ TPPBookRegistryLoadReentrancyTests 2 2 0 510ms
✅ TPPBookRegistryLocationTests 4 4 0 29ms
✅ TPPBookRegistryMigrationTests 16 16 0 2.69s
✅ TPPBookRegistryPersistenceTests 10 10 0 1.88s
✅ TPPBookRegistryProcessingTests 2 2 0 1.59s
✅ TPPBookRegistryPublisherTests 6 6 0 5.06s
✅ TPPBookRegistryRecordPersistenceTests 3 3 0 32ms
✅ TPPBookRegistryRecordTests 10 10 0 30ms
✅ TPPBookRegistryStateManagementTests 11 11 0 126ms
✅ TPPBookRegistryThreadSafetyTests 3 3 0 260ms
✅ TPPBookRegistryUpdateAndRemoveTests 1 1 0 1.39s
✅ TPPBookRequiresAdobeDRMTests 6 6 0 13ms
✅ TPPBookSerializationTests 13 13 0 58ms
✅ TPPBookStateInitializationTests 4 4 0 21ms
✅ TPPBookStateTests 4 4 0 10ms
✅ TPPBookTests 93 93 0 582ms
✅ TPPBookmarkDeletionLogTests 11 11 0 81ms
✅ TPPBookmarkFactoryInitTests 2 2 0 8ms
✅ TPPBookmarkFactoryServerAnnotationEdgeCaseTests 5 5 0 19ms
✅ TPPBookmarkFactoryTests 15 15 0 76ms
✅ TPPBookmarkR3ConversionTests 5 5 0 20ms
✅ TPPBookmarkR3LocationTests 13 13 0 47ms
✅ TPPBookmarkSpecTests 1 1 0 6ms
✅ TPPCachingTests 3 3 0 9ms
✅ TPPCapturedCredentialsTests 5 5 0 463ms
✅ TPPConfigurationTests 22 22 0 222ms
✅ TPPContentTypeTests 9 9 0 21ms
✅ TPPCredentialConcurrencyTests 3 3 0 12ms
✅ TPPCredentialIsolationE2ETests 5 0 0 162ms
✅ TPPCredentialPersistenceTests 6 6 0 855ms
✅ TPPCredentialSnapshotCoherenceTests 3 0 0 26ms
✅ TPPCredentialSnapshotTests 8 8 0 16ms
✅ TPPCredentialsCoverageTests 9 9 0 31ms
✅ TPPCredentialsTests 26 26 0 119ms
✅ TPPCrossLibrarySignOutTests 6 6 0 685ms
✅ TPPDRMFailureCredentialPreservationTests 4 4 0 1.77s
✅ TPPErrorLoggerTests 27 27 0 169ms
✅ TPPIdleSignOutRegressionTests 13 13 0 1.17s
✅ TPPJWKConversionTest 1 1 0 35ms
✅ TPPKeychainManagerTests 5 5 0 63ms
✅ TPPLastReadPositionPosterTests 13 13 0 362ms
✅ TPPLastReadPositionSynchronizerIntegrationTests 5 5 0 36ms
✅ TPPLastReadPositionSynchronizerTests 23 23 0 71ms
✅ TPPLastReadPositionSynchronizer_BehaviorDocumentationTests 5 5 0 16ms
✅ TPPLastReadPositionSynchronizer_BookLocationTests 9 9 0 19ms
✅ TPPLastReadPositionSynchronizer_ConcurrencyTests 3 3 0 15ms
✅ TPPLastReadPositionSynchronizer_ReadiumBookmarkTests 9 9 0 70ms
✅ TPPLastReadPositionSynchronizer_SyncLogicTests 10 10 0 36ms
✅ TPPLastReadPositionSynchronizer_WriterDelegationTests 4 4 0 55ms
✅ TPPLoginNoActivationTests 3 3 0 284ms
✅ TPPMainThreadCheckerTests 4 4 0 18ms
✅ TPPMigrationManagerTests 15 15 0 64ms
✅ TPPNetworkExecutorAPITests 14 14 0 75ms
✅ TPPNetworkExecutorStubbedTests 17 17 0 214ms
✅ TPPNetworkExecutorTests 3 3 0 34ms
✅ TPPNetworkResponderAuthCoordinatorTests 5 5 0 33ms
✅ TPPNetworkResponderTests 12 12 0 53ms
✅ TPPOPDSAcquisitionPathTests 5 5 0 39ms
✅ TPPOPDSEntryTests 5 5 0 34ms
✅ TPPOPDSFeedTests 3 3 0 202ms
✅ TPPOPDSGroupSwiftTests 3 3 0 6ms
✅ TPPOPDSLinkTests 7 7 0 27ms
✅ TPPOpenSearchDescriptionExpandedTests 10 10 0 30ms
✅ TPPOpenSearchDescriptionTests 1 1 0 5ms
✅ TPPPDFDocumentMetadataTests 15 15 0 89ms
✅ TPPPDFDocumentTests 8 8 0 22ms
✅ TPPPDFLocationCoverageTests 7 7 0 28ms
✅ TPPPDFLocationTests 10 10 0 36ms
✅ TPPPDFPageBookmarkTests 9 9 0 21ms
✅ TPPPDFPageTests 5 5 0 13ms
✅ TPPPDFReaderModeTests 6 6 0 14ms
✅ TPPPerAccountIsolationTests 8 0 0 161ms
✅ TPPPreferredAuthSelectionTests 8 8 0 640ms
✅ TPPProblemDocumentCacheManagerTests 12 12 0 105ms
✅ TPPProblemDocumentTests 21 21 0 46ms
✅ TPPReaderAppearanceTests 4 4 0 13ms
✅ TPPReaderBookmarksBusinessLogicTests 12 12 0 1.02s
✅ TPPReaderBookmarksReadinessTests 2 2 0 191ms
✅ TPPReaderFontTests 4 4 0 9ms
✅ TPPReaderPreferencesLoadTests 3 3 0 15ms
✅ TPPReaderSettingsTests 28 28 0 113ms
✅ TPPReaderTOCBusinessLogicTests 15 15 0 4.52s
✅ TPPReaderTOCFlattenTests 2 2 0 1.03s
✅ TPPReadiumBookmarkLocationMatchingTests 5 5 0 14ms
✅ TPPReadiumBookmarkTests 21 21 0 97ms
✅ TPPReauthenticatorMockTests 2 2 0 4ms
✅ TPPReauthenticatorTests 4 4 0 9ms
✅ TPPReturnPromptHelperTests 5 5 0 26ms
✅ TPPSAMLCookieExpirationTests 7 7 0 21ms
✅ TPPSAMLFlowTests 10 10 0 63ms
✅ TPPSAMLReauthFlowTests 2 2 0 172ms
✅ TPPSAMLRegressionTests 4 4 0 231ms
✅ TPPSAMLSignInTests 26 26 0 2.30s
✅ TPPSAMLStateIsolationTests 4 4 0 168ms
✅ TPPSAMLStateMachineTests 6 6 0 490ms
✅ TPPSettingsTests 6 6 0 76ms
✅ TPPSignInAdobeSkipTests 14 14 0 1.26s
✅ TPPSignInAuthStateTransitionTests 3 3 0 269ms
✅ TPPSignInBusinessLogicExtendedTests 58 58 0 5.16s
✅ TPPSignInBusinessLogicOAuthTests 11 11 0 958ms
✅ TPPSignInBusinessLogicSignOutTests 11 11 0 1.13s
✅ TPPSignInBusinessLogicStateMachineTests 9 9 0 2.49s
✅ TPPSignInBusinessLogicTests 18 18 0 6.18s
✅ TPPSignInBusinessLogicTokenFlowTests 3 3 0 279ms
✅ TPPSignInBusinessLogicValidationCallbackOrderTests 2 2 0 176ms
✅ TPPSignInErrorHandlingTests 2 2 0 181ms
✅ TPPSignInProfileDocEdgeCaseTests 3 3 0 341ms
✅ TPPSignedInStateProviderTests 3 3 0 6ms
✅ TPPUserAccountAuthStateTests 6 6 0 13ms
✅ TPPUserAccountGapTests 4 4 0 11ms
✅ TPPUserAccountIsolationLintTests 3 3 0 865ms
✅ TPPUserAccountTestFactoryTests 7 0 0 67ms
✅ TPPUserFriendlyErrorTests 11 11 0 38ms
✅ TPPUserNotificationsTests 10 10 0 50ms
✅ TPPXMLSwiftTests 16 16 0 108ms
✅ TPPXMLTests 3 3 0 10ms
✅ TearDownRequiredLintTests 5 5 0 1.45s
✅ TestAppContainerFactoryTests 5 5 0 38ms
✅ TimeEntryTests 3 3 0 6ms
❌ TokenRefreshAndRetryQueueTests 11 10 1 9.51s
✅ TokenRefreshIntegrationTests 2 2 0 33ms
✅ TokenRefreshInterceptorAuthCoordinatorTests 8 8 0 4.31s
✅ TokenRefreshInterceptorTests 22 22 0 5.79s
✅ TokenRefreshOnForegroundTests 10 10 0 2.32s
✅ TokenRefreshTests 25 25 0 150ms
✅ TokenRequestCredentialGuardTests 13 13 0 1.53s
✅ TokenRequestTests 11 11 0 53ms
✅ TokenResponseTests 21 21 0 62ms
✅ TypographyPresetTests 21 21 0 126ms
✅ TypographyServiceTests 31 31 0 1.13s
✅ TypographySettingsViewModelTests 27 27 0 527ms
✅ UIAlertCACommitGuardTests 8 8 0 248ms
✅ UIColor_NYPLAdditionsTests 1 1 0 3ms
✅ URLBackupExclusionTests 3 3 0 25ms
✅ URLExtensionTests 16 16 0 61ms
✅ URLExtensionsTests 6 6 0 13ms
✅ URLRequestExtensionsCoverageTests 3 3 0 12ms
✅ URLRequestExtensionsTests 11 11 0 47ms
✅ URLRequestNYPLAdditionsTests 11 11 0 28ms
✅ URLRequest_NYPLTests 1 1 0 2ms
✅ URLResponseAuthenticationTests 10 10 0 25ms
✅ URLResponseNYPLTests 14 14 0 29ms
✅ URLSessionCredentialStorageTests 3 3 0 7ms
✅ URLSessionStubbingResetTests 2 2 0 12ms
✅ URLTypeTests 2 2 0 8ms
✅ URLValidationTests 5 5 0 77ms
✅ UnifiedOPDSServiceStateMachineTests 2 2 0 724ms
✅ UserAccountPublisherAuthStateTests 5 5 0 39ms
✅ UserAccountPublisherTests 14 14 0 294ms
✅ UserAccountValidationTests 11 11 0 1.17s
✅ UserDefaultsIsolationLintTests 2 2 0 626ms
✅ UserProfileDocumentTests 7 7 0 24ms
✅ UserRetryTrackerTests 10 10 0 21ms
✅ XCTestCase_testUserDefaultsTests 3 3 0 24ms
✅ iPadOnMacRMSDKGuardTests 1 1 0 3ms
Failed Tests (click to expand)
Palace.PalaceTests
BookReturnServiceAuthCoordinatorTests.testService_authErrorOnReturn_withoutCoordinator_fallsBackToLegacyReauthenticator
TokenRefreshAndRetryQueueTests.First Run

📊 Testing Coverage Breakdown

Unit Test Line Coverage (testable surfaces): 47.8%

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

Target Lines Covered
Palace.app 46.0%

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 self-assigned this Jun 9, 2026
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