Skip to content

refactor(accounts): invert residual TPPNetworkExecutor edge behind AccountNetworking (Wave 3 / 3a) - #1360

Open
mauricecarrier7 wants to merge 2 commits into
developfrom
feat/pp-decomp-3a-account-networking
Open

refactor(accounts): invert residual TPPNetworkExecutor edge behind AccountNetworking (Wave 3 / 3a)#1360
mauricecarrier7 wants to merge 2 commits into
developfrom
feat/pp-decomp-3a-account-networking

Conversation

@mauricecarrier7

Copy link
Copy Markdown
Contributor

What & why

Wave 3 / 3a god-class-decomposition precondition. AccountsManager still named the app-target TPPNetworkExecutor concretely for its three network calls (cancel on account-switch cleanup, catalog/auth-doc GET, clearCache). S3 already inverted the ambient reach via AccountSwitchDependencies.networkExecutorProvider, but the property + provider were still concretely typed — the last blocker to moving AccountsManager into a PalaceAccounts SwiftPM target, which cannot name a Palace/Network type. The hub's own header (AccountsManager.swift:277) recorded this to-do.

This inverts that edge behind a new AccountNetworking protocol. Behaviour-identical type inversion.

Changes

  • New AccountNetworking (AnyObject, Sendable; cancelNonEssentialTasks / clearCache / GET) declared beside AccountsManager — travels into PalaceAccounts at the package move. Sendable is required, not cosmetic: the async GET is awaited inside an owned-crawl @Sendable Task, so the existential must be Sendable. TPPNetworkExecutor is already @unchecked Sendable, so the conformance adds zero new obligation.
  • App-side extension TPPNetworkExecutor: AccountNetworking {} (empty — signatures already match). Stays app-target across the move (gains @retroactive + import PalaceAccounts then).
  • Retype AccountsManager.networkExecutor + AccountSwitchDependencies.networkExecutorProvider to any AccountNetworking. AppContainer wiring unchanged (concrete upcasts).
  • Seam proof (tests): SpyAccountSwitchNetworkExecutor no longer subclasses the concrete executor — its comment claimed subclassing was "the only way" to observe the cancel seam; now a plain AccountNetworking conformer. New AccountNetworkingSeamTests pins clearCache + account-switch cancel routing through the injected seam.
  • Accounts area verification-checklist updated.

Verification

Gate Result
DRM scoped suites (new + converted spy) 7/7, no restarts
Wiring suite (isolation) + MetaTests 18/18
Palace-noDRM build (not in CI) BUILD SUCCEEDED
God-class LOC freeze PASS — hub flat at 2383 (comments trimmed, not re-baselined)
Shared-read count / contract-snapshot drift at baseline (213) / zero

Review rigor

/rigorous-fix flow: fix-contract → architect pre-review APPROVED → implement → skeptic → 3× SoD (architect, qa_test, blast_radius) all APPROVED, every finding warning-level. Non-blocking notes: GET's behavioural path is undriven (cold-launch network fallback — flaky; routing is now type-guaranteed and covered by compile-time conformance); the .detailsEvicted/.accountNotFound prose refresh in the area checklist is out-of-scope.

Reviewers are session-spawned agent reviewers (the [Self-Approval] flag is the known false-positive for agent-spawned SoD on solo-dev critical-path gates), not an independent human review.

Not in this PR (per wave-3 plan)

The 3a in-target collaborator split and the PalaceAccounts package move itself (separate PRs); the @retroactive on the conformance lands with the package move.

🤖 Generated with Claude Code

…behind AccountNetworking (Wave 3 / 3a)

Wave 3 / 3a decomp precondition. `AccountsManager` named the app-target
`TPPNetworkExecutor` concretely for its three network calls (cancel on
account-switch cleanup, catalog/auth-doc GET, clearCache). S3 already inverted
the ambient REACH via `AccountSwitchDependencies.networkExecutorProvider`, but the
property + provider were still concretely typed — the last blocker to moving
`AccountsManager` into a `PalaceAccounts` SwiftPM target, which cannot name a
`Palace/Network` type. Its own header (`AccountsManager.swift:277`) recorded this
to-do.

- New `AccountNetworking` (`AnyObject, Sendable`; cancelNonEssentialTasks / clearCache
  / GET) beside AccountsManager — travels into PalaceAccounts at the package move.
  `Sendable` is required: the async GET is awaited inside an owned-crawl @sendable
  Task, so the existential must be Sendable. `TPPNetworkExecutor` is already
  `@unchecked Sendable`, so the conformance adds zero new obligation.
- App-side `extension TPPNetworkExecutor: AccountNetworking {}` (empty; signatures
  already match) — stays app-target across the move.
- Retype `AccountsManager.networkExecutor` + `AccountSwitchDependencies.networkExecutorProvider`
  to `any AccountNetworking`. AppContainer wiring unchanged (concrete upcasts).
- Seam proof: `SpyAccountSwitchNetworkExecutor` no longer subclasses the concrete
  executor (its comment claimed subclassing was "the only way" to observe the cancel
  seam) — now a plain `AccountNetworking` conformer. New `AccountNetworkingSeamTests`
  pins clearCache + account-switch cancel routing through the injected seam.

Behavior-identical (pure type inversion). Sign-in/account-switch-critical →
/rigorous-fix: fix-contract + architect APPROVED.

Verified: DRM scoped suites 7/7, wiring(isolation)+MetaTests 18/18, Palace-noDRM
BUILD SUCCEEDED, god-class freeze PASS (hub flat at 2383), shared-read at baseline,
zero contract-snapshot drift.

**Scope:** the `TPPNetworkExecutor` type edge in AccountsManager + its provider seam,
plus the switch-cleanup spy conversion and a routing test. Accounts area only.
**Not done:** behavioral GET drive (both call sites are the cold-launch network
fallback — flaky to drive; covered by compile-time conformance + explicit
`useTokenIfAvailable`). No behavior change, so no mutation surface on the retyped lines.
**Deferred:** the 3a in-target collaborator split and the package move itself
(separate PRs per wave-3 plan); the `@retroactive` on the conformance lands with the
package move.

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

github-actions Bot commented Jul 30, 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


🏛️ Architecture Analysis

Metric Value ℹ️ What This Means
Components 46 Distinct modules/layers detected in your codebase
Dependency Cycles 19 Circular dependencies (A→B→C→A). Goal: 0
Layer Violations 2 Dependencies that break architectural boundaries
Hotspots 13 Files with high complexity + frequent changes
Avg Coupling 4.93 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

github-actions Bot commented Jul 30, 2026

Copy link
Copy Markdown

🧪 Unit Test Results

📊 View Full Interactive Report

❌ 3 TESTS FAILED

8189 tests | 8045 passed | 3 failed | 139 skipped | ⏱️ 16m 2s | 📊 98.2% | 📈 45.2% coverage

