Skip to content

refactor(accounts): extract AccountCredentialResolver credential-resolution collaborator (Wave 3 / 3a-5) - #1368

Merged
mauricecarrier7 merged 1 commit into
developfrom
feat/pp-decomp-3a5-credential-resolver
Jul 31, 2026
Merged

refactor(accounts): extract AccountCredentialResolver credential-resolution collaborator (Wave 3 / 3a-5)#1368
mauricecarrier7 merged 1 commit into
developfrom
feat/pp-decomp-3a5-credential-resolver

Conversation

@mauricecarrier7

Copy link
Copy Markdown
Contributor

What & why

Fifth of the 3a PalaceAccounts collaborator splits. Per-account credential resolution — the per-library TPPUserAccount cache (immutable keychain keys), the currentUserAccount ride-out over the account-switch nil window, and the fresh-install placeholder — moves out of AccountsManager into an injected AccountCredentialResolver. Structurally small but the highest user-facing risk of the remaining splits: this is the credential-isolation boundary (F-034 cross-account leak) and the sign-in-modal ride-out (F-016). Behaviour-identical. Follows #1360/#1361/#1363/#1366/#1367 (all merged).

AccountsManager 955 → 915 LOC. Across the five extractions this session the hub is 2383 → 915 (−62%).

Design (architect-validated)

  • final class, not an actorcurrentUserAccount is a synchronous @objc TPPUserAccountResolving requirement reached from the non-async currentAccount setter. Same rationale as the prior collaborators.
  • One injected dep: currentAccountIdProvider: () -> String? — a live closure ({ [weak self] in self?.currentAccountId }), not a snapshot, so the ride-out observes the transient nil window in real time. TPPUserAccount(libraryUUID:) is self-contained (own queue + internal keychain), so no defaults/keychain is injected. lazy var (the closure captures self).
  • Invariants preserved verbatim:
    • F-034userAccount(for:) does check-build-insert in one userAccountsLock span; same cached instance per UUID; keys immutable. Splitting it would reopen the 6-year TOCTOU (PP-4020).
    • F-016currentUserAccount writes lastKnownCurrentUserAccount under the lock on every id-present resolution, and in the nil window returns lastKnown ?? placeholder (placeholder evaluated after unlock) — so consumers never see hasCredentials == false on a signed-in account (the PR Fix cross-account credential contamination: per-account TPPUserAccount instances #822 spurious-modal class).
  • No sharedAccount() fallback (the 3a-4 BLOCK + PR Fix cross-account credential contamination: per-account TPPUserAccount instances #822 lesson) — the only fallbacks are lastKnown then the placeholder.
  • Zero external edits — the hub keeps the @objc TPPUserAccountResolving conformance + thin userAccount(for:)/currentUserAccount facades, so the ~136 external call sites and the Obj-C bridge are byte-identical.

Verification

Gate Result
God-class LOC freeze re-baselined DOWN 955 → 915
Palace-noDRM build (production compile) BUILD SUCCEEDED
Locator / shared-read 302 / 212
Zero external edits confirmed
F-034 500-iteration chaos gate (TPPCredentialIsolationE2ETests) + TPPPerAccountIsolationTests + the new seam tests run in CI — worktree can't build the Adobe host; they pass through the retained facades unchanged. CI must be green before merge.

Tests

New AccountCredentialResolverTests (spy currentAccountIdProvider): cache stability (=== + boundLibraryUUID), id-present resolution, the F-016 ride-out pin (resolve "A" → flip provider to nil → returns the same A instance, not the placeholder — front-and-center), fresh-install placeholder (no credentials), and a concurrentPerform single-instance check for the lock span. The end-to-end F-034 500-iteration chaos gate stays as the retained pin (untouched, green via the facade).

Review rigor

/rigorous-fix: fix-contract → architect pre-review APPROVED → implement → 3× SoD (architect, qa_test, blast_radius). Session-spawned agent reviewers (the [Self-Approval] flag is the known false-positive), not an independent human review.

Not in this PR

The last 3a collaborator: CurrentAccountStore (the currentAccount switch pipeline — the spine). 3 MyBooks docstrings naming AccountsManager.noAccountSentinelUUID go stale (compile-safe; the literal is value-duplicated).

🤖 Generated with Claude Code

…lution collaborator (Wave 3 / 3a-5)

Fifth 3a collaborator split. Per-account credential resolution — the per-library
TPPUserAccount cache (immutable keychain keys), the currentUserAccount ride-out over
the account-switch nil window, and the fresh-install placeholder — moves out of
AccountsManager into an injected AccountCredentialResolver. Structurally small but the
highest user-facing risk: this is the credential-isolation boundary (F-034 cross-account
leak) + the sign-in-modal ride-out (F-016). Behaviour-identical. Off develop (all four
prior extractions merged).

**AccountsManager 955 → 915 LOC.** Across the five extractions the hub is 2383 → 915.

- New AccountCredentialResolver.swift: a `final class @unchecked Sendable` (not actor —
  currentUserAccount is a synchronous @objc TPPUserAccountResolving requirement reached
  from the non-async currentAccount setter). Owns the userAccounts cache + userAccountsLock
  + lastKnownCurrentUserAccount + noAccountPlaceholder. ONE injected dep:
  `currentAccountIdProvider: () -> String?` — a LIVE closure (not a snapshot) so the
  ride-out observes the transient nil window in real time; TPPUserAccount(libraryUUID:) is
  self-contained so no defaults/keychain is injected. lazy var (closure captures self).
- Invariants preserved VERBATIM: F-034 — userAccount(for:) does check-build-insert in ONE
  userAccountsLock span (splitting it reopens the 6-year TOCTOU, PP-4020); F-016 —
  currentUserAccount writes lastKnown under lock on every id-present resolution, and in the
  nil window returns lastKnown ?? placeholder (placeholder evaluated after unlock).
- NO TPPUserAccount.sharedAccount() fallback (the 3a-4 BLOCK + PR #822 lesson) — the only
  fallbacks are lastKnown then the placeholder.
- Hub keeps the @objc TPPUserAccountResolving conformance + thin userAccount(for:)/
  currentUserAccount facades → the ~136 external call sites + the Obj-C bridge are
  byte-identical (zero external edits). @unchecked Sendable audit refreshed.
- New AccountCredentialResolverTests: cache stability, id-present resolution, the F-016
  ride-out pin (front-and-center), fresh-install placeholder (no credentials), and a
  concurrentPerform single-instance check for the lock span.

Verified: god-class freeze re-baselined DOWN 955 → 915; locator 302 / shared-read 212;
Palace-noDRM BUILD SUCCEEDED (production compile). Architect pre-review APPROVED.

**Scope:** per-account credential resolution out of AccountsManager into an injected
collaborator; Accounts area only, single-module.
**Not done:** the F-034 500-iteration chaos gate (TPPCredentialIsolationE2ETests) +
TPPPerAccountIsolationTests + the new seam tests run in CI (worktree can't build the Adobe
host); they pass through the retained facades unchanged. 3 MyBooks docstrings naming
AccountsManager.noAccountSentinelUUID go stale (compile-safe; the literal is value-duplicated).
**Deferred:** the last collaborator, CurrentAccountStore (the currentAccount switch pipeline).

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

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


🏛️ Architecture Analysis

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

ℹ️ This diff changed 0 architecture-relevant files — the numbers above are the repo baseline, unchanged by this PR.

⚠️ 2 layer violation(s) — see Architecture Findings below for the offending dependency edge(s).

🔄 Dependency Cycles

See full report for cycle details.

📋 Architecture Findings

See full report for detailed findings.


🔍 Reachability Analysis

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

ℹ️ No architecture-relevant files in this diff — reachability not evaluated.


📊 0 files analyzed | 📦 Download Full Report

Powered by CodeAtlas Ledger
• Accessibility: AccessLint

@github-actions

Copy link
Copy Markdown

🧪 Unit Test Results

📊 View Full Interactive Report

❌ 2 TESTS FAILED

8211 tests | 8068 passed | 2 failed | 139 skipped | ⏱️ 11m 42s | 📊 98.3% | 📈 45.1% coverage

All 948 classes — 2 with failures (full matrix)
Class Tests Passed Failed Skipped Duration
✅ AccessLintComplianceTests 11 11 0 0 107ms
✅ AccessibilityAnnouncementCenterTests 20 20 0 0 1.78s
✅ AccessibilityLabelTests 9 9 0 0 144ms
✅ AccessibilityPreferencesTests 26 26 0 0 103ms
✅ AccessibilityServiceTests 11 11 0 0 123ms
✅ AccountAuthDocCarryoverTests 5 5 0 0 400ms
✅ AccountAuthSurfaceHostsTests 7 7 0 0 61ms
✅ AccountAwareNetworkTests 10 10 0 0 133ms
✅ AccountCredentialResolverTests 5 5 0 0 39ms
✅ AccountDetailCredentialStateTests 7 0 0 7 145ms
✅ AccountDetailPINVisibilityTests 25 0 0 25 1.11s
✅ AccountDetailSignOutConfirmationTests 2 0 0 2 59ms
✅ AccountDetailViewModelGapTests 1 1 0 0 48ms
✅ AccountDetailViewModelLeakTests 1 1 0 0 39ms
✅ AccountDetailViewModelSignedInDerivationTests 5 0 0 5 94ms
✅ AccountDetailViewModelTests 19 0 0 19 1.11s
✅ AccountDetailsAuthenticationIsBrowserBasedTests 10 10 0 0 125ms
✅ AccountDetailsNeedsAuthAggregateTests 10 10 0 0 117ms
✅ AccountDetailsURLTests 17 17 0 0 196ms
✅ AccountErrorReportingTests 1 1 0 0 6ms
✅ AccountModelGapTests 9 9 0 0 368ms
✅ AccountModelTests 20 20 0 0 160ms
✅ AccountNetworkingSeamTests 2 2 0 0 342ms
✅ AccountProfileDocumentTests 3 3 0 0 9ms
✅ AccountRegistryCacheSeamTests 3 3 0 0 109ms
✅ AccountRegistryLoaderSeamTests 3 3 0 0 16ms
✅ AccountRegistryStoreSeamTests 6 6 0 0 775ms
✅ AccountScopeAdapterTests 4 4 0 0 152ms
✅ AccountStateMachineTests 13 13 0 0 574ms
✅ AccountSwitchBorrowReauthCouplingContractTests 4 4 0 0 92ms
✅ AccountSwitchCleanupTests 8 8 0 0 171ms
✅ AccountSwitchIntegrationTests 8 8 0 0 231ms
✅ AccountSwitchLifecycleTests 9 0 0 9 144ms
✅ AccountsManagerAccountIndexTests 7 7 0 0 118ms
✅ AccountsManagerAuthDocContractTests 1 1 0 0 66ms
✅ AccountsManagerCacheReadTests 4 4 0 0 324ms
✅ AccountsManagerCacheTests 16 16 0 0 176ms
✅ AccountsManagerCancellationTests 5 5 0 0 617ms
✅ AccountsManagerCatalogLoadJoinTests 3 3 0 0 281ms
✅ AccountsManagerCurrentAccountSwitchContractTests 5 5 0 0 677ms
✅ AccountsManagerFirstRunDecodeTests 3 3 0 0 15.79s
✅ AccountsManagerGapTests 3 3 0 0 282ms
✅ AccountsManagerHelpersTests 12 12 0 0 2.25s
✅ AccountsManagerIsolationLintTests 4 4 0 0 969ms
✅ AccountsManagerLaunchSnapshotTests 13 13 0 0 5.11s
❌ AccountsManagerStateMachineWiringTests 19 18 1 0 2m 43s
✅ AccountsManagerTests 53 48 0 5 1.70s
✅ ActiveSessionsViewModelTests 12 12 0 0 281ms
✅ AdobeActivationTests 6 6 0 0 49ms
✅ AdobeCertificateGapTests 7 7 0 0 21ms
✅ AdobeDRMCharacterizationTests 21 21 0 0 67ms
✅ AdobeDRMErrorGapTests 3 3 0 0 46ms
✅ AdobeDRMHandlerTests 12 12 0 0 180ms
✅ AdobeDRMServiceGapTests 2 2 0 0 7ms
✅ AlertModelCoverageTests 6 6 0 0 22ms
✅ AlertModelRetryTests 7 7 0 0 62ms
✅ AlertModelTests 2 2 0 0 23ms
✅ AlertPresentationRawGuardLintTests 6 6 0 0 47ms
✅ AlertUtilsTests 20 20 0 0 430ms
✅ AnnotationContractTests 3 3 0 0 18ms
✅ AnnotationDeviceIDTests 2 2 0 0 9ms
✅ AnnotationPostResponseContractTests 1 1 0 0 3ms
✅ AnnouncementChainTests 5 5 0 0 11ms
✅ AnnouncementTests 3 3 0 0 6ms
✅ AnonymousBorrowBaselineFixtureTests 13 13 0 0 107ms
✅ AnonymousBorrowCandidateFixtureTests 6 6 0 0 91ms
✅ AnonymousBorrowDeltaTests 2 2 0 0 21ms
✅ AppContainerAudiobookFactoryTests 3 3 0 0 10ms
✅ AppContainerAuthCoordinatorRegistrationTests 3 3 0 0 3ms
✅ AppContainerImageLoaderInjectionTests 4 4 0 0 42ms
✅ AppContainerIsolationLintTests 7 7 0 0 2.15s
✅ AppContainerResetTests 5 5 0 0 92ms
✅ AppContainerTests 5 5 0 0 11ms
✅ AppContainerWithSignInModalSheetPresenterTests 2 2 0 0 3ms
✅ AppHealthViewModelTests 8 8 0 0 159ms
✅ AppLaunchTrackerExtendedTests 16 16 0 0 538ms
✅ AppLaunchTrackerTests 10 10 0 0 263ms
✅ AppLaunchTrackerWiringTests 2 2 0 0 59ms
✅ AppRatingServiceOverrideTests 3 3 0 0 25ms
✅ AppRatingServiceTests 9 9 0 0 76ms
✅ AppRouteTests 5 5 0 0 88ms
✅ AppTabHostMiniPlayerIntegrationTests 6 6 0 0 217ms
✅ AppTabHostViewBadgeCountTests 10 10 0 0 77ms
✅ AppTabRouterCoverageTests 4 4 0 0 69ms
✅ AppTabRouterGapTests 3 3 0 0 16ms
✅ ArrayExtensionsTests 6 6 0 0 11ms
✅ AudioBookmarkGapTests 6 6 0 0 46ms
✅ AudioEngineWrapperTests 8 8 0 0 144ms
✅ AudioInterruptionLogicTests 6 6 0 0 31ms
✅ AudioSessionActivatorTests 8 8 0 0 55ms
✅ AudiobookAccessibilityTests 7 7 0 0 60ms
✅ AudiobookBackgroundAudioTests 2 2 0 0 118ms
✅ AudiobookBearerTokenRecoveryTests 21 21 0 0 99ms
✅ AudiobookBookmarkBusinessLogicConcurrencyTests 3 3 0 0 171ms
✅ AudiobookBookmarkBusinessLogicPositionWriteTests 8 8 0 0 1.11s
✅ AudiobookBookmarkBusinessLogicTests 21 21 0 0 4.27s
✅ AudiobookChapterTOCNormalizationTests 6 6 0 0 8ms
✅ AudiobookColdLoadRecoveryTests 4 4 0 0 5ms
✅ AudiobookContentGateTests 11 11 0 0 139ms
✅ AudiobookCrossVendorSmokeTests 4 4 0 0 99ms
✅ AudiobookDataManagerEmptyQueueTests 1 1 0 0 6ms
✅ AudiobookDataManagerErrorHandlingTests 5 5 0 0 220ms
✅ AudiobookDataManagerModelsTests 20 20 0 0 132ms
✅ AudiobookDataManagerNetworkSyncTests 5 5 0 0 150ms
✅ AudiobookDataManagerSaveTests 4 4 0 0 60ms
✅ AudiobookDataManagerStoreRecoveryTests 5 5 0 0 62ms
✅ AudiobookFileLoggerTests 15 15 0 0 408ms
✅ AudiobookFirstOpenHangTests 14 14 0 0 1.24s
✅ AudiobookLoadFailureSAMLReauthTests 10 10 0 0 527ms
✅ AudiobookLoaderDispatchTests 7 7 0 0 187ms
✅ AudiobookLoaderFinalizeBuildTests 11 11 0 0 317ms
✅ AudiobookLoaderOPDSShapeMatrixTests 8 0 0 8 184ms
✅ AudiobookLoaderPredicateTests 11 11 0 0 100ms
✅ AudiobookLoaderTests 2 2 0 0 146ms
✅ AudiobookMorphingPlayerViewTests 20 20 0 0 83ms
✅ AudiobookNetworkValidationTests 3 3 0 0 13ms
✅ AudiobookOpenStateRaceTests 3 3 0 0 696ms
✅ AudiobookPhoneAlertContentTests 3 3 0 0 11ms
✅ AudiobookPlaybackStateTests 3 3 0 0 31ms
✅ AudiobookPlaybackTests 26 26 0 0 356ms
✅ AudiobookPlaytimesLifecycleTests 6 6 0 0 300ms
✅ AudiobookPositionAdapterContractTests 3 3 0 0 59ms
✅ AudiobookPositionPolicyValidatorTests 14 14 0 0 70ms
✅ AudiobookPositionRestoreTests 20 20 0 0 461ms
✅ AudiobookReadinessPlaybackContractTests 2 2 0 0 234ms
✅ AudiobookSAMLReauthTests 6 6 0 0 96ms
✅ AudiobookSessionErrorDescriptionTests 4 4 0 0 25ms
✅ AudiobookSessionErrorExtTests 4 4 0 0 12ms
✅ AudiobookSessionErrorTests 3 3 0 0 8ms
✅ AudiobookSessionManagerErrorMappingTests 6 6 0 0 38ms
✅ AudiobookSessionManagerFlagGatePresentationTests 4 4 0 0 145ms
✅ AudiobookSessionManagerPresenterMigrationTests 10 10 0 0 164ms
✅ AudiobookSessionManagerShutdownTests 12 12 0 0 241ms
✅ AudiobookSessionPresenterLifecycleContractTests 3 3 0 0 155ms
✅ AudiobookSessionPresenterTests 31 31 0 0 368ms
✅ AudiobookSessionStateTests 6 6 0 0 48ms
✅ AudiobookSessionStateTransitionTests 22 22 0 0 465ms
✅ AudiobookSkipIntervalSettingsTests 7 7 0 0 50ms
✅ AudiobookSleepTimerIntegrationTests 5 5 0 0 262ms
✅ AudiobookStorageLocationTests 3 3 0 0 14ms
✅ AudiobookTOCTests 18 18 0 0 114ms
✅ AudiobookTimeEntryTests 6 6 0 0 78ms
✅ AudiobookTimeTrackerEdgeTests 8 8 0 0 204ms
✅ AudiobookTimeTrackerLifecycleTests 5 5 0 0 1.33s
✅ AudiobookTimeTrackerTests 9 9 0 0 162ms
✅ AudiobookTrackCompletionTests 2 2 0 0 13ms
✅ AudiobookTypeRoutingTests 5 5 0 0 173ms
✅ AudiobookVendorAdapterTests 5 5 0 0 29ms
✅ AudiobookVendorRecoveryContractTests 1 1 0 0 63ms
✅ AudiobookmarkTests 4 4 0 0 16ms
✅ AuthCoordinatorTelemetryTests 5 5 0 0 34ms
✅ AuthDecisionEventEmissionTests 7 7 0 0 22ms
✅ AuthDocumentContractTests 2 2 0 0 4ms
✅ AuthDocumentLoaderSeamTests 6 6 0 0 65ms
✅ AuthDocumentVariantsContractTests 5 5 0 0 30ms
✅ AuthErrorCategoryTests 12 12 0 0 49ms
✅ AuthErrorProblemDocSeamTests 6 6 0 0 74ms
✅ AuthFlowSecurityTests 3 0 0 3 49ms
✅ AuthReducerTests 21 21 0 0 363ms
✅ AuthTypeTests 7 7 0 0 46ms
✅ AuthenticationTests 16 16 0 0 160ms
✅ BackgroundDownloadHandlerTests 28 28 0 0 342ms
✅ BackgroundListenerTests 2 2 0 0 25ms
✅ BackgroundReconciliationContractTests 8 8 0 0 79ms
✅ BackgroundSessionRoutingTests 6 6 0 0 30ms
✅ BackupExclusionMigrationTests 3 3 0 0 25ms
✅ BadgeDefinitionTests 33 33 0 0 1.24s
✅ BadgeServiceTests 16 16 0 0 191ms
✅ BadgeUnlockPhaseTests 4 4 0 0 41ms
✅ BadgesViewModelTests 14 14 0 0 247ms
✅ BasicAuthEmptyCredentialTests 4 4 0 0 6ms
✅ BearerTokenAdapterTests 5 4 0 1 80ms
✅ BearerTokenFulfillFlowTests 4 4 0 0 81ms
✅ BearerTokenRefreshTests 4 4 0 0 37ms
✅ BearerTokenResponseDetectionTests 7 7 0 0 64ms
✅ BeginningPositionPolicyTests 8 8 0 0 181ms
✅ BookAvailabilityFormatterTests 18 18 0 0 85ms
✅ BookButtonMapperHoldReadyTests 10 10 0 0 37ms
✅ BookButtonMapperTests 21 21 0 0 182ms
✅ BookButtonMapperViewModelTests 18 18 0 0 191ms
✅ BookButtonStateTests 8 8 0 0 48ms
✅ BookButtonTypeMetaTests 4 4 0 0 39ms
✅ BookButtonTypeTests 13 13 0 0 135ms
✅ BookCellModelActionTests 18 18 0 0 633ms
✅ BookCellModelCacheInvalidationTests 9 9 0 0 1.75s
✅ BookCellModelCachePrefetchSafetyTests 9 9 0 0 218ms
✅ BookCellModelCacheTests 22 22 0 0 496ms
✅ BookCellModelComputedPropertyTests 19 19 0 0 3.21s
✅ BookCellModelOfflineTests 9 9 0 0 206ms
✅ BookCellModelRegistryBindingTests 4 4 0 0 136ms
✅ BookCellModelStateTests 16 16 0 0 4.57s
✅ BookCellModelStreamingHTMLTests 2 2 0 0 71ms
✅ BookCellStateComprehensiveTests 14 14 0 0 70ms
✅ BookContentResetServiceTests 2 2 0 0 10ms
✅ BookDetailMetadataHydrationTests 6 6 0 0 154ms
✅ BookDetailMetadataMergeContractTests 5 5 0 0 104ms
✅ BookDetailOpenRoutingTests 3 3 0 0 111ms
✅ BookDetailViewModelAudiobookDismissTests 1 1 0 0 17ms
✅ BookDetailViewModelTests 91 91 0 0 12.72s
✅ BookFileManagerAccountScopingTests 5 5 0 0 547ms
✅ BookFileManagerSideloadResolutionTests 4 4 0 0 141ms
✅ BookFileManagerTests 8 8 0 0 80ms
✅ BookListViewAccessibilityTests 9 9 0 0 77ms
✅ BookPreviewTests 4 4 0 0 381ms
✅ BookRegistryStoreTests 26 26 0 0 406ms
✅ BookRegistrySyncReadinessTests 4 3 0 1 768ms
✅ BookRegistrySyncReentrancyTests 6 6 0 0 275ms
✅ BookRegistrySyncSideloadExemptionTests 2 0 0 2 689ms
✅ BookRegistrySyncTests 36 31 0 5 1.12s
✅ BookReturnCleverReauthTests 1 1 0 0 35ms
✅ BookReturnServiceAuthCoordinatorTests 3 3 0 0 175ms
✅ BookReturnServiceContractTests 9 9 0 0 545ms
✅ BookReturnServiceTests 18 18 0 0 1.15s
✅ BookServiceAudiobookOpenTests 2 2 0 0 16ms
✅ BookSignInRedirectHandlerTests 8 8 0 0 195ms
✅ BookStateIntegrationTests 8 8 0 0 143ms
✅ BookmarkBusinessLogicExtendedTests 6 6 0 0 241ms
✅ BookmarkDeletionLogTests 3 3 0 0 147ms
✅ BookmarkDeviceIdMatchingTests 3 3 0 0 163ms
✅ BookmarkExistenceTests 4 4 0 0 260ms
✅ BookmarkManagerTests 24 24 0 0 399ms
✅ BookmarkSortingTests 1 1 0 0 63ms
✅ BookmarkSyncTests 3 3 0 0 226ms
✅ BorrowAndDownloadIntegrationTests 7 7 0 0 294ms
✅ BorrowErrorMessageTests 13 13 0 0 101ms
✅ BorrowErrorPresenterTests 6 6 0 0 59ms
✅ BorrowOperationAuthCoordinatorTests 6 6 0 0 177ms
✅ BorrowOperationCleverReauthTests 2 2 0 0 45ms
✅ BorrowOperationContractTests 8 8 0 0 743ms
✅ BorrowOperationStreamingHTMLTests 3 3 0 0 32ms
✅ BorrowOperationTests 13 13 0 0 382ms
✅ BorrowOperationTimeoutTests 3 3 0 0 150ms
✅ BorrowReauthResettingTests 4 4 0 0 448ms
✅ BorrowReducerContractTests 2 2 0 0 15ms
✅ BorrowReducerCoreContractTests 12 12 0 0 146ms
✅ BorrowReducerTests 21 21 0 0 223ms
✅ BundledRegistrySnapshotTests 5 5 0 0 211ms
✅ ButtonStateMonotonicClampTests 10 10 0 0 1.66s
✅ ButtonStateTests 16 16 0 0 443ms
✅ ButtonStyleTypeTests 2 2 0 0 11ms
✅ C64ConversionTests 6 6 0 0 20ms
✅ CarPlayAudiobookBridgePresenterMigrationTests 2 2 0 0 26ms
✅ CarPlayAuthHelperReadinessTests 3 3 0 0 2.00s
✅ CarPlayChapterListTests 3 3 0 0 9ms
✅ CarPlayIntegrationTests 2 2 0 0 53.80s
✅ CarPlayLibraryRefreshTests 3 3 0 0 25ms
✅ CarPlayNowPlayingTemplateTests 4 4 0 0 520ms
✅ CarPlayOpenAppAlertTests 6 6 0 0 140ms
✅ CarPlayPlaybackErrorTests 8 8 0 0 73ms
✅ CarPlayTests 12 12 0 0 827ms
✅ CarPlayTimeTrackingTests 3 3 0 0 111ms
✅ CatalogAPIDedupeTests 3 3 0 0 437ms
✅ CatalogAPIEntryPointTests 1 1 0 0 7ms
✅ CatalogAccessibilityTests 8 8 0 0 57ms
✅ CatalogCacheKeyAndIsolationTests 12 12 0 0 394ms
✅ CatalogCacheMetadataExactBoundaryTests 4 4 0 0 48ms
✅ CatalogCacheMetadataTests 21 21 0 0 1.09s
✅ CatalogCrawlSchedulerTests 9 9 0 0 1.07s
✅ CatalogFeedModelTests 4 4 0 0 21ms
✅ CatalogFilterGroupModelTests 17 17 0 0 62ms
✅ CatalogFilterModelTests 17 17 0 0 92ms
✅ CatalogFilterServiceTests 29 29 0 0 220ms
✅ CatalogFilterTests 1 1 0 0 1ms
✅ CatalogLaneAssemblyTests 7 7 0 0 29ms
✅ CatalogLaneModelStructTests 20 20 0 0 355ms
✅ CatalogLaneModelTests 3 3 0 0 7ms
✅ CatalogLaneMoreFilterStateTests 8 8 0 0 104ms
✅ CatalogLaneMoreViewModelTests 43 43 0 0 269ms
✅ CatalogLaneRowViewAccessibilityTests 11 11 0 0 117ms
✅ CatalogLaneSortingTests 5 5 0 0 51ms
✅ CatalogLoadIntegrationTests 6 6 0 0 84ms
✅ CatalogOPDS2NegotiationTests 12 12 0 0 261ms
✅ CatalogPreloaderTests 6 6 0 0 64ms
✅ CatalogProblemDocumentTests 6 6 0 0 46ms
✅ CatalogRepositoryCoreTests 9 9 0 0 405ms
✅ CatalogRepositoryStaleWhileRevalidateTests 12 12 0 0 610ms
✅ CatalogRepositoryTests 19 19 0 0 358ms
✅ CatalogSearchViewModelRegistryUpdateTests 5 5 0 0 303ms
✅ CatalogSearchViewModelTests 67 67 0 0 5.16s
✅ CatalogSelectorsTests 2 2 0 0 2ms
✅ CatalogSortServiceTests 14 14 0 0 56ms
✅ CatalogStateTests 7 7 0 0 43ms
✅ CatalogViewContinueRowsIntegrationTests 3 3 0 0 1.29s
✅ CatalogViewLibraryIconTests 2 2 0 0 1.17s
✅ CatalogViewModelStateMachineTests 19 19 0 0 517ms
✅ ChaosFaultInjectionTests 5 5 0 0 50ms
✅ ChapterChangeDetectorTests 5 5 0 0 105ms
✅ ChapterTOCNormalizerTests 7 7 0 0 38ms
✅ CirculationAnalyticsTests 4 4 0 0 39ms
✅ ColdStartResumeIntegrationTests 10 10 0 0 1.31s
✅ ColorExtensionTests 5 5 0 0 7ms
✅ ConcurrentBookStateTests 3 3 0 0 26ms
✅ ConcurrentDownloadStateTests 3 3 0 0 17ms
✅ ConcurrentTokenRefreshTests 2 2 0 0 25ms
✅ ContinueRowSectionTests 6 6 0 0 65ms
✅ ContinuousPlaybackTrackingTests 3 3 0 0 290ms
✅ CookiePersistenceTests 10 10 0 0 516ms
✅ CrawlStateTests 16 16 0 0 237ms
✅ CrawlableFeedAnalysisTests 17 17 0 0 33ms
✅ CrawlerFallbackTests 12 12 0 0 130ms
✅ CredentialEdgeCaseTests 6 6 0 0 46ms
✅ CredentialPrivacyTests 4 4 0 0 27ms
✅ CredentialPromptCoordinatorTests 4 4 0 0 40ms
✅ CredentialSnapshotInvalidationTests 5 0 0 5 182ms
✅ CredentialStoreCharacterizationTests 7 7 0 0 580ms
✅ CrossDeviceBookmarkSyncTests 12 12 0 0 244ms
✅ CrossDeviceSyncE2ETests 8 8 0 0 619ms
✅ CrossDomain401Tests 8 8 0 0 339ms
✅ CrossFormatMappingTests 14 14 0 0 114ms
✅ DPLAErrorTests 3 3 0 0 5ms
✅ DRMAdversarialTests 4 1 0 3 99ms
✅ DRMFulfilledPublicationTests 6 6 0 0 10ms
✅ DataBase64Tests 3 3 0 0 26ms
✅ DataReceptionComparisonTests 2 2 0 0 61ms
✅ DateExtensionTests 9 9 0 0 40ms
✅ DateFormattingTests 4 4 0 0 50ms
✅ Date_NYPLAdditionsTests 7 7 0 0 405ms
✅ DebugSettingsForceSkeletonsTests 4 4 0 0 25ms
✅ DebugSettingsGapTests 4 4 0 0 19ms
✅ DebugSettingsTests 31 31 0 0 291ms
✅ DefaultCatalogAPITests 31 31 0 0 379ms
✅ DefaultRecentlyReadingServiceTests 13 13 0 0 88ms
✅ DeriveInitialStateTests 4 4 0 0 100ms
✅ DeveloperSettingsEngineeringTierTests 4 4 0 0 6ms
✅ DeveloperSettingsViewModelOverrideTests 4 0 0 4 71ms
✅ DeviceLogCollectorGapTests 2 2 0 0 7ms
✅ DeviceLogCollectorTests 13 13 0 0 222ms
✅ DeviceOrientationTests 7 7 0 0 63ms
✅ DeviceSpecificErrorMonitorTests 11 11 0 0 223ms
✅ DictionaryExtensionsTests 5 5 0 0 54ms
✅ DiskBudgetManagerTests 7 7 0 0 54ms
✅ DiskBudgetTests 2 2 0 0 8ms
✅ DownloadAccountContextAdapterTests 11 11 0 0 401ms
✅ DownloadAlertPresenterTests 8 8 0 0 585ms
✅ DownloadAnnouncementServiceTests 12 12 0 0 62ms
✅ DownloadAuthRetryHandlerAuthCoordinatorTests 6 6 0 0 2.70s
✅ DownloadAuthRetryHandlerTaskLifecycleTests 4 4 0 0 661ms
✅ DownloadAuthRetryHandlerTests 17 17 0 0 2.14s
✅ DownloadCancellationHandlerTests 5 5 0 0 90ms
✅ DownloadCompleteMomentTests 6 6 0 0 11ms
✅ DownloadCompletionParserTests 9 9 0 0 372ms
✅ DownloadCoordinatorIntegrationTests 10 10 0 0 136ms
✅ DownloadCoordinatorTests 11 11 0 0 138ms
✅ DownloadDiskSpaceTests 2 2 0 0 12ms
✅ DownloadErrorInfoTests 3 3 0 0 14ms
✅ DownloadErrorRecoveryPolicyTests 11 11 0 0 136ms
✅ DownloadErrorRecoveryTests 3 3 0 0 12ms
✅ DownloadFreeSpaceExhaustionTests 11 11 0 0 104ms
✅ DownloadInfoTests 5 5 0 0 38ms
✅ DownloadIntegrityTests 10 10 0 0 158ms
✅ DownloadOnlyOnWiFiTests 10 10 0 0 68ms
✅ DownloadPersistenceStoreTests 5 5 0 0 86ms
✅ DownloadProgressPublisherCoreTests 19 19 0 0 723ms
✅ DownloadProgressPublisherTests 2 2 0 0 8ms
✅ DownloadQueueIntegrationTests 3 3 0 0 46ms
✅ DownloadQueueOrchestratorTests 9 9 0 0 115ms
✅ DownloadRMSDKHandoffTests 1 1 0 0 <1ms
✅ DownloadReconciliationLaunchOrderContractTests 2 2 0 0 39ms
✅ DownloadReconciliationTests 17 17 0 0 164ms
✅ DownloadRedirectTests 7 7 0 0 125ms
✅ DownloadResumeAfterKillTests 7 7 0 0 114ms
✅ DownloadSlotManagementTests 5 5 0 0 79ms
✅ DownloadStartCoordinatorContractTests 5 5 0 0 92ms
✅ DownloadStartCoordinatorTests 9 9 0 0 160ms
✅ DownloadStartDispatcherContractTests 12 12 0 0 388ms
✅ DownloadStartDispatcherTests 26 26 0 0 2.21s
✅ DownloadStartReducerContractTests 24 24 0 0 84ms
✅ DownloadStateMachineIntegrationTests 15 15 0 0 267ms
✅ DownloadStateMachineTests 5 5 0 0 38ms
✅ DownloadStateManagerTests 16 16 0 0 499ms
✅ DownloadTaskLifecycleServiceTests 9 9 0 0 210ms
✅ DownloadTaskPersistenceTests 14 14 0 0 76ms
✅ DownloadThrottlingContractTests 2 2 0 0 3ms
✅ DownloadThrottlingServiceTests 10 10 0 0 470ms
✅ DownloadTransferRetryTests 6 6 0 0 2.08s
✅ DownloadWatchdogTests 3 3 0 0 23ms
✅ EPUBKeyCommandsPP4289Tests 4 4 0 0 424ms
✅ EPUBModuleTests 4 4 0 0 15ms
✅ EPUBPositionTests 10 10 0 0 221ms
✅ EPUBSearchViewModelTests 18 18 0 0 189ms
✅ EPUBToolbarToggleTests 11 11 0 0 18ms
✅ EffectBoundaryTests 6 6 0 0 20ms
✅ EmailAddressTests 16 16 0 0 475ms
✅ EpubSampleFactoryTests 5 5 0 0 24ms
✅ ErrorActivityTrackerTests 12 12 0 0 209ms
✅ ErrorDetailTests 14 14 0 0 174ms
✅ ErrorDetailViewControllerGapTests 3 3 0 0 85ms
✅ ErrorDetailViewControllerTests 14 14 0 0 359ms
✅ ErrorLogExporterTests 5 5 0 0 1.37s
✅ ExecutorNetworkHermeticityTests 1 1 0 0 36ms
✅ ExpiredLoanStringsTests 5 5 0 0 9ms
✅ FacetEnumTests 3 3 0 0 4ms
✅ FacetToolbarAccessibilityTests 5 5 0 0 50ms
✅ FacetViewModelLogoDelegateTests 4 4 0 0 28ms
✅ FacetViewModelTests 18 18 0 0 2.05s
✅ FetchManifestWithBearerTokenLCPSafetyTests 1 1 0 0 33ms
✅ FetchManifestWithBearerTokenTests 9 9 0 0 462ms
✅ FetchOpenAccessManifestLCPSafetyTests 4 4 0 0 14ms
✅ FileURLGenerationTests 3 3 0 0 26ms
✅ FindawayChapterStatusGuardTests 1 1 0 0 3ms
✅ FindawaySavedVsPlayedTests 1 1 0 0 75ms
✅ FloatTPPAdditionsTests 5 5 0 0 120ms
✅ FocusIndicationTests 7 7 0 0 53ms
✅ FontManagerTests 17 17 0 0 147ms
✅ ForceResetTests 6 6 0 0 326ms
✅ GeneralCacheClearOnUpdateTests 3 3 0 0 37ms
✅ GeneralCacheTests 20 20 0 0 300ms
✅ GroupEnumTests 1 1 0 0 4ms
✅ HTMLTextViewTests 70 70 0 0 18.79s
✅ HoldNotificationClassificationTests 2 2 0 0 42ms
✅ HoldsBadgeCountTests 9 9 0 0 91ms
✅ HoldsBookViewModelTests 8 8 0 0 56ms
✅ HoldsReducerTests 11 11 0 0 109ms
✅ HoldsSyncFailureTests 12 12 0 0 1.41s
✅ HoldsViewModelTests 23 23 0 0 283ms
✅ HostFailureTrackerTests 2 2 0 0 20ms
✅ ImageCacheContinuationTests 1 1 0 0 2.28s
✅ ImageCacheOffMainIsolationTests 2 2 0 0 40.17s
✅ ImageCacheTypeTests 1 1 0 0 24ms
✅ ImageCoverKeyUnificationTests 2 2 0 0 17ms
✅ ImageLoaderTests 14 14 0 0 100ms
✅ InflightFeedFetchesTimeoutTests 4 4 0 0 10.35s
✅ IntExtensionsTests 4 4 0 0 513ms
✅ IsReaderActiveTrackingModifierTests 4 4 0 0 24ms
✅ KeyboardNavigationFKATests 11 11 0 0 327ms
✅ KeyboardNavigationHandlerTests 16 16 0 0 102ms
✅ KeyboardVoiceOverTests 5 5 0 0 84ms
✅ LCPAcquisitionPredicateTests 4 4 0 0 6ms
✅ LCPAdapterTests 8 8 0 0 38ms
✅ LCPAudiobookURLSchemeTests 4 4 0 0 12ms
✅ LCPAudiobooksTests 21 21 0 0 139ms
✅ LCPBotanCRLGuardTests 5 5 0 0 49ms
✅ LCPCharacterizationTests 31 31 0 0 198ms
✅ LCPClientTests 9 9 0 0 113ms
✅ LCPFulfillmentHandlerTests 8 8 0 0 209ms
✅ LCPKeychainMigrationTests 3 3 0 0 52ms
✅ LCPLibraryServiceTests 20 20 0 0 150ms
✅ LCPLicenseDocumentDetectionTests 5 5 0 0 27ms
✅ LCPLicenseFilePathTests 3 3 0 0 26ms
✅ LCPOrphanedDownloadRegistryTests 4 4 0 0 161ms
✅ LCPPDFAcquisitionPredicateTests 5 5 0 0 28ms
✅ LCPPDFDiskExtractTests 5 5 0 0 52ms
✅ LCPPDFOpenProgressTests 13 13 0 0 134ms
✅ LCPPassphraseReadinessTests 2 2 0 0 16ms
✅ LCPSessionIdentifierTests 3 3 0 0 50ms
✅ LegacySAMLProblemDocumentPropagationTests 7 7 0 0 248ms
✅ LibrariesSectionViewModelTests 16 16 0 0 83ms
✅ LibraryCatalogMergerTests 9 9 0 0 20ms
✅ LibraryRegistryCrawlerTests 15 15 0 0 193ms
✅ LicensesServiceTests 4 4 0 0 20ms
✅ LiveCrawlableParsingTest 4 0 0 4 23ms
✅ LoanEvictionPolicyTests 13 13 0 0 38ms
✅ LoanRenewalServiceTests 9 9 0 0 146ms
✅ LocalBookContentServiceTests 7 7 0 0 395ms
✅ LocalFileAdapterTests 6 5 0 1 890ms
✅ LogTests 13 13 0 0 480ms
✅ LoginKeyboardTests 8 8 0 0 115ms
✅ MainActorHelpersTests 22 22 0 0 731ms
✅ MappedCatalogBridgeTests 3 3 0 0 124ms
✅ MappedCatalogModelTests 11 11 0 0 246ms
✅ MockBackendExpiredCredentialsTests 3 3 0 0 77ms
✅ MockBackendHoldsTests 3 3 0 0 97ms
✅ MockBackendIntegrationTests 4 4 0 0 153ms
✅ MockBackendLoanLimitTests 2 2 0 0 43ms
✅ MockBackendRouteMatchingTests 4 4 0 0 794ms
✅ MockBackendServerDownTests 1 1 0 0 91ms
✅ MockIsolationLintTests 5 5 0 0 1.73s
✅ MultiLibraryTokenIsolationTests 14 14 0 0 213ms
✅ MyBooksDownloadCenterAccountIdThreadingTests 7 7 0 0 188ms
✅ MyBooksDownloadCenterAccountScopeSeamTests 3 3 0 0 59ms
✅ MyBooksDownloadCenterAdeptGapTests 3 3 0 0 28ms
✅ MyBooksDownloadCenterConcurrencyTests 22 22 0 0 643ms
✅ MyBooksDownloadCenterEvictionTests 7 7 0 0 91ms
✅ MyBooksDownloadCenterOfflineTests 8 8 0 0 94ms
✅ MyBooksDownloadSessionInvalidationTests 3 3 0 0 336ms
✅ MyBooksSimplifiedBearerTokenTests 17 17 0 0 60ms
✅ MyBooksViewModelBooksPublisherTests 3 3 0 0 42ms
✅ MyBooksViewModelConcurrencyTests 4 4 0 0 82ms
✅ MyBooksViewModelDownloadStateTests 3 3 0 0 57ms
✅ MyBooksViewModelEmptyArrayTests 3 3 0 0 23ms
✅ MyBooksViewModelEmptyStateTests 4 4 0 0 105ms
✅ MyBooksViewModelExtendedTests 15 15 0 0 144ms
✅ MyBooksViewModelFacetIntegrationTests 4 4 0 0 34ms
✅ MyBooksViewModelFacetPublisherTests 5 5 0 0 86ms
✅ MyBooksViewModelFilterSortInteractionTests 2 2 0 0 13ms
✅ MyBooksViewModelFilterTests 9 9 0 0 235ms
✅ MyBooksViewModelGuardConditionsTests 2 2 0 0 34ms
✅ MyBooksViewModelLargeDatasetTests 2 2 0 0 247ms
✅ MyBooksViewModelLoadAccountTests 2 2 0 0 127ms
✅ MyBooksViewModelLoginStateTests 4 4 0 0 500ms
✅ MyBooksViewModelMultipleAuthorSortingTests 3 3 0 0 24ms
✅ MyBooksViewModelNotificationTests 4 4 0 0 325ms
✅ MyBooksViewModelOfflineFilteringTests 3 3 0 0 15ms
✅ MyBooksViewModelPublisherTests 7 7 0 0 56ms
✅ MyBooksViewModelSearchEdgeCaseTests 6 6 0 0 134ms
✅ MyBooksViewModelSearchQueryTests 3 3 0 0 16ms
✅ MyBooksViewModelSortPersistenceTests 3 3 0 0 27ms
✅ MyBooksViewModelSortingIntegrationTests 5 5 0 0 48ms
✅ MyBooksViewModelSortingTests 6 6 0 0 60ms
✅ MyBooksViewModelStateTransitionTests 3 3 0 0 343ms
✅ MyBooksViewModelUIBindingTests 3 3 0 0 13ms
✅ NSErrorAdditionsTests 7 7 0 0 23ms
✅ NSNotificationTPPTests 3 3 0 0 12ms
✅ NavigationCoordinatorTests 18 18 0 0 116ms
✅ NavigationFreezePreventionTests 5 5 0 0 127ms
✅ NetworkCacheClearRoutingTests 3 3 0 0 88ms
✅ NetworkExecutorCredentialGuardTests 8 8 0 0 3.28s
✅ NetworkExecutorResponseRegressionTests 4 4 0 0 59ms
✅ NetworkExecutorTaskTypeTests 3 3 0 0 51ms
✅ NetworkOfflineDetectionTests 3 3 0 0 93ms
✅ NetworkQueueTests 11 11 0 0 199ms
✅ NetworkRequestQueueTests 2 2 0 0 10.09s
✅ NetworkRetryLogicTests 7 7 0 0 77ms
✅ NetworkTimeoutTests 2 2 0 0 14ms
✅ NotificationEventTypeContractTests 7 7 0 0 34ms
✅ NotificationPayloadContractTests 10 10 0 0 135ms
✅ NotificationServiceStateMachineTests 9 9 0 0 616ms
✅ NotificationServiceTests 16 16 0 0 208ms
✅ NotificationServiceTokenTests 13 13 0 0 58ms
✅ NotificationSyncThrottleTests 5 5 0 0 32ms
✅ NotificationTokenDataTests 4 4 0 0 104ms
✅ NotificationTokenRegistrationTests 10 10 0 0 49ms
✅ NowPlayingCoordinatorBackgroundTests 6 6 0 0 1.69s
✅ NowPlayingCoordinatorTests 19 19 0 0 988ms
✅ OAuthSAMLRedirectRegressionTests 4 4 0 0 247ms
✅ OIDCAuthDocumentParsingTests 4 4 0 0 99ms
✅ OIDCAuthTypeTests 5 5 0 0 53ms
✅ OIDCAuthenticationPropertyTests 8 8 0 0 363ms
✅ OIDCCallbackEdgeCaseTests 9 9 0 0 417ms
✅ OIDCCallbackHandlingTests 5 5 0 0 202ms
✅ OIDCCallbackSchemeTests 3 3 0 0 8ms
✅ OIDCIsolationRegressionTests 6 6 0 0 970ms
✅ OIDCLoginRoutingTests 3 3 0 0 155ms
✅ OIDCMakeRequestTests 3 3 0 0 238ms
✅ OIDCNSCodingTests 1 1 0 0 37ms
✅ OIDCNetworkLayer401Tests 5 5 0 0 179ms
✅ OIDCReauthOnExpiredTokenTests 5 5 0 0 172ms
✅ OIDCRedirectURIConstructionTests 6 6 0 0 452ms
✅ OIDCRegressionTests 9 9 0 0 437ms
✅ OIDCSelectedAuthenticationTests 2 2 0 0 68ms
✅ OIDCSignOutRegressionTests 6 6 0 0 383ms
✅ OIDCTokenRefreshRegressionTests 6 6 0 0 258ms
✅ OIDCUpdateUserAccountTests 5 5 0 0 180ms
✅ OIDCViewModelRegressionTests 1 1 0 0 34ms
✅ OIDCViewModelSignInTests 2 2 0 0 71ms
✅ OPDS1BorrowEntryContractTests 4 4 0 0 57ms
✅ OPDS1CatalogGroupedContractTests 3 3 0 0 89ms
✅ OPDS1HoldEntriesContractTests 4 4 0 0 32ms
✅ OPDS1LoansFeedContractTests 6 6 0 0 33ms
✅ OPDS1ParsingTests 34 34 0 0 648ms
✅ OPDS1RevokeResponseContractTests 2 2 0 0 32ms
✅ OPDS2AuthenticationDocumentTests 18 18 0 0 406ms
✅ OPDS2AvailabilityTests 4 4 0 0 29ms
✅ OPDS2BookBridgeTests 44 44 0 0 387ms
✅ OPDS2BorrowResponseContractTests 3 3 0 0 233ms
✅ OPDS2CatalogWiringTests 21 21 0 0 282ms
✅ OPDS2CatalogsFeedTests 3 3 0 0 124ms
✅ OPDS2ContributorTests 2 2 0 0 23ms
✅ OPDS2EmptyFeedContractTests 1 1 0 0 5ms
✅ OPDS2FeedContractTests 4 4 0 0 69ms
✅ OPDS2FeedParsingTests 11 11 0 0 203ms
✅ OPDS2FeedTests 14 14 0 0 54ms
✅ OPDS2FullMetadataTests 4 4 0 0 58ms
✅ OPDS2FullPublicationTests 13 13 0 0 182ms
✅ OPDS2IntegrationTests 18 18 0 0 201ms
✅ OPDS2LinkArrayTests 5 5 0 0 17ms
✅ OPDS2LinkComputedPropertyTests 20 20 0 0 118ms
✅ OPDS2LinkRelTests 1 1 0 0 18ms
✅ OPDS2LinkTests 2 2 0 0 59ms
✅ OPDS2ParsingTests 38 38 0 0 469ms
✅ OPDS2PublicationExtendedTests 53 53 0 0 269ms
✅ OPDS2PublicationImageTests 6 6 0 0 83ms
✅ OPDS2PublicationNarratorTests 3 3 0 0 55ms
✅ OPDS2PublicationTests 2 2 0 0 99ms
✅ OPDS2SamlIDPTests 6 6 0 0 64ms
✅ OPDS2SearchResultsContractTests 3 3 0 0 13ms
✅ OPDS2SubjectTests 2 2 0 0 5ms
✅ OPDS2SupportingTypesTests 5 5 0 0 60ms
✅ OPDSAcquisitionPathExpandedTests 15 15 0 0 647ms
✅ OPDSFeedCacheTests 14 14 0 0 143ms
✅ OPDSFeedMigrationTests 11 11 0 0 137ms
✅ OPDSFeedParsingTests 2 2 0 0 66ms
✅ OPDSFeedServiceStateMachineTests 3 3 0 0 161ms
✅ OPDSFeedServiceTests 2 2 0 0 38ms
✅ OPDSFormatTests 13 13 0 0 104ms
✅ OPDSParserCoreTests 4 4 0 0 97ms
✅ OPDSParserTests 4 4 0 0 40ms
✅ OPDSParsingTests 57 57 0 0 1.18s
✅ OfflineActionTests 29 29 0 0 298ms
✅ OfflineQueueCoordinatorTests 11 11 0 0 94ms
✅ OfflineQueueServiceExtendedTests 13 13 0 0 233ms
✅ OfflineQueueServiceTests 17 17 0 0 182ms
✅ OpenAccessAdapterTests 13 13 0 0 225ms
✅ OverdriveDeferredFulfillmentTests 6 6 0 0 48ms
✅ OverdriveDownloadHandlerTests 9 9 0 0 121ms
✅ OverdriveFulfillmentTests 25 24 0 1 248ms
✅ PDFExtensionsTests 20 20 0 0 207ms
✅ PDFKitThumbnailProviderTests 5 5 0 0 71ms
✅ PDFReaderTests 12 12 0 0 165ms
✅ PDFSearchEmptyStateTests 4 4 0 0 86ms
✅ PP3596RegressionTests 3 3 0 0 60ms
✅ Palace 2 2 0 0 <1ms
✅ PalaceCheckPropertyTests 8 8 0 0 163ms
✅ PalaceErrorCategoryTests 20 20 0 0 155ms
✅ PalaceErrorExtendedTests 23 23 0 0 136ms
✅ PalaceErrorTests 11 11 0 0 143ms
✅ PalaceHapticTests 4 4 0 0 13ms
✅ PalaceMotionTests 11 11 0 0 107ms
✅ PalacePDFViewTests 12 12 0 0 442ms
✅ PalacePreferencesSettingsRoundTripTests 9 9 0 0 117ms
✅ PalacePressableButtonStyleTests 6 6 0 0 29ms
✅ PalaceTestSetupObservationTests 4 4 0 0 52ms
✅ PalaceWiringTestCaseTests 4 4 0 0 57ms
✅ ParserFuzzTests 4 4 0 0 14.64s
✅ PatronProfileContractTests 4 4 0 0 28ms
✅ PerformanceMonitorTests 14 14 0 0 227ms
✅ PerformanceReportTests 14 14 0 0 53ms
✅ PersistentLoggerTests 9 9 0 0 1.72s
✅ PlaybackBootstrapperAudioSessionTests 2 2 0 0 139ms
✅ PlaybackBootstrapperTests 8 8 0 0 156ms
✅ PlaybackFailureRecordTests 5 5 0 0 50ms
✅ PlaybackOpenPolicyTests 7 7 0 0 93ms
✅ PlaybackRateTests 18 18 0 0 161ms
✅ PlaybackTrackingRegressionTests 5 5 0 0 74ms
⚠️ PoolResponsivenessProbeTests 5 4 0 0 349ms
✅ PositionPersistenceLogicTests 6 6 0 0 18ms
✅ PositionPersistenceTests 2 2 0 0 19ms
✅ PositionSyncServiceTests 13 13 0 0 215ms
✅ PositionSyncTests 5 5 0 0 49ms
✅ PositionWriterContractTests 6 6 0 0 120ms
✅ PostUpdateMigrationTests 5 5 0 0 302ms
✅ ProblemDocumentContractTests 4 4 0 0 69ms
✅ ProblemDocumentLoanExpiryTests 5 5 0 0 190ms
✅ ProblemDocumentTests 12 12 0 0 66ms
✅ ProblemReportEmailTests 8 8 0 0 610ms
✅ RatingCardMotionGateTests 5 5 0 0 95ms
✅ RatingEligibilityPolicyTests 17 17 0 0 139ms
✅ RatingEngagementTrackerTests 9 9 0 0 128ms
✅ RatingFeedbackPresenterTests 3 3 0 0 15ms
✅ RatingPromptPresenterTests 15 15 0 0 150ms
✅ ReachabilityTests 10 10 0 0 142ms
✅ Reader2BookmarkContractTests 3 3 0 0 74ms
✅ Reader2PositionAdapterContractTests 4 3 0 1 273ms
✅ Reader2PositionResumeContractTests 3 3 0 0 141ms
✅ ReaderAccessibilityTests 7 7 0 0 72ms
✅ ReaderChromeToggleFadeTests 3 3 0 0 5ms
✅ ReaderEditingActionsTests 5 5 0 0 46ms
✅ ReaderErrorTests 5 5 0 0 9ms
✅ ReaderNavBarVoiceOverTests 2 2 0 0 59ms
✅ ReaderServicePDFRouteTests 3 3 0 0 32ms
✅ ReaderServiceSyncTests 3 3 0 0 37ms
✅ ReaderThemeTests 24 24 0 0 340ms
✅ ReadingPositionTests 22 22 0 0 312ms
✅ ReadingSessionTrackerTests 13 13 0 0 202ms
✅ ReadingStatsServiceTests 12 12 0 0 156ms
✅ ReadingStatsStoreTests 9 9 0 0 84ms
✅ RedirectHandlingIntegrationTests 4 4 0 0 151ms
✅ RedirectPolicyTests 9 9 0 0 74ms
✅ RegistryDownloadServicingSeamTests 2 2 0 0 21ms
✅ RegistryFileRecoveryTests 23 23 0 0 1.06s
✅ RemoteFeatureFlagsGapTests 4 4 0 0 20ms
✅ RemoteFeatureFlagsSideLoadingTests 5 5 0 0 20ms
✅ RemoteFeatureFlagsTests 21 21 0 0 1.20s
✅ ResourcePropertiesLengthTests 3 3 0 0 30ms
✅ RetryClassificationTests 17 17 0 0 170ms
✅ ReturnFlowTests 1 1 0 0 2ms
✅ ReturnReducerContractTests 16 16 0 0 83ms
✅ RightsManagementDetectionTests 5 5 0 0 34ms
✅ RightsManagementDispatchContractTests 8 8 0 0 78ms
✅ RightsManagementDispatcherTests 10 10 0 0 131ms
✅ RuntimeQuiescenceGateTests 11 10 0 1 1.16s
✅ RuntimeQuiescenceLintTests 5 5 0 0 944ms
✅ SAMLCookieSyncTests 5 5 0 0 39ms
✅ SAMLLogoutCallbackDetectionTests 4 4 0 0 15ms
✅ SAMLLogoutLinkParsingTests 5 5 0 0 98ms
✅ SAMLLogoutURLTests 4 4 0 0 27ms
✅ SAMLPlusBiblioBoardExpirationTests 8 8 0 0 305ms
✅ SEMigrationsTests 6 6 0 0 178ms
✅ SafeDictionaryTests 21 21 0 0 568ms
✅ SamplePlayerErrorTests 5 5 0 0 46ms
✅ SampleTypeTests 8 8 0 0 22ms
✅ SceneDelegateTests 1 1 0 0 48ms
✅ ScopedResetTests 9 9 0 0 449ms
✅ SearchAccessibilityTests 11 11 0 0 42ms
✅ SearchFlowIntegrationTests 8 8 0 0 146ms
✅ SettingsViewModelComputedPropertyTests 6 6 0 0 64ms
✅ SettingsViewModelEdgeCaseTests 7 7 0 0 148ms
✅ SettingsViewModelGapTests 1 1 0 0 3ms
✅ SettingsViewModelSyncTests 14 14 0 0 123ms
✅ SettingsViewModelTests 33 33 0 0 268ms
✅ SideloadBoundaryTests 6 6 0 0 106ms
✅ SideloadImportContractTests 1 1 0 0 29ms
✅ SideloadedBookManagerTests 17 17 0 0 681ms
✅ SideloadedBookRegistryTests 14 14 0 0 81ms
✅ SideloadedLaneBridgeTests 6 6 0 0 52ms
✅ SideloadedLaneViewModelTests 7 7 0 0 254ms
✅ SignInFormPresentationTests 3 3 0 0 23ms
✅ SignInModalLifecycleTests 9 9 0 0 469ms
✅ SignInModalPredicateTests 3 3 0 0 19ms
✅ SignInModalSAMLOIDCTests 6 6 0 0 29ms
✅ SignInOAuthErrorPropagationTests 8 8 0 0 370ms
✅ SignInRequestServiceCharacterizationTests 11 11 0 0 678ms
✅ SignInToReadFlowIntegrationTests 5 5 0 0 369ms
❌ SignInWebSheetIntegrationTests 4 3 1 0 39.06s
✅ SignInWebSheetViewModelTests 31 31 0 0 395ms
✅ SignOutCacheClearingTests 3 3 0 0 104ms
✅ SingletonResetRegistryTests 5 5 0 0 44ms
✅ SkeletonTests 22 22 0 0 140ms
✅ StatsViewModelTests 10 10 0 0 366ms
✅ StatusAnnouncementTests 22 22 0 0 194ms
✅ StopPositionSaveTests 2 2 0 0 3ms
✅ StoreTests 5 5 0 0 46ms
✅ StreamingReaderPresentationContractTests 1 1 0 0 14ms
✅ StreamingReaderProgressStoreTests 7 7 0 0 79ms
✅ StreamingReaderViewControllerScrollRestoreTests 12 12 0 0 1.16s
✅ StreamingReaderViewModelTests 9 9 0 0 68ms
✅ StringExtensionTests 8 8 0 0 52ms
✅ StringExtensionsTests 3 3 0 0 11ms
✅ StringHTMLEntitiesTests 7 7 0 0 83ms
✅ StringNYPLAdditionsTests 4 4 0 0 11ms
✅ String_NYPLAdditionsTests 4 4 0 0 10ms
✅ SupportSectionDecisionTests 5 5 0 0 17ms
✅ SyncConflictResolutionTests 3 3 0 0 11ms
✅ SyncDeletionGuardTests 5 5 0 0 33ms
✅ SyncDeletionRatioTests 6 6 0 0 48ms
✅ SyncPermissionTests 5 5 0 0 202ms
✅ TPPAccountAuthStateEnumTests 5 5 0 0 24ms
✅ TPPAccountListDataSourceTests 3 3 0 0 80ms
✅ TPPAdobeActivationSkipTests 6 6 0 0 274ms
✅ TPPAgeCheckCompletionTests 5 5 0 0 208ms
✅ TPPAgeCheckIsValidTests 5 5 0 0 41ms
✅ TPPAgeCheckStateMachineTests 4 4 0 0 341ms
✅ TPPAgeCheckTests 6 6 0 0 1.62s
✅ TPPAgeCheckVerifyDecisionTests 5 5 0 0 171ms
✅ TPPAlertUtilsTests 45 45 0 0 1.17s
✅ TPPAnnotationsHermeticTests 15 15 0 0 117ms
✅ TPPAnnotationsOverrideTests 4 4 0 0 155ms
✅ TPPAnnotationsTests 29 29 0 0 2.02s
✅ TPPAnnouncementManagerTests 3 3 0 0 43ms
✅ TPPAuthDocumentContractTests 3 3 0 0 40ms
✅ TPPBackgroundExecutorTests 3 3 0 0 100ms
✅ TPPBadgeImageGapTests 2 2 0 0 9ms
✅ TPPBaseReaderViewControllerInitialLocationTests 10 10 0 0 95ms
✅ TPPBasicAuthTests 11 11 0 0 51ms
✅ TPPBookAccessibilityLabelTests 8 8 0 0 90ms
✅ TPPBookAuthorCoverageTests 3 3 0 0 493ms
✅ TPPBookAuthorTests 6 6 0 0 64ms
✅ TPPBookBearerTokenTests 9 8 0 1 120ms
✅ TPPBookButtonsStateTests 7 7 0 0 54ms
✅ TPPBookContentMetadataFilesHelperTests 9 9 0 0 43ms
✅ TPPBookContentTypeConverterStreamingHTMLTests 2 2 0 0 2ms
✅ TPPBookContentTypeConverterTests 4 4 0 0 19ms
✅ TPPBookContentTypeExtendedTests 4 4 0 0 7ms
✅ TPPBookContentTypeTests 14 14 0 0 290ms
✅ TPPBookCoverRegistryTests 17 17 0 0 615ms
✅ TPPBookCreationTests 7 7 0 0 120ms
✅ TPPBookExtensionsTests 21 21 0 0 212ms
✅ TPPBookIsDRMProtectedTests 9 9 0 0 52ms
✅ TPPBookLocationCoverageTests 7 7 0 0 34ms
✅ TPPBookLocationEdgeCaseTests 27 27 0 0 58ms
✅ TPPBookLocationKeyTests 3 3 0 0 6ms
✅ TPPBookLocationTests 11 11 0 0 64ms
✅ TPPBookModelGapTests 4 4 0 0 40ms
✅ TPPBookRegistryAccountCaptureContractTests 4 4 0 0 190ms
✅ TPPBookRegistryAsyncReadinessTests 3 3 0 0 199ms
✅ TPPBookRegistryAtomicWriteTests 7 7 0 0 396ms
✅ TPPBookRegistryBookRetrievalTests 7 7 0 0 1.19s
✅ TPPBookRegistryBookmarkTests 7 7 0 0 220ms
✅ TPPBookRegistryCorruptedDataTests 5 5 0 0 48ms
✅ TPPBookRegistryDataTests 4 4 0 0 52ms
✅ TPPBookRegistryDependencyTests 4 4 0 0 59ms
✅ TPPBookRegistryFacadeContractTests 6 6 0 0 164ms
✅ TPPBookRegistryFulfillmentIdTests 4 4 0 0 41ms
✅ TPPBookRegistryLargeCorpusTests 5 5 0 0 55.11s
✅ TPPBookRegistryLoadReentrancyTests 2 2 0 0 27ms
✅ TPPBookRegistryLocationTests 4 4 0 0 53ms
✅ TPPBookRegistryMigrationTests 16 16 0 0 1.09s
✅ TPPBookRegistryMutationContractTests 10 10 0 0 463ms
✅ TPPBookRegistryPersistenceTests 10 10 0 0 1.76s
✅ TPPBookRegistryProcessingTests 2 2 0 0 29ms
✅ TPPBookRegistryPublisherTests 6 6 0 0 122ms
✅ TPPBookRegistryRebuildRefusalContractTests 1 1 0 0 25ms
✅ TPPBookRegistryRecordPersistenceTests 3 3 0 0 21ms
✅ TPPBookRegistryRecordTests 10 10 0 0 79ms
✅ TPPBookRegistryStateConcurrencyTests 2 2 0 0 251ms
✅ TPPBookRegistryStateManagementTests 11 11 0 0 219ms
✅ TPPBookRegistrySyncContractTests 4 1 0 3 565ms
✅ TPPBookRegistryThreadSafetyTests 3 3 0 0 219ms
✅ TPPBookRegistryUpdateAndRemoveTests 1 1 0 0 85ms
✅ TPPBookRequiresAdobeDRMTests 6 6 0 0 81ms
✅ TPPBookSerializationTests 13 13 0 0 158ms
✅ TPPBookStateInitializationTests 4 4 0 0 25ms
✅ TPPBookStateTests 4 4 0 0 70ms
✅ TPPBookTests 98 98 0 0 860ms
✅ TPPBookmarkDeletionLogTests 11 11 0 0 249ms
✅ TPPBookmarkFactoryInitTests 2 2 0 0 6ms
✅ TPPBookmarkFactoryServerAnnotationEdgeCaseTests 5 5 0 0 156ms
✅ TPPBookmarkFactoryTests 15 15 0 0 3.75s
✅ TPPBookmarkR3ConversionTests 5 5 0 0 12ms
✅ TPPBookmarkR3LocationTests 13 13 0 0 128ms
✅ TPPBookmarkSpecTests 1 1 0 0 18ms
✅ TPPCachingTests 3 3 0 0 14ms
✅ TPPCapturedCredentialsTests 5 5 0 0 205ms
✅ TPPCirculationAnalyticsRequestShapeContractTests 2 2 0 0 33ms
✅ TPPConfigurationCustomRegistryTests 16 16 0 0 92ms
✅ TPPConfigurationTests 22 22 0 0 76ms
✅ TPPContentTypeTests 9 9 0 0 22ms
✅ TPPCredentialConcurrencyTests 3 3 0 0 101ms
✅ TPPCredentialIsolationE2ETests 5 0 0 5 127ms
✅ TPPCredentialPersistenceTests 6 6 0 0 263ms
✅ TPPCredentialSnapshotCoherenceTests 3 0 0 3 100ms
✅ TPPCredentialSnapshotTests 8 8 0 0 43ms
✅ TPPCredentialsCoverageTests 9 9 0 0 53ms
✅ TPPCredentialsTests 26 26 0 0 154ms
✅ TPPCrossLibrarySignOutTests 6 6 0 0 670ms
✅ TPPDRMFailureCredentialPreservationTests 4 4 0 0 268ms
✅ TPPErrorLoggerTests 27 27 0 0 353ms
✅ TPPIdleSignOutRegressionTests 13 13 0 0 736ms
✅ TPPJWKConversionTest 1 1 0 0 21ms
✅ TPPKeychainManagerTests 5 5 0 0 657ms
✅ TPPLastReadPositionPosterTests 13 13 0 0 96ms
✅ TPPLastReadPositionSynchronizerIntegrationTests 5 5 0 0 243ms
✅ TPPLastReadPositionSynchronizerTests 23 23 0 0 489ms
✅ TPPLastReadPositionSynchronizer_BehaviorDocumentationTests 5 5 0 0 31ms
✅ TPPLastReadPositionSynchronizer_BookLocationTests 9 9 0 0 116ms
✅ TPPLastReadPositionSynchronizer_ConcurrencyTests 3 3 0 0 127ms
✅ TPPLastReadPositionSynchronizer_ReadiumBookmarkTests 9 9 0 0 248ms
✅ TPPLastReadPositionSynchronizer_SyncLogicTests 10 10 0 0 30ms
✅ TPPLastReadPositionSynchronizer_WriterDelegationTests 4 4 0 0 91ms
✅ TPPLoginNoActivationTests 3 3 0 0 254ms
✅ TPPMainThreadCheckerTests 4 4 0 0 40ms
✅ TPPMigrationManagerTests 15 15 0 0 84ms
✅ TPPNetworkExecutorAPITests 14 14 0 0 160ms
✅ TPPNetworkExecutorConcurrencyTests 4 4 0 0 4.58s
✅ TPPNetworkExecutorStubbedTests 17 17 0 0 218ms
✅ TPPNetworkExecutorTests 3 3 0 0 13ms
✅ TPPNetworkResponderAuthCoordinatorTests 5 5 0 0 90ms
✅ TPPNetworkResponderSizeLimitTests 5 5 0 0 399ms
✅ TPPNetworkResponderTests 12 12 0 0 46ms
✅ TPPOPDSAcquisitionPathTests 5 5 0 0 21ms
✅ TPPOPDSEntryTests 5 5 0 0 58ms
✅ TPPOPDSFeedTests 3 3 0 0 76ms
✅ TPPOPDSGroupSwiftTests 3 3 0 0 5ms
✅ TPPOPDSLinkTests 7 7 0 0 169ms
✅ TPPOpenSearchDescriptionExpandedTests 10 10 0 0 124ms
✅ TPPOpenSearchDescriptionTests 1 1 0 0 10ms
✅ TPPPDFDocumentMetadataTests 15 15 0 0 110ms
✅ TPPPDFDocumentTests 8 8 0 0 123ms
✅ TPPPDFLocationCoverageTests 7 7 0 0 77ms
✅ TPPPDFLocationTests 10 10 0 0 83ms
✅ TPPPDFPageBookmarkTests 9 9 0 0 123ms
✅ TPPPDFPageTests 5 5 0 0 48ms
✅ TPPPDFReaderModeTests 6 6 0 0 20ms
✅ TPPPDFReaderSearchBindingTests 3 3 0 0 6ms
✅ TPPPerAccountIsolationTests 8 0 0 8 179ms
✅ TPPPreferredAuthSelectionTests 8 8 0 0 367ms
✅ TPPProblemDocumentCacheManagerTests 12 12 0 0 185ms
✅ TPPProblemDocumentTests 21 21 0 0 222ms
✅ TPPReaderAppearanceTests 4 4 0 0 24ms
✅ TPPReaderBlockNavigationTests 12 12 0 0 137ms
✅ TPPReaderBookmarksBusinessLogicTests 12 12 0 0 1.50s
✅ TPPReaderBookmarksReadinessTests 2 2 0 0 113ms
✅ TPPReaderFontTests 4 4 0 0 84ms
✅ TPPReaderFootnoteAccessibilityTests 16 16 0 0 145ms
✅ TPPReaderPageListBusinessLogicTests 27 27 0 0 361ms
✅ TPPReaderPositionReportTests 10 10 0 0 97ms
✅ TPPReaderPreferencesLoadTests 3 3 0 0 63ms
✅ TPPReaderSettingsTests 28 28 0 0 720ms
✅ TPPReaderTOCBusinessLogicTests 15 15 0 0 92ms
✅ TPPReaderTOCFlattenTests 2 2 0 0 29ms
✅ TPPReadiumBookmarkLocationMatchingTests 5 5 0 0 14ms
✅ TPPReadiumBookmarkTests 23 23 0 0 324ms
✅ TPPReauthenticatorMockTests 2 2 0 0 3ms
✅ TPPReauthenticatorTests 4 4 0 0 35ms
✅ TPPReturnPromptHelperTests 5 5 0 0 25ms
✅ TPPSAMLCookieExpirationTests 7 7 0 0 47ms
✅ TPPSAMLFlowTests 13 13 0 0 441ms
✅ TPPSAMLReauthFlowTests 2 2 0 0 108ms
✅ TPPSAMLRegressionTests 4 4 0 0 110ms
✅ TPPSAMLSignInTests 26 26 0 0 1.25s
✅ TPPSAMLStateIsolationTests 4 4 0 0 309ms
✅ TPPSAMLStateMachineTests 6 6 0 0 228ms
✅ TPPSettingsTests 6 6 0 0 254ms
✅ TPPSignInAdobeSkipTests 14 14 0 0 607ms
✅ TPPSignInAuthStateTransitionTests 3 3 0 0 345ms
✅ TPPSignInBusinessLogicExtendedTests 58 58 0 0 11.95s
✅ TPPSignInBusinessLogicOAuthTests 11 11 0 0 810ms
✅ TPPSignInBusinessLogicSignOutTests 11 11 0 0 591ms
✅ TPPSignInBusinessLogicStateMachineTests 10 10 0 0 1.15s
✅ TPPSignInBusinessLogicTests 23 23 0 0 1.90s
✅ TPPSignInBusinessLogicTokenFlowTests 3 3 0 0 307ms
✅ TPPSignInBusinessLogicValidationCallbackOrderTests 2 2 0 0 139ms
✅ TPPSignInCapabilitiesCharacterizationTests 12 12 0 0 3.47s
✅ TPPSignInErrorHandlingTests 2 2 0 0 138ms
✅ TPPSignInProfileDocEdgeCaseTests 3 3 0 0 457ms
✅ TPPSignedInStateProviderTests 3 3 0 0 3ms
✅ TPPUserAccountAuthStateTests 6 6 0 0 66ms
✅ TPPUserAccountConcurrencyTests 1 1 0 0 2ms
✅ TPPUserAccountGapTests 4 4 0 0 519ms
✅ TPPUserAccountIsolationLintTests 3 3 0 0 1.06s
✅ TPPUserAccountTestFactoryTests 7 0 0 7 73ms
✅ TPPUserFriendlyErrorTests 11 11 0 0 119ms
✅ TPPUserNotificationsTests 10 10 0 0 148ms
✅ TPPXMLSwiftTests 16 16 0 0 150ms
✅ TPPXMLTests 3 3 0 0 11ms
✅ TabBarModernizationTests 8 8 0 0 25ms
✅ TearDownRequiredLintTests 5 5 0 0 2.26s
✅ TestAppContainerFactoryTests 5 5 0 0 744ms
⚠️ TestTargetHermeticityRegressionTests 4 3 0 0 520ms
✅ TimeEntryTests 3 3 0 0 70ms
✅ TokenRefreshAndRetryQueueTests 9 9 0 0 1.75s
✅ TokenRefreshIntegrationTests 2 2 0 0 32ms
✅ TokenRefreshInterceptorAuthCoordinatorTests 8 8 0 0 143ms
✅ TokenRefreshInterceptorTests 24 24 0 0 853ms
✅ TokenRefreshOnForegroundTests 10 10 0 0 2.24s
✅ TokenRefreshTests 25 25 0 0 842ms
✅ TokenRefreshWatchdogTests 5 5 0 0 47ms
✅ TokenRequestCredentialGuardTests 13 13 0 0 182ms
✅ TokenRequestTests 11 11 0 0 144ms
✅ TokenResponseTests 21 21 0 0 163ms
✅ TriageBotKeyAdminTests 4 4 0 0 16ms
✅ TypographyPresetTests 21 21 0 0 848ms
✅ TypographyServiceTests 31 31 0 0 862ms
✅ TypographySettingsViewModelTests 27 27 0 0 615ms
✅ UIAlertCACommitGuardTests 9 9 0 0 1.22s
✅ UIColor_NYPLAdditionsTests 1 1 0 0 8ms
✅ URLBackupExclusionTests 3 3 0 0 50ms
✅ URLExtensionTests 16 16 0 0 68ms
✅ URLExtensionsTests 11 11 0 0 69ms
✅ URLRequestExtensionsCoverageTests 3 3 0 0 306ms
✅ URLRequestExtensionsTests 11 11 0 0 206ms
✅ URLRequestNYPLAdditionsTests 11 11 0 0 36ms
✅ URLRequest_NYPLTests 1 1 0 0 1ms
✅ URLResponseAuthenticationTests 10 10 0 0 72ms
✅ URLResponseNYPLTests 14 14 0 0 76ms
✅ URLSessionCredentialStorageTests 3 3 0 0 31ms
✅ URLSessionStubbingResetTests 2 2 0 0 16ms
✅ URLTypeTests 2 2 0 0 27ms
✅ URLValidationTests 5 5 0 0 20ms
✅ UnifiedOPDSServiceStateMachineTests 2 2 0 0 117ms
✅ UserAccountPublisherAuthStateTests 5 5 0 0 67ms
✅ UserAccountPublisherTests 14 14 0 0 478ms
✅ UserAccountValidationTests 11 11 0 0 520ms
✅ UserDefaultsIsolationLintTests 2 2 0 0 760ms
✅ UserProfileDocumentTests 7 7 0 0 70ms
✅ UserRetryTrackerTests 10 10 0 0 182ms
✅ XCTestCase_testUserDefaultsTests 3 3 0 0 40ms
✅ iPadOnMacRMSDKGuardTests 7 7 0 0 34ms

📊 Full interactive matrix: report

Failed tests
SignInWebSheetIntegrationTests.First Run
AccountsManagerStateMachineWiringTests.Retry 1

Names only — open the interactive report above for messages + stack frames.

📊 Testing Coverage Breakdown

Unit Test Line Coverage (testable surfaces): 45.1%

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

Target Lines Covered
Palace.app 44.2%

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

Counts above were produced by this CI run's xcresult parse — reproduce via the run link.

📦 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 263c48f into develop Jul 31, 2026
6 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