All 943 classes — 3 with failures (full matrix)
Class Tests Passed Failed Skipped Duration
✅ AccessLintComplianceTests 11 11 0 0 39ms
✅ AccessibilityAnnouncementCenterTests 20 20 0 0 2.14s
✅ AccessibilityLabelTests 9 9 0 0 337ms
✅ AccessibilityPreferencesTests 26 26 0 0 116ms
✅ AccessibilityServiceTests 11 11 0 0 90ms
✅ AccountAuthDocCarryoverTests 5 5 0 0 218ms
✅ AccountAuthSurfaceHostsTests 7 7 0 0 20ms
✅ AccountAwareNetworkTests 10 10 0 0 3.66s
✅ AccountDetailCredentialStateTests 7 0 0 7 384ms
✅ AccountDetailPINVisibilityTests 25 0 0 25 627ms
✅ AccountDetailSignOutConfirmationTests 2 0 0 2 52ms
✅ AccountDetailViewModelGapTests 1 1 0 0 62ms
✅ AccountDetailViewModelLeakTests 1 1 0 0 34ms
✅ AccountDetailViewModelSignedInDerivationTests 5 0 0 5 282ms
✅ AccountDetailViewModelTests 19 0 0 19 129ms
✅ AccountDetailsAuthenticationIsBrowserBasedTests 10 10 0 0 75ms
✅ AccountDetailsNeedsAuthAggregateTests 10 10 0 0 1.24s
✅ AccountDetailsURLTests 17 17 0 0 170ms
✅ AccountErrorReportingTests 1 1 0 0 2ms
✅ AccountModelGapTests 9 9 0 0 4.10s
✅ AccountModelTests 20 20 0 0 63ms
✅ AccountNetworkingSeamTests 2 2 0 0 132ms
✅ AccountProfileDocumentTests 3 3 0 0 7ms
✅ AccountScopeAdapterTests 4 4 0 0 203ms
✅ AccountStateMachineTests 13 13 0 0 561ms
✅ AccountSwitchBorrowReauthCouplingContractTests 4 4 0 0 49ms
✅ AccountSwitchCleanupTests 8 8 0 0 249ms
✅ AccountSwitchIntegrationTests 8 8 0 0 147ms
✅ AccountSwitchLifecycleTests 9 0 0 9 118ms
✅ AccountsManagerAccountIndexTests 7 7 0 0 121ms
✅ AccountsManagerAuthDocContractTests 1 1 0 0 69ms
✅ AccountsManagerCacheReadTests 4 4 0 0 277ms
✅ AccountsManagerCacheTests 16 16 0 0 144ms
✅ AccountsManagerCancellationTests 5 5 0 0 542ms
✅ AccountsManagerCatalogLoadJoinTests 3 3 0 0 4.67s
✅ AccountsManagerCurrentAccountSwitchContractTests 5 5 0 0 1.43s
✅ AccountsManagerFirstRunDecodeTests 3 3 0 0 357ms
✅ AccountsManagerGapTests 3 3 0 0 36ms
✅ AccountsManagerHelpersTests 12 12 0 0 34ms
✅ AccountsManagerIsolationLintTests 4 4 0 0 1.14s
✅ AccountsManagerLaunchSnapshotTests 13 13 0 0 2.38s
✅ AccountsManagerStateMachineWiringTests 18 18 0 0 4.31s
✅ AccountsManagerTests 51 48 0 3 8.22s
✅ ActiveSessionsViewModelTests 12 12 0 0 247ms
✅ AdobeActivationTests 6 6 0 0 38ms
✅ AdobeCertificateGapTests 7 7 0 0 36ms
✅ AdobeDRMCharacterizationTests 21 21 0 0 71ms
✅ AdobeDRMErrorGapTests 3 3 0 0 15ms
✅ AdobeDRMHandlerTests 12 12 0 0 130ms
✅ AdobeDRMServiceGapTests 2 2 0 0 4ms
✅ AlertModelCoverageTests 6 6 0 0 19ms
✅ AlertModelRetryTests 7 7 0 0 20ms
✅ AlertModelTests 2 2 0 0 11ms
✅ AlertPresentationRawGuardLintTests 6 6 0 0 326ms
✅ AlertUtilsTests 20 20 0 0 3.90s
✅ AnnotationContractTests 3 3 0 0 15ms
✅ AnnotationDeviceIDTests 2 2 0 0 2ms
✅ AnnotationPostResponseContractTests 1 1 0 0 2ms
✅ AnnouncementChainTests 5 5 0 0 21ms
✅ AnnouncementTests 3 3 0 0 5ms
✅ AnonymousBorrowBaselineFixtureTests 13 13 0 0 80ms
✅ AnonymousBorrowCandidateFixtureTests 6 6 0 0 121ms
✅ AnonymousBorrowDeltaTests 2 2 0 0 17ms
✅ AppContainerAudiobookFactoryTests 3 3 0 0 55ms
✅ AppContainerAuthCoordinatorRegistrationTests 3 3 0 0 4ms
✅ AppContainerImageLoaderInjectionTests 4 4 0 0 77ms
✅ AppContainerIsolationLintTests 7 7 0 0 1.84s
✅ AppContainerResetTests 5 5 0 0 82ms
✅ AppContainerTests 5 5 0 0 11ms
✅ AppContainerWithSignInModalSheetPresenterTests 2 2 0 0 3ms
✅ AppHealthViewModelTests 8 8 0 0 368ms
✅ AppLaunchTrackerExtendedTests 16 16 0 0 346ms
✅ AppLaunchTrackerTests 10 10 0 0 612ms
✅ AppLaunchTrackerWiringTests 2 2 0 0 73ms
✅ AppRatingServiceOverrideTests 3 3 0 0 26ms
✅ AppRatingServiceTests 9 9 0 0 60ms
✅ AppRouteTests 5 5 0 0 13ms
✅ AppTabHostMiniPlayerIntegrationTests 6 6 0 0 246ms
✅ AppTabHostViewBadgeCountTests 10 10 0 0 173ms
✅ AppTabRouterCoverageTests 4 4 0 0 16ms
✅ AppTabRouterGapTests 3 3 0 0 5ms
✅ ArrayExtensionsTests 6 6 0 0 12ms
✅ AudioBookmarkGapTests 6 6 0 0 29ms
✅ AudioEngineWrapperTests 8 8 0 0 145ms
✅ AudioInterruptionLogicTests 6 6 0 0 29ms
✅ AudioSessionActivatorTests 8 8 0 0 31ms
✅ AudiobookAccessibilityTests 7 7 0 0 20ms
✅ AudiobookBackgroundAudioTests 2 2 0 0 28ms
✅ AudiobookBearerTokenRecoveryTests 21 21 0 0 528ms
✅ AudiobookBookmarkBusinessLogicConcurrencyTests 3 3 0 0 244ms
✅ AudiobookBookmarkBusinessLogicPositionWriteTests 8 8 0 0 174ms
✅ AudiobookBookmarkBusinessLogicTests 21 21 0 0 5.14s
✅ AudiobookChapterTOCNormalizationTests 6 6 0 0 11ms
✅ AudiobookColdLoadRecoveryTests 4 4 0 0 4ms
✅ AudiobookContentGateTests 11 11 0 0 650ms
✅ AudiobookCrossVendorSmokeTests 4 4 0 0 546ms
✅ AudiobookDataManagerEmptyQueueTests 1 1 0 0 5ms
✅ AudiobookDataManagerErrorHandlingTests 5 5 0 0 121ms
✅ AudiobookDataManagerModelsTests 20 20 0 0 509ms
✅ AudiobookDataManagerNetworkSyncTests 5 5 0 0 66ms
✅ AudiobookDataManagerSaveTests 4 4 0 0 23ms
✅ AudiobookDataManagerStoreRecoveryTests 5 5 0 0 44ms
✅ AudiobookFileLoggerTests 15 15 0 0 620ms
✅ AudiobookFirstOpenHangTests 14 14 0 0 1.13s
✅ AudiobookLoadFailureSAMLReauthTests 10 10 0 0 327ms
✅ AudiobookLoaderDispatchTests 7 7 0 0 355ms
✅ AudiobookLoaderFinalizeBuildTests 11 11 0 0 381ms
✅ AudiobookLoaderOPDSShapeMatrixTests 8 0 0 8 232ms
✅ AudiobookLoaderPredicateTests 11 11 0 0 43ms
✅ AudiobookLoaderTests 2 2 0 0 224ms
✅ AudiobookMorphingPlayerViewTests 20 20 0 0 469ms
✅ AudiobookNetworkValidationTests 3 3 0 0 2ms
✅ AudiobookOpenStateRaceTests 3 3 0 0 211ms
✅ AudiobookPhoneAlertContentTests 3 3 0 0 16ms
✅ AudiobookPlaybackStateTests 3 3 0 0 47ms
✅ AudiobookPlaybackTests 26 26 0 0 212ms
✅ AudiobookPlaytimesLifecycleTests 6 6 0 0 764ms
✅ AudiobookPositionAdapterContractTests 3 3 0 0 69ms
✅ AudiobookPositionPolicyValidatorTests 14 14 0 0 278ms
✅ AudiobookPositionRestoreTests 20 20 0 0 662ms
✅ AudiobookReadinessPlaybackContractTests 2 2 0 0 159ms
✅ AudiobookSAMLReauthTests 6 6 0 0 79ms
✅ AudiobookSessionErrorDescriptionTests 4 4 0 0 17ms
✅ AudiobookSessionErrorExtTests 4 4 0 0 12ms
✅ AudiobookSessionErrorTests 3 3 0 0 4ms
✅ AudiobookSessionManagerErrorMappingTests 6 6 0 0 249ms
✅ AudiobookSessionManagerFlagGatePresentationTests 4 4 0 0 77ms
✅ AudiobookSessionManagerPresenterMigrationTests 10 10 0 0 102ms
✅ AudiobookSessionManagerShutdownTests 12 12 0 0 3.41s
✅ AudiobookSessionPresenterLifecycleContractTests 3 3 0 0 110ms
✅ AudiobookSessionPresenterTests 31 31 0 0 287ms
✅ AudiobookSessionStateTests 6 6 0 0 46ms
✅ AudiobookSessionStateTransitionTests 22 22 0 0 220ms
✅ AudiobookSkipIntervalSettingsTests 7 7 0 0 33ms
✅ AudiobookSleepTimerIntegrationTests 5 5 0 0 131ms
✅ AudiobookStorageLocationTests 3 3 0 0 10ms
✅ AudiobookTOCTests 18 18 0 0 111ms
✅ AudiobookTimeEntryTests 6 6 0 0 49ms
✅ AudiobookTimeTrackerEdgeTests 8 8 0 0 112ms
✅ AudiobookTimeTrackerLifecycleTests 5 5 0 0 1.06s
✅ AudiobookTimeTrackerTests 9 9 0 0 126ms
✅ AudiobookTrackCompletionTests 2 2 0 0 10ms
✅ AudiobookTypeRoutingTests 5 5 0 0 20ms
✅ AudiobookVendorAdapterTests 5 5 0 0 26ms
✅ AudiobookVendorRecoveryContractTests 1 1 0 0 66ms
✅ AudiobookmarkTests 4 4 0 0 32ms
✅ AuthCoordinatorTelemetryTests 5 5 0 0 33ms
✅ AuthDecisionEventEmissionTests 7 7 0 0 40ms
✅ AuthDocumentContractTests 2 2 0 0 12ms
✅ AuthDocumentVariantsContractTests 5 5 0 0 45ms
✅ AuthErrorCategoryTests 12 12 0 0 252ms
✅ AuthErrorProblemDocSeamTests 6 6 0 0 19ms
✅ AuthFlowSecurityTests 3 0 0 3 10ms
✅ AuthReducerTests 21 21 0 0 832ms
✅ AuthTypeTests 7 7 0 0 21ms
✅ AuthenticationTests 16 16 0 0 43ms
✅ BackgroundDownloadHandlerTests 28 28 0 0 232ms
✅ BackgroundListenerTests 2 2 0 0 18ms
✅ BackgroundReconciliationContractTests 8 8 0 0 21ms
✅ BackgroundSessionRoutingTests 6 6 0 0 16ms
✅ BackupExclusionMigrationTests 3 3 0 0 11ms
✅ BadgeDefinitionTests 33 33 0 0 135ms
✅ BadgeServiceTests 16 16 0 0 202ms
✅ BadgeUnlockPhaseTests 4 4 0 0 14ms
✅ BadgesViewModelTests 14 14 0 0 248ms
✅ BasicAuthEmptyCredentialTests 4 4 0 0 7ms
✅ BearerTokenAdapterTests 5 4 0 1 1.27s
✅ BearerTokenFulfillFlowTests 4 4 0 0 50ms
✅ BearerTokenRefreshTests 4 4 0 0 9ms
✅ BearerTokenResponseDetectionTests 7 7 0 0 27ms
✅ BeginningPositionPolicyTests 8 8 0 0 64ms
✅ BookAvailabilityFormatterTests 18 18 0 0 78ms
✅ BookButtonMapperHoldReadyTests 10 10 0 0 53ms
✅ BookButtonMapperTests 21 21 0 0 137ms
✅ BookButtonMapperViewModelTests 18 18 0 0 61ms
✅ BookButtonStateTests 8 8 0 0 20ms
✅ BookButtonTypeMetaTests 4 4 0 0 11ms
✅ BookButtonTypeTests 13 13 0 0 527ms
✅ BookCellModelActionTests 18 18 0 0 842ms
✅ BookCellModelCacheInvalidationTests 9 9 0 0 245ms
✅ BookCellModelCachePrefetchSafetyTests 9 9 0 0 129ms
✅ BookCellModelCacheTests 22 22 0 0 544ms
✅ BookCellModelComputedPropertyTests 19 19 0 0 141ms
✅ BookCellModelOfflineTests 9 9 0 0 194ms
✅ BookCellModelRegistryBindingTests 4 4 0 0 102ms
✅ BookCellModelStateTests 16 16 0 0 255ms
✅ BookCellModelStreamingHTMLTests 2 2 0 0 471ms
✅ BookCellStateComprehensiveTests 14 14 0 0 1.09s
✅ BookContentResetServiceTests 2 2 0 0 13ms
✅ BookDetailMetadataHydrationTests 6 6 0 0 72ms
✅ BookDetailMetadataMergeContractTests 5 5 0 0 40ms
✅ BookDetailOpenRoutingTests 3 3 0 0 49ms
✅ BookDetailViewModelAudiobookDismissTests 1 1 0 0 11ms
✅ BookDetailViewModelTests 91 91 0 0 4.95s
✅ BookFileManagerAccountScopingTests 5 5 0 0 94ms
✅ BookFileManagerSideloadResolutionTests 4 4 0 0 95ms
✅ BookFileManagerTests 8 8 0 0 107ms
✅ BookListViewAccessibilityTests 9 9 0 0 53ms
✅ BookPreviewTests 4 4 0 0 274ms
✅ BookRegistryStoreTests 26 26 0 0 868ms
✅ BookRegistrySyncReadinessTests 4 3 0 1 1.36s
✅ BookRegistrySyncReentrancyTests 6 6 0 0 252ms
✅ BookRegistrySyncSideloadExemptionTests 2 0 0 2 87ms
❌ BookRegistrySyncTests 37 31 1 5 1.77s
✅ BookReturnCleverReauthTests 1 1 0 0 28ms
✅ BookReturnServiceAuthCoordinatorTests 3 3 0 0 91ms
✅ BookReturnServiceContractTests 9 9 0 0 244ms
✅ BookReturnServiceTests 18 18 0 0 2.41s
✅ BookServiceAudiobookOpenTests 2 2 0 0 14ms
✅ BookSignInRedirectHandlerTests 8 8 0 0 162ms
✅ BookStateIntegrationTests 8 8 0 0 147ms
✅ BookmarkBusinessLogicExtendedTests 6 6 0 0 649ms
✅ BookmarkDeletionLogTests 3 3 0 0 213ms
✅ BookmarkDeviceIdMatchingTests 3 3 0 0 140ms
✅ BookmarkExistenceTests 4 4 0 0 143ms
✅ BookmarkManagerTests 24 24 0 0 739ms
✅ BookmarkSortingTests 1 1 0 0 47ms
✅ BookmarkSyncTests 3 3 0 0 98ms
✅ BorrowAndDownloadIntegrationTests 7 7 0 0 229ms
✅ BorrowErrorMessageTests 13 13 0 0 39ms
✅ BorrowErrorPresenterTests 6 6 0 0 109ms
✅ BorrowOperationAuthCoordinatorTests 6 6 0 0 118ms
✅ BorrowOperationCleverReauthTests 2 2 0 0 23ms
✅ BorrowOperationContractTests 8 8 0 0 1.39s
✅ BorrowOperationStreamingHTMLTests 3 3 0 0 40ms
✅ BorrowOperationTests 13 13 0 0 613ms
✅ BorrowOperationTimeoutTests 3 3 0 0 114ms
✅ BorrowReauthResettingTests 4 4 0 0 177ms
✅ BorrowReducerContractTests 2 2 0 0 9ms
✅ BorrowReducerCoreContractTests 12 12 0 0 65ms
✅ BorrowReducerTests 21 21 0 0 75ms
✅ BundledRegistrySnapshotTests 5 5 0 0 585ms
✅ ButtonStateMonotonicClampTests 10 10 0 0 2.08s
✅ ButtonStateTests 16 16 0 0 90ms
✅ ButtonStyleTypeTests 2 2 0 0 4ms
✅ C64ConversionTests 6 6 0 0 11ms
✅ CarPlayAudiobookBridgePresenterMigrationTests 2 2 0 0 37ms
✅ CarPlayAuthHelperReadinessTests 3 3 0 0 206ms
✅ CarPlayChapterListTests 3 3 0 0 11ms
✅ CarPlayIntegrationTests 2 2 0 0 20ms
✅ CarPlayLibraryRefreshTests 3 3 0 0 20ms
✅ CarPlayNowPlayingTemplateTests 4 4 0 0 529ms
✅ CarPlayOpenAppAlertTests 6 6 0 0 3m 55s
✅ CarPlayPlaybackErrorTests 8 8 0 0 49ms
✅ CarPlayTests 12 12 0 0 941ms
✅ CarPlayTimeTrackingTests 3 3 0 0 41ms
✅ CatalogAPIDedupeTests 3 3 0 0 434ms
✅ CatalogAPIEntryPointTests 1 1 0 0 2ms
✅ CatalogAccessibilityTests 8 8 0 0 12ms
✅ CatalogCacheKeyAndIsolationTests 12 12 0 0 206ms
✅ CatalogCacheMetadataExactBoundaryTests 4 4 0 0 4ms
✅ CatalogCacheMetadataTests 21 21 0 0 244ms
✅ CatalogCrawlSchedulerTests 9 9 0 0 31ms
✅ CatalogFeedModelTests 4 4 0 0 16ms
✅ CatalogFilterGroupModelTests 17 17 0 0 60ms
✅ CatalogFilterModelTests 17 17 0 0 1.78s
✅ CatalogFilterServiceTests 29 29 0 0 102ms
✅ CatalogFilterTests 1 1 0 0 1ms
✅ CatalogLaneAssemblyTests 7 7 0 0 47ms
✅ CatalogLaneModelStructTests 20 20 0 0 820ms
✅ CatalogLaneModelTests 3 3 0 0 7ms
✅ CatalogLaneMoreFilterStateTests 8 8 0 0 60ms
✅ CatalogLaneMoreViewModelTests 43 43 0 0 262ms
✅ CatalogLaneRowViewAccessibilityTests 11 11 0 0 33ms
✅ CatalogLaneSortingTests 5 5 0 0 87ms
✅ CatalogLoadIntegrationTests 6 6 0 0 80ms
✅ CatalogOPDS2NegotiationTests 12 12 0 0 204ms
✅ CatalogPreloaderTests 6 6 0 0 72ms
✅ CatalogProblemDocumentTests 6 6 0 0 53ms
✅ CatalogRepositoryCoreTests 9 9 0 0 205ms
✅ CatalogRepositoryStaleWhileRevalidateTests 12 12 0 0 459ms
✅ CatalogRepositoryTests 19 19 0 0 577ms
✅ CatalogSearchViewModelRegistryUpdateTests 5 5 0 0 70ms
✅ CatalogSearchViewModelTests 67 67 0 0 6.30s
✅ CatalogSelectorsTests 2 2 0 0 4ms
✅ CatalogSortServiceTests 14 14 0 0 150ms
✅ CatalogStateTests 7 7 0 0 56ms
✅ CatalogViewContinueRowsIntegrationTests 3 3 0 0 48ms
✅ CatalogViewLibraryIconTests 2 2 0 0 8ms
✅ CatalogViewModelStateMachineTests 19 19 0 0 481ms
✅ ChaosFaultInjectionTests 5 5 0 0 136ms
✅ ChapterChangeDetectorTests 5 5 0 0 6ms
✅ ChapterTOCNormalizerTests 7 7 0 0 14ms
✅ CirculationAnalyticsTests 4 4 0 0 17ms
✅ ColdStartResumeIntegrationTests 10 10 0 0 1.72s
✅ ColorExtensionTests 5 5 0 0 8ms
✅ ConcurrentBookStateTests 3 3 0 0 26ms
✅ ConcurrentDownloadStateTests 3 3 0 0 147ms
✅ ConcurrentTokenRefreshTests 2 2 0 0 26ms
✅ ContinueRowSectionTests 6 6 0 0 39ms
✅ ContinuousPlaybackTrackingTests 3 3 0 0 571ms
✅ CookiePersistenceTests 10 10 0 0 629ms
✅ CrawlStateTests 16 16 0 0 57ms
✅ CrawlableFeedAnalysisTests 17 17 0 0 222ms
✅ CrawlerFallbackTests 12 12 0 0 115ms
✅ CredentialEdgeCaseTests 6 6 0 0 464ms
✅ CredentialPrivacyTests 4 4 0 0 22ms
✅ CredentialPromptCoordinatorTests 4 4 0 0 331ms
✅ CredentialSnapshotInvalidationTests 5 0 0 5 168ms
✅ CredentialStoreCharacterizationTests 7 7 0 0 369ms
✅ CrossDeviceBookmarkSyncTests 12 12 0 0 41ms
✅ CrossDeviceSyncE2ETests 8 8 0 0 2.06s
✅ CrossDomain401Tests 8 8 0 0 15ms
✅ CrossFormatMappingTests 14 14 0 0 70ms
✅ DPLAErrorTests 3 3 0 0 7ms
✅ DRMAdversarialTests 4 1 0 3 58ms
✅ DRMFulfilledPublicationTests 6 6 0 0 27ms
✅ DataBase64Tests 3 3 0 0 11ms
✅ DataReceptionComparisonTests 2 2 0 0 32ms
✅ DateExtensionTests 9 9 0 0 84ms
✅ DateFormattingTests 4 4 0 0 7ms
✅ Date_NYPLAdditionsTests 7 7 0 0 391ms
✅ DebugSettingsForceSkeletonsTests 4 4 0 0 12ms
✅ DebugSettingsGapTests 4 4 0 0 27ms
✅ DebugSettingsTests 31 31 0 0 191ms
✅ DefaultCatalogAPITests 31 31 0 0 382ms
✅ DefaultRecentlyReadingServiceTests 13 13 0 0 54ms
✅ DeriveInitialStateTests 4 4 0 0 13ms
✅ DeveloperSettingsEngineeringTierTests 4 4 0 0 1.05s
✅ DeveloperSettingsViewModelOverrideTests 3 0 0 3 16ms
✅ DeviceLogCollectorGapTests 2 2 0 0 24ms
✅ DeviceLogCollectorTests 13 13 0 0 147ms
✅ DeviceOrientationTests 7 7 0 0 149ms
✅ DeviceSpecificErrorMonitorTests 11 11 0 0 165ms
✅ DictionaryExtensionsTests 5 5 0 0 8ms
✅ DiskBudgetManagerTests 7 7 0 0 25ms
✅ DiskBudgetTests 2 2 0 0 5ms
✅ DownloadAccountContextAdapterTests 11 11 0 0 2.64s
✅ DownloadAlertPresenterTests 8 8 0 0 326ms
✅ DownloadAnnouncementServiceTests 12 12 0 0 584ms
✅ DownloadAuthRetryHandlerAuthCoordinatorTests 6 6 0 0 3.17s
✅ DownloadAuthRetryHandlerTaskLifecycleTests 4 4 0 0 475ms
✅ DownloadAuthRetryHandlerTests 17 17 0 0 2.30s
✅ DownloadCancellationHandlerTests 5 5 0 0 42ms
✅ DownloadCompleteMomentTests 6 6 0 0 38ms
✅ DownloadCompletionParserTests 9 9 0 0 193ms
✅ DownloadCoordinatorIntegrationTests 10 10 0 0 121ms
✅ DownloadCoordinatorTests 11 11 0 0 106ms
✅ DownloadDiskSpaceTests 2 2 0 0 21ms
✅ DownloadErrorInfoTests 3 3 0 0 7ms
✅ DownloadErrorRecoveryPolicyTests 11 11 0 0 113ms
✅ DownloadErrorRecoveryTests 3 3 0 0 9ms
✅ DownloadFreeSpaceExhaustionTests 11 11 0 0 72ms
✅ DownloadInfoTests 5 5 0 0 9ms
✅ DownloadIntegrityTests 10 10 0 0 101ms
✅ DownloadOnlyOnWiFiTests 10 10 0 0 24ms
✅ DownloadPersistenceStoreTests 5 5 0 0 38ms
✅ DownloadProgressPublisherCoreTests 19 19 0 0 605ms
✅ DownloadProgressPublisherTests 2 2 0 0 28ms
✅ DownloadQueueIntegrationTests 3 3 0 0 48ms
✅ DownloadQueueOrchestratorTests 9 9 0 0 199ms
✅ DownloadRMSDKHandoffTests 1 1 0 0 <1ms
✅ DownloadReconciliationLaunchOrderContractTests 2 2 0 0 61ms
✅ DownloadReconciliationTests 17 17 0 0 54ms
✅ DownloadRedirectTests 7 7 0 0 46ms
✅ DownloadResumeAfterKillTests 7 7 0 0 58ms
✅ DownloadSlotManagementTests 5 5 0 0 17ms
✅ DownloadStartCoordinatorContractTests 5 5 0 0 79ms
✅ DownloadStartCoordinatorTests 9 9 0 0 107ms
✅ DownloadStartDispatcherContractTests 12 12 0 0 66ms
✅ DownloadStartDispatcherTests 26 26 0 0 601ms
✅ DownloadStartReducerContractTests 24 24 0 0 119ms
✅ DownloadStateMachineIntegrationTests 15 15 0 0 53ms
✅ DownloadStateMachineTests 5 5 0 0 21ms
✅ DownloadStateManagerTests 16 16 0 0 210ms
✅ DownloadTaskLifecycleServiceTests 9 9 0 0 103ms
✅ DownloadTaskPersistenceTests 14 14 0 0 926ms
✅ DownloadThrottlingContractTests 2 2 0 0 5ms
✅ DownloadThrottlingServiceTests 10 10 0 0 130ms
✅ DownloadTransferRetryTests 6 6 0 0 2.10s
✅ DownloadWatchdogTests 3 3 0 0 92ms
✅ EPUBKeyCommandsPP4289Tests 4 4 0 0 14ms
✅ EPUBModuleTests 4 4 0 0 28ms
✅ EPUBPositionTests 10 10 0 0 67ms
✅ EPUBSearchViewModelTests 18 18 0 0 107ms
✅ EPUBToolbarToggleTests 11 11 0 0 37ms
✅ EffectBoundaryTests 6 6 0 0 14ms
✅ EmailAddressTests 16 16 0 0 116ms
✅ EpubSampleFactoryTests 5 5 0 0 384ms
✅ ErrorActivityTrackerTests 12 12 0 0 79ms
✅ ErrorDetailTests 14 14 0 0 145ms
✅ ErrorDetailViewControllerGapTests 3 3 0 0 101ms
✅ ErrorDetailViewControllerTests 14 14 0 0 156ms
✅ ErrorLogExporterTests 5 5 0 0 34ms
✅ ExecutorNetworkHermeticityTests 1 1 0 0 14ms
✅ ExpiredLoanStringsTests 5 5 0 0 25ms
✅ FacetEnumTests 3 3 0 0 8ms
✅ FacetToolbarAccessibilityTests 5 5 0 0 102ms
✅ FacetViewModelLogoDelegateTests 4 4 0 0 95ms
✅ FacetViewModelTests 18 18 0 0 2.47s
✅ FetchManifestWithBearerTokenLCPSafetyTests 1 1 0 0 4ms
✅ FetchManifestWithBearerTokenTests 9 9 0 0 257ms
✅ FetchOpenAccessManifestLCPSafetyTests 4 4 0 0 17ms
✅ FileURLGenerationTests 3 3 0 0 24ms
✅ FindawayChapterStatusGuardTests 1 1 0 0 6ms
✅ FindawaySavedVsPlayedTests 1 1 0 0 50ms
✅ FloatTPPAdditionsTests 5 5 0 0 10ms
✅ FocusIndicationTests 7 7 0 0 105ms
✅ FontManagerTests 17 17 0 0 487ms
✅ ForceResetTests 6 6 0 0 37ms
✅ GeneralCacheClearOnUpdateTests 3 3 0 0 15ms
✅ GeneralCacheTests 20 20 0 0 520ms
✅ GroupEnumTests 1 1 0 0 8ms
✅ HTMLTextViewTests 70 70 0 0 34.13s
✅ HoldNotificationClassificationTests 2 2 0 0 8ms
✅ HoldsBadgeCountTests 9 9 0 0 70ms
✅ HoldsBookViewModelTests 8 8 0 0 79ms
✅ HoldsReducerTests 11 11 0 0 1.33s
✅ HoldsSyncFailureTests 12 12 0 0 185ms
✅ HoldsViewModelTests 23 23 0 0 267ms
✅ HostFailureTrackerTests 2 2 0 0 7ms
✅ ImageCacheContinuationTests 1 1 0 0 260ms
✅ ImageCacheOffMainIsolationTests 2 2 0 0 122ms
✅ ImageCacheTypeTests 1 1 0 0 3ms
✅ ImageCoverKeyUnificationTests 2 2 0 0 8ms
✅ ImageLoaderTests 14 14 0 0 169ms
✅ InflightFeedFetchesTimeoutTests 4 4 0 0 10.46s
✅ IntExtensionsTests 4 4 0 0 36ms
✅ IsReaderActiveTrackingModifierTests 4 4 0 0 11ms
✅ KeyboardNavigationFKATests 11 11 0 0 148ms
✅ KeyboardNavigationHandlerTests 16 16 0 0 94ms
✅ KeyboardVoiceOverTests 5 5 0 0 40ms
✅ LCPAcquisitionPredicateTests 4 4 0 0 5ms
✅ LCPAdapterTests 8 8 0 0 62ms
✅ LCPAudiobookURLSchemeTests 4 4 0 0 16ms
✅ LCPAudiobooksTests 21 21 0 0 236ms
✅ LCPBotanCRLGuardTests 5 5 0 0 21ms
✅ LCPCharacterizationTests 31 31 0 0 602ms
✅ LCPClientTests 9 9 0 0 66ms
✅ LCPFulfillmentHandlerTests 8 8 0 0 205ms
✅ LCPKeychainMigrationTests 3 3 0 0 63ms
✅ LCPLibraryServiceTests 20 20 0 0 583ms
✅ LCPLicenseDocumentDetectionTests 5 5 0 0 12ms
✅ LCPLicenseFilePathTests 3 3 0 0 17ms
✅ LCPOrphanedDownloadRegistryTests 4 4 0 0 22ms
✅ LCPPDFAcquisitionPredicateTests 5 5 0 0 10ms
✅ LCPPDFDiskExtractTests 5 5 0 0 93ms
✅ LCPPDFOpenProgressTests 13 13 0 0 433ms
✅ LCPPassphraseReadinessTests 2 2 0 0 49ms
✅ LCPSessionIdentifierTests 3 3 0 0 6ms
✅ LegacySAMLProblemDocumentPropagationTests 7 7 0 0 904ms
✅ LibrariesSectionViewModelTests 16 16 0 0 64ms
✅ LibraryCatalogMergerTests 9 9 0 0 1.29s
✅ LibraryRegistryCrawlerTests 15 15 0 0 155ms
✅ LicensesServiceTests 4 4 0 0 781ms
✅ LiveCrawlableParsingTest 4 0 0 4 64ms
✅ LoanEvictionPolicyTests 13 13 0 0 304ms
✅ LoanRenewalServiceTests 9 9 0 0 613ms
✅ LocalBookContentServiceTests 7 7 0 0 62ms
✅ LocalFileAdapterTests 6 5 0 1 43ms
✅ LogTests 13 13 0 0 381ms
✅ LoginKeyboardTests 8 8 0 0 53ms
✅ MainActorHelpersTests 22 22 0 0 1.15s
✅ MappedCatalogBridgeTests 3 3 0 0 12ms
✅ MappedCatalogModelTests 11 11 0 0 319ms
✅ MockBackendExpiredCredentialsTests 3 3 0 0 74ms
✅ MockBackendHoldsTests 3 3 0 0 56ms
✅ MockBackendIntegrationTests 4 4 0 0 92ms
✅ MockBackendLoanLimitTests 2 2 0 0 53ms
✅ MockBackendRouteMatchingTests 4 4 0 0 12ms
✅ MockBackendServerDownTests 1 1 0 0 34ms
✅ MockIsolationLintTests 5 5 0 0 2.88s
✅ MultiLibraryTokenIsolationTests 14 14 0 0 686ms
✅ MyBooksDownloadCenterAccountIdThreadingTests 7 7 0 0 201ms
✅ MyBooksDownloadCenterAccountScopeSeamTests 3 3 0 0 70ms
✅ MyBooksDownloadCenterAdeptGapTests 3 3 0 0 6ms
✅ MyBooksDownloadCenterConcurrencyTests 22 22 0 0 277ms
✅ MyBooksDownloadCenterEvictionTests 7 7 0 0 85ms
✅ MyBooksDownloadCenterOfflineTests 8 8 0 0 147ms
✅ MyBooksDownloadSessionInvalidationTests 3 3 0 0 18ms
✅ MyBooksSimplifiedBearerTokenTests 17 17 0 0 173ms
✅ MyBooksViewModelBooksPublisherTests 3 3 0 0 33ms
✅ MyBooksViewModelConcurrencyTests 4 4 0 0 35ms
✅ MyBooksViewModelDownloadStateTests 3 3 0 0 19ms
✅ MyBooksViewModelEmptyArrayTests 3 3 0 0 4ms
✅ MyBooksViewModelEmptyStateTests 4 4 0 0 113ms
✅ MyBooksViewModelExtendedTests 15 15 0 0 3.75s
✅ MyBooksViewModelFacetIntegrationTests 4 4 0 0 40ms
✅ MyBooksViewModelFacetPublisherTests 5 5 0 0 38ms
✅ MyBooksViewModelFilterSortInteractionTests 2 2 0 0 13ms
✅ MyBooksViewModelFilterTests 9 9 0 0 172ms
✅ MyBooksViewModelGuardConditionsTests 2 2 0 0 19ms
✅ MyBooksViewModelLargeDatasetTests 2 2 0 0 264ms
✅ MyBooksViewModelLoadAccountTests 2 2 0 0 88ms
✅ MyBooksViewModelLoginStateTests 4 4 0 0 336ms
✅ MyBooksViewModelMultipleAuthorSortingTests 3 3 0 0 14ms
✅ MyBooksViewModelNotificationTests 4 4 0 0 341ms
✅ MyBooksViewModelOfflineFilteringTests 3 3 0 0 57ms
✅ MyBooksViewModelPublisherTests 7 7 0 0 54ms
✅ MyBooksViewModelSearchEdgeCaseTests 6 6 0 0 69ms
✅ MyBooksViewModelSearchQueryTests 3 3 0 0 14ms
✅ MyBooksViewModelSortPersistenceTests 3 3 0 0 37ms
✅ MyBooksViewModelSortingIntegrationTests 5 5 0 0 38ms
✅ MyBooksViewModelSortingTests 6 6 0 0 42ms
✅ MyBooksViewModelStateTransitionTests 3 3 0 0 320ms
✅ MyBooksViewModelUIBindingTests 3 3 0 0 49ms
✅ NSErrorAdditionsTests 7 7 0 0 13ms
✅ NSNotificationTPPTests 3 3 0 0 8ms
✅ NavigationCoordinatorTests 18 18 0 0 57ms
✅ NavigationFreezePreventionTests 5 5 0 0 16ms
✅ NetworkCacheClearRoutingTests 3 3 0 0 70ms
✅ NetworkExecutorCredentialGuardTests 8 8 0 0 128ms
❌ NetworkExecutorResponseRegressionTests 5 4 1 0 12.98s
✅ NetworkExecutorTaskTypeTests 3 3 0 0 37ms
✅ NetworkOfflineDetectionTests 3 3 0 0 17ms
✅ NetworkQueueTests 11 11 0 0 74ms
✅ NetworkRequestQueueTests 2 2 0 0 10.15s
✅ NetworkRetryLogicTests 7 7 0 0 77ms
✅ NetworkTimeoutTests 2 2 0 0 23ms
✅ NotificationEventTypeContractTests 7 7 0 0 17ms
✅ NotificationPayloadContractTests 10 10 0 0 176ms
✅ NotificationServiceStateMachineTests 9 9 0 0 2.18s
✅ NotificationServiceTests 16 16 0 0 132ms
✅ NotificationServiceTokenTests 13 13 0 0 43ms
✅ NotificationSyncThrottleTests 5 5 0 0 5ms
✅ NotificationTokenDataTests 4 4 0 0 12ms
✅ NotificationTokenRegistrationTests 10 10 0 0 141ms
✅ NowPlayingCoordinatorBackgroundTests 6 6 0 0 1.27s
✅ NowPlayingCoordinatorTests 19 19 0 0 4.27s
✅ OAuthSAMLRedirectRegressionTests 4 4 0 0 765ms
✅ OIDCAuthDocumentParsingTests 4 4 0 0 101ms
✅ OIDCAuthTypeTests 5 5 0 0 10ms
✅ OIDCAuthenticationPropertyTests 8 8 0 0 493ms
✅ OIDCCallbackEdgeCaseTests 9 9 0 0 393ms
✅ OIDCCallbackHandlingTests 5 5 0 0 232ms
✅ OIDCCallbackSchemeTests 3 3 0 0 4ms
✅ OIDCIsolationRegressionTests 6 6 0 0 893ms
✅ OIDCLoginRoutingTests 3 3 0 0 169ms
✅ OIDCMakeRequestTests 3 3 0 0 116ms
✅ OIDCNSCodingTests 1 1 0 0 255ms
✅ OIDCNetworkLayer401Tests 5 5 0 0 164ms
✅ OIDCReauthOnExpiredTokenTests 5 5 0 0 330ms
✅ OIDCRedirectURIConstructionTests 6 6 0 0 210ms
✅ OIDCRegressionTests 9 9 0 0 355ms
✅ OIDCSelectedAuthenticationTests 2 2 0 0 83ms
✅ OIDCSignOutRegressionTests 6 6 0 0 828ms
✅ OIDCTokenRefreshRegressionTests 6 6 0 0 442ms
✅ OIDCUpdateUserAccountTests 5 5 0 0 784ms
✅ OIDCViewModelRegressionTests 1 1 0 0 31ms
✅ OIDCViewModelSignInTests 2 2 0 0 30ms
✅ OPDS1BorrowEntryContractTests 4 4 0 0 147ms
✅ OPDS1CatalogGroupedContractTests 3 3 0 0 12ms
✅ OPDS1HoldEntriesContractTests 4 4 0 0 20ms
✅ OPDS1LoansFeedContractTests 6 6 0 0 34ms
✅ OPDS1ParsingTests 34 34 0 0 203ms
✅ OPDS1RevokeResponseContractTests 2 2 0 0 10ms
✅ OPDS2AuthenticationDocumentTests 18 18 0 0 103ms
✅ OPDS2AvailabilityTests 4 4 0 0 6ms
✅ OPDS2BookBridgeTests 44 44 0 0 1.49s
✅ OPDS2BorrowResponseContractTests 3 3 0 0 7ms
✅ OPDS2CatalogWiringTests 21 21 0 0 352ms
✅ OPDS2CatalogsFeedTests 3 3 0 0 100ms
✅ OPDS2ContributorTests 2 2 0 0 4ms
✅ OPDS2EmptyFeedContractTests 1 1 0 0 2ms
✅ OPDS2FeedContractTests 4 4 0 0 30ms
✅ OPDS2FeedParsingTests 11 11 0 0 164ms
✅ OPDS2FeedTests 14 14 0 0 129ms
✅ OPDS2FullMetadataTests 4 4 0 0 82ms
✅ OPDS2FullPublicationTests 13 13 0 0 68ms
✅ OPDS2IntegrationTests 18 18 0 0 208ms
✅ OPDS2LinkArrayTests 5 5 0 0 7ms
✅ OPDS2LinkComputedPropertyTests 20 20 0 0 110ms
✅ OPDS2LinkRelTests 1 1 0 0 2ms
✅ OPDS2LinkTests 2 2 0 0 61ms
✅ OPDS2ParsingTests 38 38 0 0 170ms
✅ OPDS2PublicationExtendedTests 53 53 0 0 282ms
✅ OPDS2PublicationImageTests 6 6 0 0 283ms
✅ OPDS2PublicationNarratorTests 3 3 0 0 467ms
✅ OPDS2PublicationTests 2 2 0 0 66ms
✅ OPDS2SamlIDPTests 6 6 0 0 23ms
✅ OPDS2SearchResultsContractTests 3 3 0 0 327ms
✅ OPDS2SubjectTests 2 2 0 0 2ms
✅ OPDS2SupportingTypesTests 5 5 0 0 274ms
✅ OPDSAcquisitionPathExpandedTests 15 15 0 0 165ms
✅ OPDSFeedCacheTests 14 14 0 0 145ms
✅ OPDSFeedMigrationTests 11 11 0 0 32ms
✅ OPDSFeedParsingTests 2 2 0 0 40ms
✅ OPDSFeedServiceStateMachineTests 3 3 0 0 191ms
✅ OPDSFeedServiceTests 2 2 0 0 3ms
✅ OPDSFormatTests 13 13 0 0 43ms
✅ OPDSParserCoreTests 4 4 0 0 34ms
✅ OPDSParserTests 4 4 0 0 39ms
✅ OPDSParsingTests 57 57 0 0 928ms
✅ OfflineActionTests 29 29 0 0 120ms
✅ OfflineQueueCoordinatorTests 11 11 0 0 59ms
✅ OfflineQueueServiceExtendedTests 13 13 0 0 333ms
✅ OfflineQueueServiceTests 17 17 0 0 180ms
✅ OpenAccessAdapterTests 13 13 0 0 192ms
✅ OverdriveDeferredFulfillmentTests 6 6 0 0 10ms
✅ OverdriveDownloadHandlerTests 9 9 0 0 100ms
✅ OverdriveFulfillmentTests 28 24 0 4 505ms
✅ PDFExtensionsTests 20 20 0 0 44ms
✅ PDFKitThumbnailProviderTests 5 5 0 0 58ms
✅ PDFReaderTests 12 12 0 0 78ms
✅ PDFSearchEmptyStateTests 4 4 0 0 21ms
✅ PP3596RegressionTests 3 3 0 0 55ms
✅ Palace 2 2 0 0 <1ms
✅ PalaceCheckPropertyTests 8 8 0 0 204ms
✅ PalaceErrorCategoryTests 20 20 0 0 685ms
✅ PalaceErrorExtendedTests 23 23 0 0 126ms
✅ PalaceErrorTests 11 11 0 0 87ms
✅ PalaceHapticTests 4 4 0 0 35ms
✅ PalaceMotionTests 11 11 0 0 525ms
✅ PalacePDFViewTests 12 12 0 0 108ms
❌ PalacePreferencesSettingsRoundTripTests 10 9 1 0 3m 20s
✅ PalacePressableButtonStyleTests 6 6 0 0 96ms
✅ PalaceTestSetupObservationTests 4 4 0 0 30ms
✅ PalaceWiringTestCaseTests 4 4 0 0 17ms
✅ ParserFuzzTests 4 4 0 0 18.05s
✅ PatronProfileContractTests 4 4 0 0 23ms
✅ PerformanceMonitorTests 14 14 0 0 157ms
✅ PerformanceReportTests 14 14 0 0 1.18s
✅ PersistentLoggerTests 9 9 0 0 895ms
✅ PlaybackBootstrapperAudioSessionTests 2 2 0 0 33ms
✅ PlaybackBootstrapperTests 8 8 0 0 75ms
✅ PlaybackFailureRecordTests 5 5 0 0 23ms
✅ PlaybackOpenPolicyTests 7 7 0 0 20ms
✅ PlaybackRateTests 18 18 0 0 109ms
✅ PlaybackTrackingRegressionTests 5 5 0 0 97ms
⚠️ PoolResponsivenessProbeTests 5 4 0 0 1.44s
✅ PositionPersistenceLogicTests 6 6 0 0 50ms
✅ PositionPersistenceTests 2 2 0 0 10ms
✅ PositionSyncServiceTests 13 13 0 0 657ms
✅ PositionSyncTests 5 5 0 0 11ms
✅ PositionWriterContractTests 6 6 0 0 100ms
✅ PostUpdateMigrationTests 5 5 0 0 40ms
✅ ProblemDocumentContractTests 4 4 0 0 15ms
✅ ProblemDocumentLoanExpiryTests 5 5 0 0 5ms
✅ ProblemDocumentTests 12 12 0 0 87ms
✅ ProblemReportEmailTests 8 8 0 0 21ms
✅ RatingCardMotionGateTests 5 5 0 0 16ms
✅ RatingEligibilityPolicyTests 17 17 0 0 45ms
✅ RatingEngagementTrackerTests 9 9 0 0 149ms
✅ RatingFeedbackPresenterTests 3 3 0 0 12ms
✅ RatingPromptPresenterTests 15 15 0 0 447ms
✅ ReachabilityTests 10 10 0 0 59ms
✅ Reader2BookmarkContractTests 3 3 0 0 36ms
✅ Reader2PositionAdapterContractTests 4 3 0 1 253ms
✅ Reader2PositionResumeContractTests 3 3 0 0 124ms
✅ ReaderAccessibilityTests 7 7 0 0 390ms
✅ ReaderChromeToggleFadeTests 3 3 0 0 12ms
✅ ReaderEditingActionsTests 5 5 0 0 28ms
✅ ReaderErrorTests 5 5 0 0 38ms
✅ ReaderNavBarVoiceOverTests 2 2 0 0 7ms
✅ ReaderServicePDFRouteTests 3 3 0 0 12ms
✅ ReaderServiceSyncTests 3 3 0 0 41ms
✅ ReaderThemeTests 24 24 0 0 96ms
✅ ReadingPositionTests 22 22 0 0 123ms
✅ ReadingSessionTrackerTests 13 13 0 0 144ms
✅ ReadingStatsServiceTests 12 12 0 0 80ms
✅ ReadingStatsStoreTests 9 9 0 0 794ms
✅ RedirectHandlingIntegrationTests 4 4 0 0 15ms
✅ RedirectPolicyTests 9 9 0 0 28ms
✅ RegistryDownloadServicingSeamTests 2 2 0 0 12ms
✅ RegistryFileRecoveryTests 23 23 0 0 297ms
✅ RemoteFeatureFlagsGapTests 4 4 0 0 117ms
✅ RemoteFeatureFlagsSideLoadingTests 5 5 0 0 24ms
✅ RemoteFeatureFlagsTests 21 21 0 0 958ms
✅ ResourcePropertiesLengthTests 3 3 0 0 6ms
✅ RetryClassificationTests 17 17 0 0 214ms
✅ ReturnFlowTests 1 1 0 0 <1ms
✅ ReturnReducerContractTests 16 16 0 0 396ms
✅ RightsManagementDetectionTests 5 5 0 0 32ms
✅ RightsManagementDispatchContractTests 8 8 0 0 175ms
✅ RightsManagementDispatcherTests 10 10 0 0 121ms
✅ RuntimeQuiescenceGateTests 11 10 0 1 2.36s
✅ RuntimeQuiescenceLintTests 5 5 0 0 650ms
✅ SAMLCookieSyncTests 5 5 0 0 227ms
✅ SAMLLogoutCallbackDetectionTests 4 4 0 0 7ms
✅ SAMLLogoutLinkParsingTests 5 5 0 0 59ms
✅ SAMLLogoutURLTests 4 4 0 0 16ms
✅ SAMLPlusBiblioBoardExpirationTests 8 8 0 0 512ms
✅ SEMigrationsTests 6 6 0 0 163ms
✅ SafeDictionaryTests 21 21 0 0 382ms
✅ SamplePlayerErrorTests 5 5 0 0 393ms
✅ SampleTypeTests 8 8 0 0 65ms
✅ SceneDelegateTests 1 1 0 0 3ms
✅ ScopedResetTests 9 9 0 0 68ms
✅ SearchAccessibilityTests 11 11 0 0 817ms
✅ SearchFlowIntegrationTests 8 8 0 0 118ms
✅ SettingsViewModelComputedPropertyTests 6 6 0 0 31ms
✅ SettingsViewModelEdgeCaseTests 7 7 0 0 485ms
✅ SettingsViewModelGapTests 1 1 0 0 2ms
✅ SettingsViewModelSyncTests 14 14 0 0 145ms
✅ SettingsViewModelTests 33 33 0 0 287ms
✅ SideloadBoundaryTests 6 6 0 0 65ms
✅ SideloadImportContractTests 1 1 0 0 31ms
✅ SideloadedBookManagerTests 17 17 0 0 3.67s
✅ SideloadedBookRegistryTests 14 14 0 0 96ms
✅ SideloadedLaneBridgeTests 6 6 0 0 42ms
✅ SideloadedLaneViewModelTests 7 7 0 0 49ms
✅ SignInFormPresentationTests 3 3 0 0 5ms
✅ SignInModalLifecycleTests 9 9 0 0 71ms
✅ SignInModalPredicateTests 3 3 0 0 10ms
✅ SignInModalSAMLOIDCTests 6 6 0 0 26ms
✅ SignInOAuthErrorPropagationTests 8 8 0 0 1.01s
✅ SignInRequestServiceCharacterizationTests 11 11 0 0 515ms
✅ SignInToReadFlowIntegrationTests 5 5 0 0 473ms
✅ SignInWebSheetIntegrationTests 3 3 0 0 4.83s
✅ SignInWebSheetViewModelTests 31 31 0 0 95ms
✅ SignOutCacheClearingTests 3 3 0 0 68ms
✅ SingletonResetRegistryTests 5 5 0 0 64ms
✅ SkeletonTests 22 22 0 0 57ms
✅ StatsViewModelTests 10 10 0 0 520ms
✅ StatusAnnouncementTests 22 22 0 0 169ms
✅ StopPositionSaveTests 2 2 0 0 5ms
✅ StoreTests 5 5 0 0 43ms
✅ StreamingReaderPresentationContractTests 1 1 0 0 10ms
✅ StreamingReaderProgressStoreTests 7 7 0 0 47ms
✅ StreamingReaderViewControllerScrollRestoreTests 12 12 0 0 1.04s
✅ StreamingReaderViewModelTests 9 9 0 0 59ms
✅ StringExtensionTests 8 8 0 0 33ms
✅ StringExtensionsTests 3 3 0 0 15ms
✅ StringHTMLEntitiesTests 7 7 0 0 92ms
✅ StringNYPLAdditionsTests 4 4 0 0 4ms
✅ String_NYPLAdditionsTests 4 4 0 0 8ms
✅ SupportSectionDecisionTests 5 5 0 0 4ms
✅ SyncConflictResolutionTests 3 3 0 0 3ms
✅ SyncDeletionGuardTests 5 5 0 0 24ms
✅ SyncDeletionRatioTests 6 6 0 0 17ms
✅ SyncPermissionTests 5 5 0 0 61ms
✅ TPPAccountAuthStateEnumTests 5 5 0 0 8ms
✅ TPPAccountListDataSourceTests 3 3 0 0 50ms
✅ TPPAdobeActivationSkipTests 6 6 0 0 194ms
✅ TPPAgeCheckCompletionTests 5 5 0 0 173ms
✅ TPPAgeCheckIsValidTests 5 5 0 0 101ms
✅ TPPAgeCheckStateMachineTests 4 4 0 0 310ms
✅ TPPAgeCheckTests 6 6 0 0 1.21s
✅ TPPAgeCheckVerifyDecisionTests 5 5 0 0 152ms
✅ TPPAlertUtilsTests 45 45 0 0 1.27s
✅ TPPAnnotationsHermeticTests 15 15 0 0 45ms
✅ TPPAnnotationsOverrideTests 4 4 0 0 99ms
✅ TPPAnnotationsTests 29 29 0 0 1.05s
✅ TPPAnnouncementManagerTests 3 3 0 0 18ms
✅ TPPAuthDocumentContractTests 3 3 0 0 25ms
✅ TPPBackgroundExecutorTests 3 3 0 0 30ms
✅ TPPBadgeImageGapTests 2 2 0 0 7ms
✅ TPPBaseReaderViewControllerInitialLocationTests 10 10 0 0 61ms
✅ TPPBasicAuthTests 11 11 0 0 57ms
✅ TPPBookAccessibilityLabelTests 8 8 0 0 39ms
✅ TPPBookAuthorCoverageTests 3 3 0 0 14ms
✅ TPPBookAuthorTests 6 6 0 0 31ms
✅ TPPBookBearerTokenTests 9 8 0 1 51ms
✅ TPPBookButtonsStateTests 7 7 0 0 35ms
✅ TPPBookContentMetadataFilesHelperTests 9 9 0 0 42ms
✅ TPPBookContentTypeConverterStreamingHTMLTests 2 2 0 0 6ms
✅ TPPBookContentTypeConverterTests 4 4 0 0 8ms
✅ TPPBookContentTypeExtendedTests 4 4 0 0 4ms
✅ TPPBookContentTypeTests 14 14 0 0 65ms
✅ TPPBookCoverRegistryTests 17 17 0 0 929ms
✅ TPPBookCreationTests 7 7 0 0 34ms
✅ TPPBookExtensionsTests 21 21 0 0 115ms
✅ TPPBookIsDRMProtectedTests 9 9 0 0 143ms
✅ TPPBookLocationCoverageTests 7 7 0 0 11ms
✅ TPPBookLocationEdgeCaseTests 27 27 0 0 1.81s
✅ TPPBookLocationKeyTests 3 3 0 0 23ms
✅ TPPBookLocationTests 11 11 0 0 54ms
✅ TPPBookModelGapTests 4 4 0 0 14ms
✅ TPPBookRegistryAccountCaptureContractTests 4 4 0 0 118ms
✅ TPPBookRegistryAsyncReadinessTests 3 3 0 0 182ms
✅ TPPBookRegistryAtomicWriteTests 7 7 0 0 244ms
✅ TPPBookRegistryBookRetrievalTests 7 7 0 0 782ms
✅ TPPBookRegistryBookmarkTests 7 7 0 0 106ms
✅ TPPBookRegistryCorruptedDataTests 5 5 0 0 41ms
✅ TPPBookRegistryDataTests 4 4 0 0 10ms
✅ TPPBookRegistryDependencyTests 4 4 0 0 66ms
✅ TPPBookRegistryFacadeContractTests 6 6 0 0 111ms
✅ TPPBookRegistryFulfillmentIdTests 4 4 0 0 19ms
✅ TPPBookRegistryLargeCorpusTests 8 8 0 0 2m 5s
✅ TPPBookRegistryLoadReentrancyTests 2 2 0 0 8ms
✅ TPPBookRegistryLocationTests 4 4 0 0 57ms
✅ TPPBookRegistryMigrationTests 16 16 0 0 503ms
✅ TPPBookRegistryMutationContractTests 10 10 0 0 335ms
✅ TPPBookRegistryPersistenceTests 10 10 0 0 859ms
✅ TPPBookRegistryProcessingTests 2 2 0 0 28ms
✅ TPPBookRegistryPublisherTests 6 6 0 0 1.24s
✅ TPPBookRegistryRebuildRefusalContractTests 1 1 0 0 16ms
✅ TPPBookRegistryRecordPersistenceTests 3 3 0 0 27ms
✅ TPPBookRegistryRecordTests 10 10 0 0 45ms
✅ TPPBookRegistryStateConcurrencyTests 2 2 0 0 398ms
✅ TPPBookRegistryStateManagementTests 11 11 0 0 123ms
✅ TPPBookRegistrySyncContractTests 4 1 0 3 164ms
✅ TPPBookRegistryThreadSafetyTests 3 3 0 0 211ms
✅ TPPBookRegistryUpdateAndRemoveTests 1 1 0 0 13ms
✅ TPPBookRequiresAdobeDRMTests 6 6 0 0 37ms
✅ TPPBookSerializationTests 13 13 0 0 91ms
✅ TPPBookStateInitializationTests 4 4 0 0 19ms
✅ TPPBookStateTests 4 4 0 0 17ms
✅ TPPBookTests 98 98 0 0 2.72s
✅ TPPBookmarkDeletionLogTests 11 11 0 0 67ms
✅ TPPBookmarkFactoryInitTests 2 2 0 0 6ms
✅ TPPBookmarkFactoryServerAnnotationEdgeCaseTests 5 5 0 0 174ms
✅ TPPBookmarkFactoryTests 15 15 0 0 179ms
✅ TPPBookmarkR3ConversionTests 5 5 0 0 125ms
✅ TPPBookmarkR3LocationTests 13 13 0 0 115ms
✅ TPPBookmarkSpecTests 1 1 0 0 5ms
✅ TPPCachingTests 3 3 0 0 32ms
✅ TPPCapturedCredentialsTests 5 5 0 0 181ms
✅ TPPCirculationAnalyticsRequestShapeContractTests 2 2 0 0 34ms
✅ TPPConfigurationCustomRegistryTests 16 16 0 0 70ms
✅ TPPConfigurationTests 22 22 0 0 234ms
✅ TPPContentTypeTests 9 9 0 0 29ms
✅ TPPCredentialConcurrencyTests 3 3 0 0 195ms
✅ TPPCredentialIsolationE2ETests 5 0 0 5 197ms
✅ TPPCredentialPersistenceTests 6 6 0 0 603ms
✅ TPPCredentialSnapshotCoherenceTests 3 0 0 3 19ms
✅ TPPCredentialSnapshotTests 8 8 0 0 69ms
✅ TPPCredentialsCoverageTests 9 9 0 0 237ms
✅ TPPCredentialsTests 26 26 0 0 191ms
✅ TPPCrossLibrarySignOutTests 6 6 0 0 1.86s
✅ TPPDRMFailureCredentialPreservationTests 4 4 0 0 197ms
✅ TPPErrorLoggerTests 27 27 0 0 124ms
✅ TPPIdleSignOutRegressionTests 13 13 0 0 1.74s
✅ TPPJWKConversionTest 1 1 0 0 16ms
✅ TPPKeychainManagerTests 5 5 0 0 420ms
✅ TPPLastReadPositionPosterTests 13 13 0 0 108ms
✅ TPPLastReadPositionSynchronizerIntegrationTests 5 5 0 0 28ms
✅ TPPLastReadPositionSynchronizerTests 23 23 0 0 75ms
✅ TPPLastReadPositionSynchronizer_BehaviorDocumentationTests 5 5 0 0 10ms
✅ TPPLastReadPositionSynchronizer_BookLocationTests 9 9 0 0 31ms
✅ TPPLastReadPositionSynchronizer_ConcurrencyTests 3 3 0 0 53ms
✅ TPPLastReadPositionSynchronizer_ReadiumBookmarkTests 9 9 0 0 17ms
✅ TPPLastReadPositionSynchronizer_SyncLogicTests 10 10 0 0 32ms
✅ TPPLastReadPositionSynchronizer_WriterDelegationTests 4 4 0 0 76ms
✅ TPPLoginNoActivationTests 3 3 0 0 256ms
✅ TPPMainThreadCheckerTests 4 4 0 0 14ms
✅ TPPMigrationManagerTests 15 15 0 0 96ms
✅ TPPNetworkExecutorAPITests 14 14 0 0 483ms
✅ TPPNetworkExecutorConcurrencyTests 4 4 0 0 624ms
✅ TPPNetworkExecutorStubbedTests 17 17 0 0 118ms
✅ TPPNetworkExecutorTests 3 3 0 0 17ms
✅ TPPNetworkResponderAuthCoordinatorTests 5 5 0 0 64ms
✅ TPPNetworkResponderSizeLimitTests 5 5 0 0 238ms
✅ TPPNetworkResponderTests 12 12 0 0 81ms
✅ TPPOPDSAcquisitionPathTests 5 5 0 0 28ms
✅ TPPOPDSEntryTests 5 5 0 0 456ms
✅ TPPOPDSFeedTests 3 3 0 0 83ms
✅ TPPOPDSGroupSwiftTests 3 3 0 0 13ms
✅ TPPOPDSLinkTests 7 7 0 0 41ms
✅ TPPOpenSearchDescriptionExpandedTests 10 10 0 0 34ms
✅ TPPOpenSearchDescriptionTests 1 1 0 0 1ms
✅ TPPPDFDocumentMetadataTests 15 15 0 0 93ms
✅ TPPPDFDocumentTests 8 8 0 0 2.11s
✅ TPPPDFLocationCoverageTests 7 7 0 0 35ms
✅ TPPPDFLocationTests 10 10 0 0 36ms
✅ TPPPDFPageBookmarkTests 9 9 0 0 52ms
✅ TPPPDFPageTests 5 5 0 0 54ms
✅ TPPPDFReaderModeTests 6 6 0 0 46ms
✅ TPPPDFReaderSearchBindingTests 3 3 0 0 4ms
✅ TPPPerAccountIsolationTests 8 0 0 8 276ms
✅ TPPPreferredAuthSelectionTests 8 8 0 0 317ms
✅ TPPProblemDocumentCacheManagerTests 12 12 0 0 85ms
✅ TPPProblemDocumentTests 21 21 0 0 80ms
✅ TPPReaderAppearanceTests 4 4 0 0 6ms
✅ TPPReaderBlockNavigationTests 12 12 0 0 367ms
✅ TPPReaderBookmarksBusinessLogicTests 12 12 0 0 762ms
✅ TPPReaderBookmarksReadinessTests 2 2 0 0 66ms
✅ TPPReaderFontTests 4 4 0 0 7ms
✅ TPPReaderFootnoteAccessibilityTests 16 16 0 0 41ms
✅ TPPReaderPageListBusinessLogicTests 27 27 0 0 463ms
✅ TPPReaderPositionReportTests 10 10 0 0 92ms
✅ TPPReaderPreferencesLoadTests 3 3 0 0 41ms
✅ TPPReaderSettingsTests 28 28 0 0 153ms
✅ TPPReaderTOCBusinessLogicTests 15 15 0 0 87ms
✅ TPPReaderTOCFlattenTests 2 2 0 0 26ms
✅ TPPReadiumBookmarkLocationMatchingTests 5 5 0 0 7ms
✅ TPPReadiumBookmarkTests 23 23 0 0 59ms
✅ TPPReauthenticatorMockTests 2 2 0 0 2ms
✅ TPPReauthenticatorTests 4 4 0 0 175ms
✅ TPPReturnPromptHelperTests 5 5 0 0 82ms
✅ TPPSAMLCookieExpirationTests 7 7 0 0 31ms
✅ TPPSAMLFlowTests 10 10 0 0 218ms
✅ TPPSAMLReauthFlowTests 2 2 0 0 67ms
✅ TPPSAMLRegressionTests 4 4 0 0 90ms
✅ TPPSAMLSignInTests 26 26 0 0 4.10s
✅ TPPSAMLStateIsolationTests 4 4 0 0 117ms
✅ TPPSAMLStateMachineTests 6 6 0 0 272ms
✅ TPPSettingsTests 6 6 0 0 178ms
✅ TPPSignInAdobeSkipTests 14 14 0 0 1.77s
✅ TPPSignInAuthStateTransitionTests 3 3 0 0 375ms
✅ TPPSignInBusinessLogicExtendedTests 58 58 0 0 22.39s
✅ TPPSignInBusinessLogicOAuthTests 11 11 0 0 562ms
✅ TPPSignInBusinessLogicSignOutTests 11 11 0 0 703ms
✅ TPPSignInBusinessLogicStateMachineTests 10 10 0 0 412ms
✅ TPPSignInBusinessLogicTests 23 23 0 0 4.15s
✅ TPPSignInBusinessLogicTokenFlowTests 3 3 0 0 467ms
✅ TPPSignInBusinessLogicValidationCallbackOrderTests 2 2 0 0 84ms
✅ TPPSignInCapabilitiesCharacterizationTests 12 12 0 0 683ms
✅ TPPSignInErrorHandlingTests 2 2 0 0 68ms
✅ TPPSignInProfileDocEdgeCaseTests 3 3 0 0 150ms
✅ TPPSignedInStateProviderTests 3 3 0 0 6ms
✅ TPPUserAccountAuthStateTests 6 6 0 0 32ms
✅ TPPUserAccountConcurrencyTests 1 1 0 0 3ms
✅ TPPUserAccountGapTests 4 4 0 0 24ms
✅ TPPUserAccountIsolationLintTests 3 3 0 0 814ms
✅ TPPUserAccountTestFactoryTests 7 0 0 7 32ms
✅ TPPUserFriendlyErrorTests 11 11 0 0 46ms
✅ TPPUserNotificationsTests 10 10 0 0 126ms
✅ TPPXMLSwiftTests 16 16 0 0 89ms
✅ TPPXMLTests 3 3 0 0 16ms
✅ TabBarModernizationTests 8 8 0 0 46ms
✅ TearDownRequiredLintTests 5 5 0 0 2.04s
✅ TestAppContainerFactoryTests 5 5 0 0 34ms
⚠️ TestTargetHermeticityRegressionTests 4 3 0 0 381ms
✅ TimeEntryTests 3 3 0 0 29ms
✅ TokenRefreshAndRetryQueueTests 9 9 0 0 2.24s
✅ TokenRefreshIntegrationTests 2 2 0 0 909ms
✅ TokenRefreshInterceptorAuthCoordinatorTests 8 8 0 0 105ms
✅ TokenRefreshInterceptorTests 24 24 0 0 342ms
✅ TokenRefreshOnForegroundTests 10 10 0 0 9.92s
✅ TokenRefreshTests 25 25 0 0 75ms
✅ TokenRefreshWatchdogTests 5 5 0 0 32ms
✅ TokenRequestCredentialGuardTests 13 13 0 0 884ms
✅ TokenRequestTests 11 11 0 0 255ms
✅ TokenResponseTests 21 21 0 0 151ms
✅ TriageBotKeyAdminTests 4 4 0 0 20ms
✅ TypographyPresetTests 21 21 0 0 167ms
✅ TypographyServiceTests 31 31 0 0 761ms
✅ TypographySettingsViewModelTests 27 27 0 0 690ms
✅ UIAlertCACommitGuardTests 9 9 0 0 505ms
✅ UIColor_NYPLAdditionsTests 1 1 0 0 1ms
✅ URLBackupExclusionTests 3 3 0 0 12ms
✅ URLExtensionTests 16 16 0 0 73ms
✅ URLExtensionsTests 11 11 0 0 50ms
✅ URLRequestExtensionsCoverageTests 3 3 0 0 5ms
✅ URLRequestExtensionsTests 11 11 0 0 29ms
✅ URLRequestNYPLAdditionsTests 11 11 0 0 45ms
✅ URLRequest_NYPLTests 1 1 0 0 2ms
✅ URLResponseAuthenticationTests 10 10 0 0 38ms
✅ URLResponseNYPLTests 14 14 0 0 64ms
✅ URLSessionCredentialStorageTests 3 3 0 0 5ms
✅ URLSessionStubbingResetTests 2 2 0 0 27ms
✅ URLTypeTests 2 2 0 0 21ms
✅ URLValidationTests 5 5 0 0 14ms
✅ UnifiedOPDSServiceStateMachineTests 2 2 0 0 91ms
✅ UserAccountPublisherAuthStateTests 5 5 0 0 30ms
✅ UserAccountPublisherTests 14 14 0 0 285ms
✅ UserAccountValidationTests 11 11 0 0 574ms
✅ UserDefaultsIsolationLintTests 2 2 0 0 651ms
✅ UserProfileDocumentTests 7 7 0 0 82ms
✅ UserRetryTrackerTests 10 10 0 0 32ms
✅ XCTestCase_testUserDefaultsTests 3 3 0 0 23ms
✅ iPadOnMacRMSDKGuardTests 7 7 0 0 20ms

📊 Full interactive matrix: report

Failed tests
BookRegistrySyncTests.Retry 2
NetworkExecutorResponseRegressionTests.Retry 1
PalacePreferencesSettingsRoundTripTests.First Run

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

📊 Testing Coverage Breakdown

Unit Test Line Coverage (testable surfaces): 45.2%

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).

📈 What changed vs. base

Test count: +1

⚠️ New failures — passing on base, failing on this branch
BookRegistrySyncTests.Retry 2
NetworkExecutorResponseRegressionTests.Retry 1
PalacePreferencesSettingsRoundTripTests.First Run

🔗 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)

… tripped by a comment

CI `tooling-integrity` (check-appcontainer-locator-count.sh) counts the literal
`AppContainer.production()` by substring — including in comments — and the
seam's header prose mentioned it, pushing the out-of-allowlist count 304 -> 305
(+1) and failing the ratchet. The reference was descriptive only (contrasting the
S3 injected-provider path against reaching the composition root); reworded to drop
the literal. No behavior/API change; locator back to baseline 304.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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