Skip to content

refactor(accounts): extract AccountRegistryCache disk-cache collaborator (Wave 3 / 3a-1) - #1361

Open
mauricecarrier7 wants to merge 1 commit into
feat/pp-decomp-3a-account-networkingfrom
feat/pp-decomp-3a1-registry-cache
Open

refactor(accounts): extract AccountRegistryCache disk-cache collaborator (Wave 3 / 3a-1)#1361
mauricecarrier7 wants to merge 1 commit into
feat/pp-decomp-3a-account-networkingfrom
feat/pp-decomp-3a1-registry-cache

Conversation

@mauricecarrier7

Copy link
Copy Markdown
Contributor

Stacked on #1360 (feat/pp-decomp-3a-account-networking). Review/merge #1360 first; this PR's diff is only the 3a-1 changes on top. GitHub will retarget it to develop once #1360 merges.

What & why

First of the 3a PalaceAccounts in-target collaborator splits (per the wave-3 decomposition plan). The on-disk catalog cache concern — the CatalogCacheMetadata value type and the FileManager read/write/staleness/clear bodies — moves out of the 2383-LOC AccountsManager god class into an injected AccountRegistryCaching collaborator. After this the hub carries no disk-I/O body, so a packaged AccountsManager names no FileManager cache code. Behaviour-identical.

This is the safest leaf of the six-collaborator sub-wave (0 external facade sites).

Changes

  • New AccountRegistryCache.swift:
    • CatalogCacheMetadata relocated verbatim (same name/internal access — 7 test files + @testable keep compiling). Gains the pure static isCacheStale(metadata:serverMaxAge:) (it is metadata logic).
    • protocol AccountRegistryCaching: SendableSendable because catalog writes run inside the loader's owned-crawl @Sendable Tasks. Stateless DiskAccountRegistryCache impl ⇒ Sendable for free.
    • A protocol-extension writeCatalogData(_:hash:) restores the isBundled:false default the any AccountRegistryCaching existential erases (the hub's network-write sites rely on it).
  • Hub (AccountsManager.swift): deleted the metadata type + 9 disk helpers + the clearCache() file loop; injected registryCache via init default (DiskAccountRegistryCache()); retyped ~20 call sites to registryCache.*. Kept the two switch-pipeline pure helpers (shouldPopToRoot/shouldFinishSwitchingImmediately) that shared the MARK.
  • Tests: repointed 5 AccountsManagerHelpersTests refs to CatalogCacheMetadata.isCacheStale; new AccountRegistryCacheSeamTests (clearCache routing via spy + real DiskAccountRegistryCache round-trip + bundled-staleness + convenience-write); new makeFreshAccountsManager(defaults:registryCache:) helper.

Verification

Gate Result
Cache suites (metadata/cache/cacheRead/helpers/launch-snapshot + new seam) 69/0
Wiring suite (isolation) + switch contract + MetaTests 23/0
Palace-noDRM build (not in CI) BUILD SUCCEEDED
God-class LOC freeze re-baselined DOWN 2383 → 2173 (−210)
Locator / shared-read / contract-snapshot drift 304 / 213 / zero
Package-purity (no AppContainer/MBDC/ImageCache.shared in the new file) clean

Review rigor

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

Not in this PR

carveSlimFeed relocation (pure JSON carve, not cache I/O; hub caller + 5 test refs stay). The remaining five 3a collaborators (Store → AuthDocumentLoader → RegistryLoader → CredentialResolver → CurrentAccountStore) are separate PRs per the sub-wave plan.

🤖 Generated with Claude Code

…tor (Wave 3 / 3a-1)

First of the 3a in-target collaborator splits out of the AccountsManager god
class. The on-disk catalog cache concern — the `CatalogCacheMetadata` value type
and the FileManager read/write/staleness/clear bodies — moves behind an injected
`AccountRegistryCaching` seam so the hub carries no disk I/O and a packaged
`AccountsManager` names no FileManager cache body. Behaviour-identical.

Stacked on #1360 (AccountNetworking) because it edits clearCache() adjacent to
that seam's networkExecutor.clearCache().

- New `AccountRegistryCache.swift`: `CatalogCacheMetadata` (relocated verbatim,
  same name/access — 7 test files keep compiling; gains the pure
  `static isCacheStale(metadata:serverMaxAge:)` that is metadata logic), the
  `AccountRegistryCaching` protocol (Sendable — writes run inside the loader's
  owned-crawl @sendable Tasks), and the stateless `DiskAccountRegistryCache` impl.
  A protocol-extension `writeCatalogData(_:hash:)` restores the isBundled:false
  default the `any` existential erases.
- Hub: deleted the metadata type + 9 disk helpers + the clearCache file loop;
  injected `registryCache` via init default (DiskAccountRegistryCache()); retyped
  ~20 call sites to `registryCache.*`. Kept the two switch-pipeline pure helpers
  (shouldPopToRoot / shouldFinishSwitchingImmediately) that shared the MARK.
- Tests: repointed 5 `AccountsManagerHelpersTests` refs to
  `CatalogCacheMetadata.isCacheStale`; new `AccountRegistryCacheSeamTests` (clearCache
  routing via spy + real DiskAccountRegistryCache round-trip + bundled-staleness +
  convenience-write); new `makeFreshAccountsManager(defaults:registryCache:)` helper.

Verified: cache suites 69/0, wiring(isolation)+switch-contract+MetaTests 23/0,
Palace-noDRM BUILD SUCCEEDED. God-class freeze re-baselined DOWN 2383 -> 2173
(-210); locator 304 / shared-read 213 at baseline; zero contract-snapshot drift.
Architect APPROVED the fix-contract pre-implementation.

**Scope:** the disk-cache concern (metadata + FileManager bodies) out of
AccountsManager into an injected collaborator; Accounts area only.
**Not done:** `carveSlimFeed` relocation (pure JSON carve, not cache I/O; hub caller
+ 5 test refs stay) — deferred. `DiskAccountRegistryCache`'s FileManager bodies are
covered end-to-end by the new round-trip test + the existing cache suites via the
public API; the spy tests intentionally bypass disk.
**Deferred:** the remaining five 3a collaborators (Store, AuthDocumentLoader,
RegistryLoader, CredentialResolver, CurrentAccountStore) are separate PRs per the
sub-wave plan.

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

Copy link
Copy Markdown

🧪 Unit Test Results

📊 View Full Interactive Report

❌ 1 TEST FAILED

8188 tests | 8047 passed | 1 failed | 138 skipped | ⏱️ 16m 4s | 📊 98.3% | 📈 45.1% coverage

All 944 classes — 1 with failures (full matrix)
Class Tests Passed Failed Skipped Duration
✅ AccessLintComplianceTests 11 11 0 0 589ms
✅ AccessibilityAnnouncementCenterTests 20 20 0 0 1.71s
✅ AccessibilityLabelTests 9 9 0 0 719ms
✅ AccessibilityPreferencesTests 26 26 0 0 400ms
✅ AccessibilityServiceTests 11 11 0 0 88ms
✅ AccountAuthDocCarryoverTests 5 5 0 0 305ms
✅ AccountAuthSurfaceHostsTests 7 7 0 0 31ms
✅ AccountAwareNetworkTests 10 10 0 0 950ms
✅ AccountDetailCredentialStateTests 7 0 0 7 144ms
✅ AccountDetailPINVisibilityTests 25 0 0 25 4.15s
✅ AccountDetailSignOutConfirmationTests 2 0 0 2 47ms
✅ AccountDetailViewModelGapTests 1 1 0 0 284ms
✅ AccountDetailViewModelLeakTests 1 1 0 0 110ms
✅ AccountDetailViewModelSignedInDerivationTests 5 0 0 5 245ms
✅ AccountDetailViewModelTests 19 0 0 19 1.51s
✅ AccountDetailsAuthenticationIsBrowserBasedTests 10 10 0 0 86ms
✅ AccountDetailsNeedsAuthAggregateTests 10 10 0 0 154ms
✅ AccountDetailsURLTests 17 17 0 0 275ms
✅ AccountErrorReportingTests 1 1 0 0 7ms
✅ AccountModelGapTests 9 9 0 0 674ms
✅ AccountModelTests 20 20 0 0 117ms
✅ AccountNetworkingSeamTests 2 2 0 0 98ms
✅ AccountProfileDocumentTests 3 3 0 0 14ms
✅ AccountRegistryCacheSeamTests 3 3 0 0 219ms
✅ AccountScopeAdapterTests 4 4 0 0 611ms
✅ AccountStateMachineTests 13 13 0 0 533ms
✅ AccountSwitchBorrowReauthCouplingContractTests 4 4 0 0 522ms
✅ AccountSwitchCleanupTests 8 8 0 0 466ms
✅ AccountSwitchIntegrationTests 8 8 0 0 168ms
✅ AccountSwitchLifecycleTests 9 0 0 9 174ms
✅ AccountsManagerAccountIndexTests 7 7 0 0 98ms
✅ AccountsManagerAuthDocContractTests 1 1 0 0 265ms
✅ AccountsManagerCacheReadTests 4 4 0 0 450ms
✅ AccountsManagerCacheTests 16 16 0 0 216ms
✅ AccountsManagerCancellationTests 5 5 0 0 602ms
✅ AccountsManagerCatalogLoadJoinTests 3 3 0 0 536ms
✅ AccountsManagerCurrentAccountSwitchContractTests 5 5 0 0 1.68s
✅ AccountsManagerFirstRunDecodeTests 3 3 0 0 401ms
✅ AccountsManagerGapTests 3 3 0 0 36ms
✅ AccountsManagerHelpersTests 12 12 0 0 797ms
✅ AccountsManagerIsolationLintTests 4 4 0 0 1.49s
✅ AccountsManagerLaunchSnapshotTests 13 13 0 0 3.29s
✅ AccountsManagerStateMachineWiringTests 18 18 0 0 27.23s
✅ AccountsManagerTests 51 48 0 3 11.32s
✅ ActiveSessionsViewModelTests 12 12 0 0 848ms
✅ AdobeActivationTests 6 6 0 0 55ms
✅ AdobeCertificateGapTests 7 7 0 0 74ms
✅ AdobeDRMCharacterizationTests 21 21 0 0 2.25s
✅ AdobeDRMErrorGapTests 3 3 0 0 37ms
✅ AdobeDRMHandlerTests 12 12 0 0 372ms
✅ AdobeDRMServiceGapTests 2 2 0 0 4ms
✅ AlertModelCoverageTests 6 6 0 0 42ms
✅ AlertModelRetryTests 7 7 0 0 29ms
✅ AlertModelTests 2 2 0 0 42ms
✅ AlertPresentationRawGuardLintTests 6 6 0 0 30ms
✅ AlertUtilsTests 20 20 0 0 763ms
✅ AnnotationContractTests 3 3 0 0 1.03s
✅ AnnotationDeviceIDTests 2 2 0 0 692ms
✅ AnnotationPostResponseContractTests 1 1 0 0 6ms
✅ AnnouncementChainTests 5 5 0 0 30ms
✅ AnnouncementTests 3 3 0 0 70ms
✅ AnonymousBorrowBaselineFixtureTests 13 13 0 0 305ms
✅ AnonymousBorrowCandidateFixtureTests 6 6 0 0 64ms
✅ AnonymousBorrowDeltaTests 2 2 0 0 60ms
✅ AppContainerAudiobookFactoryTests 3 3 0 0 18ms
✅ AppContainerAuthCoordinatorRegistrationTests 3 3 0 0 85ms
✅ AppContainerImageLoaderInjectionTests 4 4 0 0 66ms
✅ AppContainerIsolationLintTests 7 7 0 0 2.24s
✅ AppContainerResetTests 5 5 0 0 145ms
✅ AppContainerTests 5 5 0 0 196ms
✅ AppContainerWithSignInModalSheetPresenterTests 2 2 0 0 26ms
✅ AppHealthViewModelTests 8 8 0 0 153ms
✅ AppLaunchTrackerExtendedTests 16 16 0 0 674ms
✅ AppLaunchTrackerTests 10 10 0 0 421ms
✅ AppLaunchTrackerWiringTests 2 2 0 0 57ms
✅ AppRatingServiceOverrideTests 3 3 0 0 45ms
✅ AppRatingServiceTests 9 9 0 0 70ms
✅ AppRouteTests 5 5 0 0 133ms
✅ AppTabHostMiniPlayerIntegrationTests 6 6 0 0 427ms
✅ AppTabHostViewBadgeCountTests 10 10 0 0 472ms
✅ AppTabRouterCoverageTests 4 4 0 0 110ms
✅ AppTabRouterGapTests 3 3 0 0 685ms
✅ ArrayExtensionsTests 6 6 0 0 35ms
✅ AudioBookmarkGapTests 6 6 0 0 106ms
✅ AudioEngineWrapperTests 8 8 0 0 268ms
✅ AudioInterruptionLogicTests 6 6 0 0 302ms
✅ AudioSessionActivatorTests 8 8 0 0 76ms
✅ AudiobookAccessibilityTests 7 7 0 0 62ms
✅ AudiobookBackgroundAudioTests 2 2 0 0 81ms
✅ AudiobookBearerTokenRecoveryTests 21 21 0 0 5.18s
✅ AudiobookBookmarkBusinessLogicConcurrencyTests 3 3 0 0 249ms
✅ AudiobookBookmarkBusinessLogicPositionWriteTests 8 8 0 0 291ms
✅ AudiobookBookmarkBusinessLogicTests 21 21 0 0 5.57s
✅ AudiobookChapterTOCNormalizationTests 6 6 0 0 23ms
✅ AudiobookColdLoadRecoveryTests 4 4 0 0 25ms
✅ AudiobookContentGateTests 11 11 0 0 443ms
✅ AudiobookCrossVendorSmokeTests 4 4 0 0 100ms
✅ AudiobookDataManagerEmptyQueueTests 1 1 0 0 50ms
✅ AudiobookDataManagerErrorHandlingTests 5 5 0 0 298ms
✅ AudiobookDataManagerModelsTests 20 20 0 0 381ms
✅ AudiobookDataManagerNetworkSyncTests 5 5 0 0 311ms
✅ AudiobookDataManagerSaveTests 4 4 0 0 34ms
✅ AudiobookDataManagerStoreRecoveryTests 5 5 0 0 42ms
✅ AudiobookFileLoggerTests 15 15 0 0 396ms
✅ AudiobookFirstOpenHangTests 14 14 0 0 1.76s
✅ AudiobookLoadFailureSAMLReauthTests 10 10 0 0 725ms
✅ AudiobookLoaderDispatchTests 7 7 0 0 3.55s
✅ AudiobookLoaderFinalizeBuildTests 11 11 0 0 2.44s
✅ AudiobookLoaderOPDSShapeMatrixTests 8 0 0 8 1.31s
✅ AudiobookLoaderPredicateTests 11 11 0 0 47ms
✅ AudiobookLoaderTests 2 2 0 0 88ms
✅ AudiobookMorphingPlayerViewTests 20 20 0 0 576ms
✅ AudiobookNetworkValidationTests 3 3 0 0 5ms
✅ AudiobookOpenStateRaceTests 3 3 0 0 1.38s
✅ AudiobookPhoneAlertContentTests 3 3 0 0 48ms
✅ AudiobookPlaybackStateTests 3 3 0 0 280ms
✅ AudiobookPlaybackTests 26 26 0 0 2.06s
✅ AudiobookPlaytimesLifecycleTests 6 6 0 0 245ms
✅ AudiobookPositionAdapterContractTests 3 3 0 0 95ms
✅ AudiobookPositionPolicyValidatorTests 14 14 0 0 99ms
✅ AudiobookPositionRestoreTests 20 20 0 0 2.64s
✅ AudiobookReadinessPlaybackContractTests 2 2 0 0 1.20s
✅ AudiobookSAMLReauthTests 6 6 0 0 108ms
✅ AudiobookSessionErrorDescriptionTests 4 4 0 0 36ms
✅ AudiobookSessionErrorExtTests 4 4 0 0 837ms
✅ AudiobookSessionErrorTests 3 3 0 0 16ms
✅ AudiobookSessionManagerErrorMappingTests 6 6 0 0 507ms
✅ AudiobookSessionManagerFlagGatePresentationTests 4 4 0 0 253ms
✅ AudiobookSessionManagerPresenterMigrationTests 10 10 0 0 159ms
✅ AudiobookSessionManagerShutdownTests 14 14 0 0 2.07s
✅ AudiobookSessionPresenterLifecycleContractTests 3 3 0 0 75ms
✅ AudiobookSessionPresenterTests 31 31 0 0 480ms
✅ AudiobookSessionStateTests 6 6 0 0 74ms
✅ AudiobookSessionStateTransitionTests 22 22 0 0 532ms
✅ AudiobookSkipIntervalSettingsTests 7 7 0 0 63ms
✅ AudiobookSleepTimerIntegrationTests 5 5 0 0 562ms
✅ AudiobookStorageLocationTests 3 3 0 0 6ms
✅ AudiobookTOCTests 18 18 0 0 230ms
✅ AudiobookTimeEntryTests 6 6 0 0 833ms
✅ AudiobookTimeTrackerEdgeTests 8 8 0 0 152ms
✅ AudiobookTimeTrackerLifecycleTests 5 5 0 0 1.14s
✅ AudiobookTimeTrackerTests 9 9 0 0 213ms
✅ AudiobookTrackCompletionTests 2 2 0 0 60ms
✅ AudiobookTypeRoutingTests 5 5 0 0 27ms
✅ AudiobookVendorAdapterTests 5 5 0 0 183ms
✅ AudiobookVendorRecoveryContractTests 1 1 0 0 61ms
✅ AudiobookmarkTests 4 4 0 0 71ms
✅ AuthCoordinatorTelemetryTests 5 5 0 0 40ms
✅ AuthDecisionEventEmissionTests 7 7 0 0 52ms
✅ AuthDocumentContractTests 2 2 0 0 5ms
✅ AuthDocumentVariantsContractTests 5 5 0 0 109ms
✅ AuthErrorCategoryTests 12 12 0 0 2.35s
✅ AuthErrorProblemDocSeamTests 6 6 0 0 64ms
✅ AuthFlowSecurityTests 3 0 0 3 329ms
✅ AuthReducerTests 21 21 0 0 147ms
✅ AuthTypeTests 7 7 0 0 59ms
✅ AuthenticationTests 16 16 0 0 1.82s
✅ BackgroundDownloadHandlerTests 28 28 0 0 1.32s
✅ BackgroundListenerTests 2 2 0 0 20ms
✅ BackgroundReconciliationContractTests 8 8 0 0 255ms
✅ BackgroundSessionRoutingTests 6 6 0 0 23ms
✅ BackupExclusionMigrationTests 3 3 0 0 34ms
✅ BadgeDefinitionTests 33 33 0 0 122ms
✅ BadgeServiceTests 16 16 0 0 175ms
✅ BadgeUnlockPhaseTests 4 4 0 0 21ms
✅ BadgesViewModelTests 14 14 0 0 779ms
✅ BasicAuthEmptyCredentialTests 4 4 0 0 561ms
✅ BearerTokenAdapterTests 5 4 0 1 96ms
✅ BearerTokenFulfillFlowTests 4 4 0 0 205ms
✅ BearerTokenRefreshTests 4 4 0 0 1.01s
✅ BearerTokenResponseDetectionTests 7 7 0 0 32ms
✅ BeginningPositionPolicyTests 8 8 0 0 381ms
✅ BookAvailabilityFormatterTests 18 18 0 0 849ms
✅ BookButtonMapperHoldReadyTests 10 10 0 0 82ms
✅ BookButtonMapperTests 21 21 0 0 159ms
✅ BookButtonMapperViewModelTests 18 18 0 0 116ms
✅ BookButtonStateTests 8 8 0 0 1.24s
✅ BookButtonTypeMetaTests 4 4 0 0 173ms
✅ BookButtonTypeTests 13 13 0 0 290ms
✅ BookCellModelActionTests 18 18 0 0 724ms
✅ BookCellModelCacheInvalidationTests 9 9 0 0 126ms
✅ BookCellModelCachePrefetchSafetyTests 9 9 0 0 266ms
✅ BookCellModelCacheTests 22 22 0 0 703ms
✅ BookCellModelComputedPropertyTests 19 19 0 0 420ms
✅ BookCellModelOfflineTests 9 9 0 0 189ms
✅ BookCellModelRegistryBindingTests 4 4 0 0 134ms
✅ BookCellModelStateTests 16 16 0 0 242ms
✅ BookCellModelStreamingHTMLTests 2 2 0 0 134ms
✅ BookCellStateComprehensiveTests 14 14 0 0 541ms
✅ BookContentResetServiceTests 2 2 0 0 672ms
✅ BookDetailMetadataHydrationTests 6 6 0 0 75ms
✅ BookDetailMetadataMergeContractTests 5 5 0 0 125ms
✅ BookDetailOpenRoutingTests 3 3 0 0 85ms
✅ BookDetailViewModelAudiobookDismissTests 1 1 0 0 23ms
✅ BookDetailViewModelTests 91 91 0 0 5.62s
✅ BookFileManagerAccountScopingTests 5 5 0 0 164ms
✅ BookFileManagerSideloadResolutionTests 4 4 0 0 234ms
✅ BookFileManagerTests 8 8 0 0 1.53s
✅ BookListViewAccessibilityTests 9 9 0 0 260ms
✅ BookPreviewTests 4 4 0 0 32ms
✅ BookRegistryStoreTests 26 26 0 0 420ms
✅ BookRegistrySyncReadinessTests 4 3 0 1 734ms
✅ BookRegistrySyncReentrancyTests 6 6 0 0 4.24s
✅ BookRegistrySyncSideloadExemptionTests 2 0 0 2 341ms
✅ BookRegistrySyncTests 36 31 0 5 4.54s
✅ BookReturnCleverReauthTests 1 1 0 0 466ms
✅ BookReturnServiceAuthCoordinatorTests 3 3 0 0 210ms
✅ BookReturnServiceContractTests 9 9 0 0 3.19s
✅ BookReturnServiceTests 18 18 0 0 1.67s
✅ BookServiceAudiobookOpenTests 2 2 0 0 25ms
✅ BookSignInRedirectHandlerTests 8 8 0 0 137ms
✅ BookStateIntegrationTests 8 8 0 0 170ms
✅ BookmarkBusinessLogicExtendedTests 6 6 0 0 1.96s
✅ BookmarkDeletionLogTests 3 3 0 0 543ms
✅ BookmarkDeviceIdMatchingTests 3 3 0 0 409ms
✅ BookmarkExistenceTests 4 4 0 0 245ms
✅ BookmarkManagerTests 24 24 0 0 480ms
✅ BookmarkSortingTests 1 1 0 0 71ms
✅ BookmarkSyncTests 3 3 0 0 3.49s
✅ BorrowAndDownloadIntegrationTests 7 7 0 0 479ms
✅ BorrowErrorMessageTests 13 13 0 0 252ms
✅ BorrowErrorPresenterTests 6 6 0 0 336ms
✅ BorrowOperationAuthCoordinatorTests 6 6 0 0 466ms
✅ BorrowOperationCleverReauthTests 2 2 0 0 415ms
✅ BorrowOperationContractTests 8 8 0 0 698ms
✅ BorrowOperationStreamingHTMLTests 3 3 0 0 406ms
✅ BorrowOperationTests 13 13 0 0 1.35s
✅ BorrowOperationTimeoutTests 3 3 0 0 196ms
✅ BorrowReauthResettingTests 4 4 0 0 1.15s
✅ BorrowReducerContractTests 2 2 0 0 26ms
✅ BorrowReducerCoreContractTests 12 12 0 0 1.03s
✅ BorrowReducerTests 21 21 0 0 86ms
✅ BundledRegistrySnapshotTests 5 5 0 0 1.21s
✅ ButtonStateMonotonicClampTests 10 10 0 0 1.68s
✅ ButtonStateTests 16 16 0 0 761ms
✅ ButtonStyleTypeTests 2 2 0 0 8ms
✅ C64ConversionTests 6 6 0 0 6ms
✅ CarPlayAudiobookBridgePresenterMigrationTests 2 2 0 0 270ms
✅ CarPlayAuthHelperReadinessTests 3 3 0 0 573ms
✅ CarPlayChapterListTests 3 3 0 0 20ms
✅ CarPlayIntegrationTests 2 2 0 0 326ms
✅ CarPlayLibraryRefreshTests 3 3 0 0 33ms
✅ CarPlayNowPlayingTemplateTests 4 4 0 0 516ms
✅ CarPlayOpenAppAlertTests 6 6 0 0 815ms
✅ CarPlayPlaybackErrorTests 8 8 0 0 571ms
✅ CarPlayTests 12 12 0 0 61ms
✅ CarPlayTimeTrackingTests 3 3 0 0 99ms
✅ CatalogAPIDedupeTests 3 3 0 0 448ms
✅ CatalogAPIEntryPointTests 1 1 0 0 2ms
✅ CatalogAccessibilityTests 8 8 0 0 332ms
✅ CatalogCacheKeyAndIsolationTests 12 12 0 0 1.27s
✅ CatalogCacheMetadataExactBoundaryTests 4 4 0 0 7ms
✅ CatalogCacheMetadataTests 21 21 0 0 286ms
✅ CatalogCrawlSchedulerTests 9 9 0 0 49ms
✅ CatalogFeedModelTests 4 4 0 0 405ms
✅ CatalogFilterGroupModelTests 17 17 0 0 188ms
✅ CatalogFilterModelTests 17 17 0 0 86ms
✅ CatalogFilterServiceTests 29 29 0 0 795ms
✅ CatalogFilterTests 1 1 0 0 2ms
✅ CatalogLaneAssemblyTests 7 7 0 0 68ms
✅ CatalogLaneModelStructTests 20 20 0 0 242ms
✅ CatalogLaneModelTests 3 3 0 0 925ms
✅ CatalogLaneMoreFilterStateTests 8 8 0 0 101ms
✅ CatalogLaneMoreViewModelTests 43 43 0 0 340ms
✅ CatalogLaneRowViewAccessibilityTests 11 11 0 0 139ms
✅ CatalogLaneSortingTests 5 5 0 0 123ms
✅ CatalogLoadIntegrationTests 6 6 0 0 85ms
✅ CatalogOPDS2NegotiationTests 12 12 0 0 3.68s
✅ CatalogPreloaderTests 6 6 0 0 373ms
✅ CatalogProblemDocumentTests 6 6 0 0 1.17s
✅ CatalogRepositoryCoreTests 9 9 0 0 397ms
✅ CatalogRepositoryStaleWhileRevalidateTests 12 12 0 0 916ms
✅ CatalogRepositoryTests 19 19 0 0 279ms
✅ CatalogSearchViewModelRegistryUpdateTests 5 5 0 0 89ms
✅ CatalogSearchViewModelTests 67 67 0 0 11.93s
✅ CatalogSelectorsTests 2 2 0 0 6ms
✅ CatalogSortServiceTests 14 14 0 0 434ms
✅ CatalogStateTests 7 7 0 0 42ms
✅ CatalogViewContinueRowsIntegrationTests 3 3 0 0 120ms
✅ CatalogViewLibraryIconTests 2 2 0 0 41ms
✅ CatalogViewModelStateMachineTests 19 19 0 0 418ms
✅ ChaosFaultInjectionTests 5 5 0 0 648ms
✅ ChapterChangeDetectorTests 5 5 0 0 8ms
✅ ChapterTOCNormalizerTests 7 7 0 0 385ms
✅ CirculationAnalyticsTests 4 4 0 0 154ms
✅ ColdStartResumeIntegrationTests 10 10 0 0 6.71s
✅ ColorExtensionTests 5 5 0 0 24ms
✅ ConcurrentBookStateTests 3 3 0 0 27ms
✅ ConcurrentDownloadStateTests 3 3 0 0 20ms
✅ ConcurrentTokenRefreshTests 2 2 0 0 240ms
✅ ContinueRowSectionTests 6 6 0 0 112ms
✅ ContinuousPlaybackTrackingTests 3 3 0 0 1.70s
✅ CookiePersistenceTests 10 10 0 0 992ms
✅ CrawlStateTests 16 16 0 0 85ms
✅ CrawlableFeedAnalysisTests 17 17 0 0 88ms
✅ CrawlerFallbackTests 12 12 0 0 475ms
✅ CredentialEdgeCaseTests 6 6 0 0 27ms
✅ CredentialPrivacyTests 4 4 0 0 10ms
✅ CredentialPromptCoordinatorTests 4 4 0 0 288ms
✅ CredentialSnapshotInvalidationTests 5 0 0 5 97ms
✅ CredentialStoreCharacterizationTests 7 7 0 0 509ms
✅ CrossDeviceBookmarkSyncTests 12 12 0 0 32ms
✅ CrossDeviceSyncE2ETests 8 8 0 0 2.29s
✅ CrossDomain401Tests 8 8 0 0 149ms
✅ CrossFormatMappingTests 14 14 0 0 68ms
✅ DPLAErrorTests 3 3 0 0 11ms
✅ DRMAdversarialTests 4 1 0 3 34ms
✅ DRMFulfilledPublicationTests 6 6 0 0 31ms
✅ DataBase64Tests 3 3 0 0 132ms
✅ DataReceptionComparisonTests 2 2 0 0 359ms
✅ DateExtensionTests 9 9 0 0 1.50s
✅ DateFormattingTests 4 4 0 0 303ms
✅ Date_NYPLAdditionsTests 7 7 0 0 21.63s
✅ DebugSettingsForceSkeletonsTests 4 4 0 0 39ms
✅ DebugSettingsGapTests 4 4 0 0 53ms
✅ DebugSettingsTests 31 31 0 0 794ms
✅ DefaultCatalogAPITests 31 31 0 0 819ms
✅ DefaultRecentlyReadingServiceTests 13 13 0 0 70ms
✅ DeriveInitialStateTests 4 4 0 0 85ms
✅ DeveloperSettingsEngineeringTierTests 4 4 0 0 353ms
✅ DeveloperSettingsViewModelOverrideTests 3 0 0 3 165ms
✅ DeviceLogCollectorGapTests 2 2 0 0 18ms
✅ DeviceLogCollectorTests 13 13 0 0 91ms
✅ DeviceOrientationTests 7 7 0 0 93ms
✅ DeviceSpecificErrorMonitorTests 11 11 0 0 1.51s
✅ DictionaryExtensionsTests 5 5 0 0 36ms
✅ DiskBudgetManagerTests 7 7 0 0 256ms
✅ DiskBudgetTests 2 2 0 0 25ms
✅ DownloadAccountContextAdapterTests 11 11 0 0 528ms
✅ DownloadAlertPresenterTests 8 8 0 0 1.65s
✅ DownloadAnnouncementServiceTests 12 12 0 0 160ms
✅ DownloadAuthRetryHandlerAuthCoordinatorTests 6 6 0 0 2.64s
✅ DownloadAuthRetryHandlerTaskLifecycleTests 4 4 0 0 967ms
✅ DownloadAuthRetryHandlerTests 17 17 0 0 2.04s
✅ DownloadCancellationHandlerTests 5 5 0 0 158ms
✅ DownloadCompleteMomentTests 6 6 0 0 1.89s
✅ DownloadCompletionParserTests 9 9 0 0 1.34s
✅ DownloadCoordinatorIntegrationTests 10 10 0 0 2.66s
✅ DownloadCoordinatorTests 11 11 0 0 130ms
✅ DownloadDiskSpaceTests 2 2 0 0 5ms
✅ DownloadErrorInfoTests 3 3 0 0 7ms
✅ DownloadErrorRecoveryPolicyTests 11 11 0 0 370ms
✅ DownloadErrorRecoveryTests 3 3 0 0 155ms
✅ DownloadFreeSpaceExhaustionTests 11 11 0 0 250ms
✅ DownloadInfoTests 5 5 0 0 50ms
✅ DownloadIntegrityTests 10 10 0 0 2.30s
✅ DownloadOnlyOnWiFiTests 10 10 0 0 276ms
✅ DownloadPersistenceStoreTests 5 5 0 0 167ms
✅ DownloadProgressPublisherCoreTests 19 19 0 0 695ms
✅ DownloadProgressPublisherTests 2 2 0 0 24ms
✅ DownloadQueueIntegrationTests 3 3 0 0 45ms
✅ DownloadQueueOrchestratorTests 9 9 0 0 1.93s
✅ DownloadRMSDKHandoffTests 1 1 0 0 2ms
✅ DownloadReconciliationLaunchOrderContractTests 2 2 0 0 46ms
✅ DownloadReconciliationTests 17 17 0 0 155ms
✅ DownloadRedirectTests 7 7 0 0 313ms
✅ DownloadResumeAfterKillTests 7 7 0 0 20.36s
✅ DownloadSlotManagementTests 5 5 0 0 22ms
✅ DownloadStartCoordinatorContractTests 5 5 0 0 223ms
✅ DownloadStartCoordinatorTests 9 9 0 0 239ms
✅ DownloadStartDispatcherContractTests 12 12 0 0 246ms
✅ DownloadStartDispatcherTests 26 26 0 0 1.19s
✅ DownloadStartReducerContractTests 24 24 0 0 274ms
✅ DownloadStateMachineIntegrationTests 15 15 0 0 92ms
✅ DownloadStateMachineTests 5 5 0 0 377ms
✅ DownloadStateManagerTests 16 16 0 0 326ms
✅ DownloadTaskLifecycleServiceTests 9 9 0 0 69ms
✅ DownloadTaskPersistenceTests 14 14 0 0 112ms
✅ DownloadThrottlingContractTests 2 2 0 0 235ms
✅ DownloadThrottlingServiceTests 10 10 0 0 346ms
✅ DownloadTransferRetryTests 6 6 0 0 2.11s
✅ DownloadWatchdogTests 3 3 0 0 10ms
✅ EPUBKeyCommandsPP4289Tests 4 4 0 0 8ms
✅ EPUBModuleTests 4 4 0 0 37ms
✅ EPUBPositionTests 10 10 0 0 654ms
✅ EPUBSearchViewModelTests 18 18 0 0 394ms
✅ EPUBToolbarToggleTests 11 11 0 0 46ms
✅ EffectBoundaryTests 6 6 0 0 15ms
✅ EmailAddressTests 16 16 0 0 364ms
✅ EpubSampleFactoryTests 5 5 0 0 437ms
✅ ErrorActivityTrackerTests 12 12 0 0 119ms
✅ ErrorDetailTests 14 14 0 0 143ms
✅ ErrorDetailViewControllerGapTests 3 3 0 0 185ms
✅ ErrorDetailViewControllerTests 14 14 0 0 201ms
✅ ErrorLogExporterTests 5 5 0 0 187ms
✅ ExecutorNetworkHermeticityTests 1 1 0 0 84ms
✅ ExpiredLoanStringsTests 5 5 0 0 147ms
✅ FacetEnumTests 3 3 0 0 38ms
✅ FacetToolbarAccessibilityTests 5 5 0 0 40ms
✅ FacetViewModelLogoDelegateTests 4 4 0 0 74ms
✅ FacetViewModelTests 18 18 0 0 132ms
✅ FetchManifestWithBearerTokenLCPSafetyTests 1 1 0 0 8ms
✅ FetchManifestWithBearerTokenTests 9 9 0 0 144ms
✅ FetchOpenAccessManifestLCPSafetyTests 4 4 0 0 41ms
✅ FileURLGenerationTests 3 3 0 0 35ms
✅ FindawayChapterStatusGuardTests 1 1 0 0 75ms
✅ FindawaySavedVsPlayedTests 1 1 0 0 37ms
✅ FloatTPPAdditionsTests 5 5 0 0 13ms
✅ FocusIndicationTests 7 7 0 0 59ms
✅ FontManagerTests 17 17 0 0 556ms
✅ ForceResetTests 6 6 0 0 68ms
✅ GeneralCacheClearOnUpdateTests 3 3 0 0 18ms
✅ GeneralCacheTests 20 20 0 0 435ms
✅ GroupEnumTests 1 1 0 0 10ms
✅ HTMLTextViewTests 70 70 0 0 29.07s
✅ HoldNotificationClassificationTests 2 2 0 0 8ms
✅ HoldsBadgeCountTests 9 9 0 0 69ms
✅ HoldsBookViewModelTests 8 8 0 0 293ms
✅ HoldsReducerTests 11 11 0 0 810ms
✅ HoldsSyncFailureTests 12 12 0 0 1.20s
✅ HoldsViewModelTests 23 23 0 0 801ms
✅ HostFailureTrackerTests 2 2 0 0 13ms
✅ ImageCacheContinuationTests 1 1 0 0 286ms
✅ ImageCacheOffMainIsolationTests 2 2 0 0 188ms
✅ ImageCacheTypeTests 1 1 0 0 43ms
✅ ImageCoverKeyUnificationTests 2 2 0 0 2ms
✅ ImageLoaderTests 14 14 0 0 230ms
✅ InflightFeedFetchesTimeoutTests 4 4 0 0 10.33s
✅ IntExtensionsTests 4 4 0 0 123ms
✅ IsReaderActiveTrackingModifierTests 4 4 0 0 158ms
✅ KeyboardNavigationFKATests 11 11 0 0 66ms
✅ KeyboardNavigationHandlerTests 16 16 0 0 207ms
✅ KeyboardVoiceOverTests 5 5 0 0 127ms
✅ LCPAcquisitionPredicateTests 4 4 0 0 22ms
✅ LCPAdapterTests 8 8 0 0 1.25s
✅ LCPAudiobookURLSchemeTests 4 4 0 0 38ms
✅ LCPAudiobooksTests 21 21 0 0 770ms
✅ LCPBotanCRLGuardTests 5 5 0 0 31ms
✅ LCPCharacterizationTests 31 31 0 0 1.90s
✅ LCPClientTests 9 9 0 0 247ms
✅ LCPFulfillmentHandlerTests 8 8 0 0 664ms
✅ LCPKeychainMigrationTests 3 3 0 0 17ms
✅ LCPLibraryServiceTests 20 20 0 0 266ms
✅ LCPLicenseDocumentDetectionTests 5 5 0 0 64ms
✅ LCPLicenseFilePathTests 3 3 0 0 60ms
✅ LCPOrphanedDownloadRegistryTests 4 4 0 0 228ms
✅ LCPPDFAcquisitionPredicateTests 5 5 0 0 200ms
✅ LCPPDFDiskExtractTests 5 5 0 0 1.75s
✅ LCPPDFOpenProgressTests 13 13 0 0 258ms
✅ LCPPassphraseReadinessTests 2 2 0 0 48ms
✅ LCPSessionIdentifierTests 3 3 0 0 65ms
✅ LegacySAMLProblemDocumentPropagationTests 7 7 0 0 626ms
✅ LibrariesSectionViewModelTests 16 16 0 0 1.19s
✅ LibraryCatalogMergerTests 9 9 0 0 204ms
✅ LibraryRegistryCrawlerTests 15 15 0 0 353ms
✅ LicensesServiceTests 4 4 0 0 516ms
✅ LiveCrawlableParsingTest 4 0 0 4 32ms
✅ LoanEvictionPolicyTests 13 13 0 0 169ms
✅ LoanRenewalServiceTests 9 9 0 0 692ms
✅ LocalBookContentServiceTests 7 7 0 0 79ms
✅ LocalFileAdapterTests 6 5 0 1 524ms
✅ LogTests 13 13 0 0 487ms
✅ LoginKeyboardTests 8 8 0 0 30ms
✅ MainActorHelpersTests 22 22 0 0 3.34s
✅ MappedCatalogBridgeTests 3 3 0 0 21ms
✅ MappedCatalogModelTests 11 11 0 0 398ms
✅ MockBackendExpiredCredentialsTests 3 3 0 0 770ms
✅ MockBackendHoldsTests 3 3 0 0 96ms
✅ MockBackendIntegrationTests 4 4 0 0 277ms
✅ MockBackendLoanLimitTests 2 2 0 0 81ms
✅ MockBackendRouteMatchingTests 4 4 0 0 9ms
✅ MockBackendServerDownTests 1 1 0 0 30ms
✅ MockIsolationLintTests 5 5 0 0 1.98s
✅ MultiLibraryTokenIsolationTests 14 14 0 0 2.46s
✅ MyBooksDownloadCenterAccountIdThreadingTests 7 7 0 0 211ms
✅ MyBooksDownloadCenterAccountScopeSeamTests 3 3 0 0 22ms
✅ MyBooksDownloadCenterAdeptGapTests 3 3 0 0 12ms
✅ MyBooksDownloadCenterConcurrencyTests 22 22 0 0 334ms
✅ MyBooksDownloadCenterEvictionTests 7 7 0 0 94ms
✅ MyBooksDownloadCenterOfflineTests 8 8 0 0 211ms
✅ MyBooksDownloadSessionInvalidationTests 3 3 0 0 65ms
✅ MyBooksSimplifiedBearerTokenTests 17 17 0 0 223ms
✅ MyBooksViewModelBooksPublisherTests 3 3 0 0 68ms
✅ MyBooksViewModelConcurrencyTests 4 4 0 0 49ms
✅ MyBooksViewModelDownloadStateTests 3 3 0 0 56ms
✅ MyBooksViewModelEmptyArrayTests 3 3 0 0 13ms
✅ MyBooksViewModelEmptyStateTests 4 4 0 0 209ms
✅ MyBooksViewModelExtendedTests 15 15 0 0 131ms
✅ MyBooksViewModelFacetIntegrationTests 4 4 0 0 28ms
✅ MyBooksViewModelFacetPublisherTests 5 5 0 0 870ms
✅ MyBooksViewModelFilterSortInteractionTests 2 2 0 0 62ms
✅ MyBooksViewModelFilterTests 9 9 0 0 969ms
✅ MyBooksViewModelGuardConditionsTests 2 2 0 0 308ms
✅ MyBooksViewModelLargeDatasetTests 2 2 0 0 271ms
✅ MyBooksViewModelLoadAccountTests 2 2 0 0 386ms
✅ MyBooksViewModelLoginStateTests 4 4 0 0 370ms
✅ MyBooksViewModelMultipleAuthorSortingTests 3 3 0 0 171ms
✅ MyBooksViewModelNotificationTests 4 4 0 0 449ms
✅ MyBooksViewModelOfflineFilteringTests 3 3 0 0 15ms
✅ MyBooksViewModelPublisherTests 7 7 0 0 47ms
✅ MyBooksViewModelSearchEdgeCaseTests 6 6 0 0 94ms
✅ MyBooksViewModelSearchQueryTests 3 3 0 0 26ms
✅ MyBooksViewModelSortPersistenceTests 3 3 0 0 213ms
✅ MyBooksViewModelSortingIntegrationTests 5 5 0 0 167ms
✅ MyBooksViewModelSortingTests 6 6 0 0 79ms
✅ MyBooksViewModelStateTransitionTests 3 3 0 0 478ms
✅ MyBooksViewModelUIBindingTests 3 3 0 0 24ms
✅ NSErrorAdditionsTests 7 7 0 0 1.87s
✅ NSNotificationTPPTests 3 3 0 0 21ms
✅ NavigationCoordinatorTests 18 18 0 0 392ms
✅ NavigationFreezePreventionTests 5 5 0 0 194ms
✅ NetworkCacheClearRoutingTests 3 3 0 0 47ms
✅ NetworkExecutorCredentialGuardTests 8 8 0 0 133ms
✅ NetworkExecutorResponseRegressionTests 4 4 0 0 55ms
✅ NetworkExecutorTaskTypeTests 3 3 0 0 77ms
✅ NetworkOfflineDetectionTests 3 3 0 0 198ms
✅ NetworkQueueTests 11 11 0 0 120ms
✅ NetworkRequestQueueTests 2 2 0 0 10.22s
✅ NetworkRetryLogicTests 7 7 0 0 152ms
✅ NetworkTimeoutTests 2 2 0 0 8ms
✅ NotificationEventTypeContractTests 7 7 0 0 30ms
✅ NotificationPayloadContractTests 10 10 0 0 47ms
✅ NotificationServiceStateMachineTests 9 9 0 0 1.59s
✅ NotificationServiceTests 16 16 0 0 96ms
✅ NotificationServiceTokenTests 13 13 0 0 176ms
✅ NotificationSyncThrottleTests 5 5 0 0 46ms
✅ NotificationTokenDataTests 4 4 0 0 85ms
✅ NotificationTokenRegistrationTests 10 10 0 0 36ms
✅ NowPlayingCoordinatorBackgroundTests 6 6 0 0 807ms
✅ NowPlayingCoordinatorTests 19 19 0 0 3.74s
✅ OAuthSAMLRedirectRegressionTests 4 4 0 0 303ms
✅ OIDCAuthDocumentParsingTests 4 4 0 0 286ms
✅ OIDCAuthTypeTests 5 5 0 0 15ms
✅ OIDCAuthenticationPropertyTests 8 8 0 0 1.38s
✅ OIDCCallbackEdgeCaseTests 9 9 0 0 635ms
✅ OIDCCallbackHandlingTests 5 5 0 0 760ms
✅ OIDCCallbackSchemeTests 3 3 0 0 56ms
✅ OIDCIsolationRegressionTests 6 6 0 0 391ms
✅ OIDCLoginRoutingTests 3 3 0 0 253ms
✅ OIDCMakeRequestTests 3 3 0 0 4.68s
✅ OIDCNSCodingTests 1 1 0 0 333ms
✅ OIDCNetworkLayer401Tests 5 5 0 0 191ms
✅ OIDCReauthOnExpiredTokenTests 5 5 0 0 289ms
✅ OIDCRedirectURIConstructionTests 6 6 0 0 355ms
✅ OIDCRegressionTests 9 9 0 0 3.57s
✅ OIDCSelectedAuthenticationTests 2 2 0 0 663ms
✅ OIDCSignOutRegressionTests 6 6 0 0 457ms
✅ OIDCTokenRefreshRegressionTests 6 6 0 0 298ms
✅ OIDCUpdateUserAccountTests 5 5 0 0 326ms
✅ OIDCViewModelRegressionTests 1 1 0 0 450ms
✅ OIDCViewModelSignInTests 2 2 0 0 32ms
✅ OPDS1BorrowEntryContractTests 4 4 0 0 28ms
✅ OPDS1CatalogGroupedContractTests 3 3 0 0 42ms
✅ OPDS1HoldEntriesContractTests 4 4 0 0 27ms
✅ OPDS1LoansFeedContractTests 6 6 0 0 66ms
✅ OPDS1ParsingTests 34 34 0 0 1.14s
✅ OPDS1RevokeResponseContractTests 2 2 0 0 7ms
✅ OPDS2AuthenticationDocumentTests 18 18 0 0 265ms
✅ OPDS2AvailabilityTests 4 4 0 0 78ms
✅ OPDS2BookBridgeTests 44 44 0 0 1.70s
✅ OPDS2BorrowResponseContractTests 3 3 0 0 20ms
✅ OPDS2CatalogWiringTests 21 21 0 0 198ms
✅ OPDS2CatalogsFeedTests 3 3 0 0 239ms
✅ OPDS2ContributorTests 2 2 0 0 24ms
✅ OPDS2EmptyFeedContractTests 1 1 0 0 14ms
✅ OPDS2FeedContractTests 4 4 0 0 102ms
✅ OPDS2FeedParsingTests 11 11 0 0 716ms
✅ OPDS2FeedTests 14 14 0 0 1.16s
✅ OPDS2FullMetadataTests 4 4 0 0 35ms
✅ OPDS2FullPublicationTests 13 13 0 0 104ms
✅ OPDS2IntegrationTests 18 18 0 0 779ms
✅ OPDS2LinkArrayTests 5 5 0 0 83ms
✅ OPDS2LinkComputedPropertyTests 20 20 0 0 428ms
✅ OPDS2LinkRelTests 1 1 0 0 1ms
✅ OPDS2LinkTests 2 2 0 0 60ms
✅ OPDS2ParsingTests 38 38 0 0 942ms
✅ OPDS2PublicationExtendedTests 53 53 0 0 442ms
✅ OPDS2PublicationImageTests 6 6 0 0 24ms
✅ OPDS2PublicationNarratorTests 3 3 0 0 4ms
✅ OPDS2PublicationTests 2 2 0 0 62ms
✅ OPDS2SamlIDPTests 6 6 0 0 168ms
✅ OPDS2SearchResultsContractTests 3 3 0 0 19ms
✅ OPDS2SubjectTests 2 2 0 0 41ms
✅ OPDS2SupportingTypesTests 5 5 0 0 76ms
✅ OPDSAcquisitionPathExpandedTests 15 15 0 0 387ms
✅ OPDSFeedCacheTests 14 14 0 0 136ms
✅ OPDSFeedMigrationTests 11 11 0 0 50ms
✅ OPDSFeedParsingTests 2 2 0 0 81ms
✅ OPDSFeedServiceStateMachineTests 3 3 0 0 990ms
✅ OPDSFeedServiceTests 2 2 0 0 87ms
✅ OPDSFormatTests 13 13 0 0 56ms
✅ OPDSParserCoreTests 4 4 0 0 113ms
✅ OPDSParserTests 4 4 0 0 230ms
✅ OPDSParsingTests 57 57 0 0 1.70s
✅ OfflineActionTests 29 29 0 0 1.09s
✅ OfflineQueueCoordinatorTests 11 11 0 0 213ms
✅ OfflineQueueServiceExtendedTests 13 13 0 0 280ms
✅ OfflineQueueServiceTests 17 17 0 0 761ms
✅ OpenAccessAdapterTests 13 13 0 0 1.15s
✅ OverdriveDeferredFulfillmentTests 6 6 0 0 19ms
✅ OverdriveDownloadHandlerTests 9 9 0 0 468ms
✅ OverdriveFulfillmentTests 27 24 0 3 6.45s
✅ PDFExtensionsTests 20 20 0 0 526ms
✅ PDFKitThumbnailProviderTests 5 5 0 0 141ms
✅ PDFReaderTests 12 12 0 0 86ms
✅ PDFSearchEmptyStateTests 4 4 0 0 7ms
✅ PP3596RegressionTests 3 3 0 0 308ms
✅ Palace 2 2 0 0 <1ms
✅ PalaceCheckPropertyTests 8 8 0 0 240ms
✅ PalaceErrorCategoryTests 20 20 0 0 215ms
✅ PalaceErrorExtendedTests 23 23 0 0 1.01s
✅ PalaceErrorTests 11 11 0 0 147ms
✅ PalaceHapticTests 4 4 0 0 491ms
✅ PalaceMotionTests 11 11 0 0 187ms
✅ PalacePDFViewTests 12 12 0 0 123ms
❌ PalacePreferencesSettingsRoundTripTests 10 9 1 0 3m 0s
✅ PalacePressableButtonStyleTests 6 6 0 0 36ms
✅ PalaceTestSetupObservationTests 4 4 0 0 610ms
✅ PalaceWiringTestCaseTests 4 4 0 0 240ms
✅ ParserFuzzTests 4 4 0 0 24.23s
✅ PatronProfileContractTests 4 4 0 0 68ms
✅ PerformanceMonitorTests 14 14 0 0 877ms
✅ PerformanceReportTests 14 14 0 0 145ms
✅ PersistentLoggerTests 9 9 0 0 2.48s
✅ PlaybackBootstrapperAudioSessionTests 2 2 0 0 29ms
✅ PlaybackBootstrapperTests 8 8 0 0 207ms
✅ PlaybackFailureRecordTests 5 5 0 0 21ms
✅ PlaybackOpenPolicyTests 7 7 0 0 391ms
✅ PlaybackRateTests 18 18 0 0 86ms
✅ PlaybackTrackingRegressionTests 5 5 0 0 110ms
⚠️ PoolResponsivenessProbeTests 5 4 0 0 3.57s
✅ PositionPersistenceLogicTests 6 6 0 0 50ms
✅ PositionPersistenceTests 2 2 0 0 4ms
✅ PositionSyncServiceTests 13 13 0 0 164ms
✅ PositionSyncTests 5 5 0 0 241ms
✅ PositionWriterContractTests 6 6 0 0 86ms
✅ PostUpdateMigrationTests 5 5 0 0 157ms
✅ ProblemDocumentContractTests 4 4 0 0 71ms
✅ ProblemDocumentLoanExpiryTests 5 5 0 0 1.68s
✅ ProblemDocumentTests 12 12 0 0 72ms
✅ ProblemReportEmailTests 8 8 0 0 191ms
✅ RatingCardMotionGateTests 5 5 0 0 25ms
✅ RatingEligibilityPolicyTests 17 17 0 0 51ms
✅ RatingEngagementTrackerTests 9 9 0 0 99ms
✅ RatingFeedbackPresenterTests 3 3 0 0 11ms
✅ RatingPromptPresenterTests 15 15 0 0 279ms
✅ ReachabilityTests 10 10 0 0 92ms
✅ Reader2BookmarkContractTests 3 3 0 0 58ms
✅ Reader2PositionAdapterContractTests 4 3 0 1 448ms
✅ Reader2PositionResumeContractTests 3 3 0 0 131ms
✅ ReaderAccessibilityTests 7 7 0 0 304ms
✅ ReaderChromeToggleFadeTests 3 3 0 0 36ms
✅ ReaderEditingActionsTests 5 5 0 0 90ms
✅ ReaderErrorTests 5 5 0 0 25ms
✅ ReaderNavBarVoiceOverTests 2 2 0 0 8ms
✅ ReaderServicePDFRouteTests 3 3 0 0 134ms
✅ ReaderServiceSyncTests 3 3 0 0 43ms
✅ ReaderThemeTests 24 24 0 0 68ms
✅ ReadingPositionTests 22 22 0 0 181ms
✅ ReadingSessionTrackerTests 13 13 0 0 236ms
✅ ReadingStatsServiceTests 12 12 0 0 276ms
✅ ReadingStatsStoreTests 9 9 0 0 78ms
✅ RedirectHandlingIntegrationTests 4 4 0 0 55ms
✅ RedirectPolicyTests 9 9 0 0 223ms
✅ RegistryDownloadServicingSeamTests 2 2 0 0 321ms
✅ RegistryFileRecoveryTests 23 23 0 0 301ms
✅ RemoteFeatureFlagsGapTests 4 4 0 0 39ms
✅ RemoteFeatureFlagsSideLoadingTests 5 5 0 0 26ms
✅ RemoteFeatureFlagsTests 21 21 0 0 1.28s
✅ ResourcePropertiesLengthTests 3 3 0 0 389ms
✅ RetryClassificationTests 17 17 0 0 137ms
✅ ReturnFlowTests 1 1 0 0 <1ms
✅ ReturnReducerContractTests 16 16 0 0 979ms
✅ RightsManagementDetectionTests 5 5 0 0 35ms
✅ RightsManagementDispatchContractTests 8 8 0 0 288ms
✅ RightsManagementDispatcherTests 10 10 0 0 1.04s
✅ RuntimeQuiescenceGateTests 11 10 0 1 1.56s
✅ RuntimeQuiescenceLintTests 5 5 0 0 851ms
✅ SAMLCookieSyncTests 5 5 0 0 169ms
✅ SAMLLogoutCallbackDetectionTests 4 4 0 0 47ms
✅ SAMLLogoutLinkParsingTests 5 5 0 0 72ms
✅ SAMLLogoutURLTests 4 4 0 0 26ms
✅ SAMLPlusBiblioBoardExpirationTests 8 8 0 0 726ms
✅ SEMigrationsTests 6 6 0 0 233ms
✅ SafeDictionaryTests 21 21 0 0 268ms
✅ SamplePlayerErrorTests 5 5 0 0 161ms
✅ SampleTypeTests 8 8 0 0 223ms
✅ SceneDelegateTests 1 1 0 0 1ms
✅ ScopedResetTests 9 9 0 0 159ms
✅ SearchAccessibilityTests 11 11 0 0 693ms
✅ SearchFlowIntegrationTests 8 8 0 0 926ms
✅ SettingsViewModelComputedPropertyTests 6 6 0 0 65ms
✅ SettingsViewModelEdgeCaseTests 7 7 0 0 92ms
✅ SettingsViewModelGapTests 1 1 0 0 3ms
✅ SettingsViewModelSyncTests 14 14 0 0 119ms
✅ SettingsViewModelTests 33 33 0 0 5.30s
✅ SideloadBoundaryTests 6 6 0 0 1.24s
✅ SideloadImportContractTests 1 1 0 0 94ms
✅ SideloadedBookManagerTests 17 17 0 0 567ms
✅ SideloadedBookRegistryTests 14 14 0 0 81ms
✅ SideloadedLaneBridgeTests 6 6 0 0 201ms
✅ SideloadedLaneViewModelTests 7 7 0 0 4.38s
✅ SignInFormPresentationTests 3 3 0 0 15ms
✅ SignInModalLifecycleTests 9 9 0 0 253ms
✅ SignInModalPredicateTests 3 3 0 0 74ms
✅ SignInModalSAMLOIDCTests 6 6 0 0 34ms
✅ SignInOAuthErrorPropagationTests 8 8 0 0 648ms
✅ SignInRequestServiceCharacterizationTests 11 11 0 0 618ms
✅ SignInToReadFlowIntegrationTests 5 5 0 0 457ms
✅ SignInWebSheetIntegrationTests 3 3 0 0 3.72s
✅ SignInWebSheetViewModelTests 31 31 0 0 1.44s
✅ SignOutCacheClearingTests 3 3 0 0 1.64s
✅ SingletonResetRegistryTests 5 5 0 0 792ms
✅ SkeletonTests 22 22 0 0 163ms
✅ StatsViewModelTests 10 10 0 0 298ms
✅ StatusAnnouncementTests 22 22 0 0 178ms
✅ StopPositionSaveTests 2 2 0 0 44ms
✅ StoreTests 5 5 0 0 143ms
✅ StreamingReaderPresentationContractTests 1 1 0 0 34ms
✅ StreamingReaderProgressStoreTests 7 7 0 0 113ms
✅ StreamingReaderViewControllerScrollRestoreTests 12 12 0 0 1.81s
✅ StreamingReaderViewModelTests 9 9 0 0 25ms
✅ StringExtensionTests 8 8 0 0 2.06s
✅ StringExtensionsTests 3 3 0 0 207ms
✅ StringHTMLEntitiesTests 7 7 0 0 156ms
✅ StringNYPLAdditionsTests 4 4 0 0 64ms
✅ String_NYPLAdditionsTests 4 4 0 0 8ms
✅ SupportSectionDecisionTests 5 5 0 0 26ms
✅ SyncConflictResolutionTests 3 3 0 0 5ms
✅ SyncDeletionGuardTests 5 5 0 0 10ms
✅ SyncDeletionRatioTests 6 6 0 0 216ms
✅ SyncPermissionTests 5 5 0 0 139ms
✅ TPPAccountAuthStateEnumTests 5 5 0 0 20ms
✅ TPPAccountListDataSourceTests 3 3 0 0 5ms
✅ TPPAdobeActivationSkipTests 6 6 0 0 1.42s
✅ TPPAgeCheckCompletionTests 5 5 0 0 854ms
✅ TPPAgeCheckIsValidTests 5 5 0 0 11ms
✅ TPPAgeCheckStateMachineTests 4 4 0 0 372ms
✅ TPPAgeCheckTests 6 6 0 0 1.36s
✅ TPPAgeCheckVerifyDecisionTests 5 5 0 0 166ms
✅ TPPAlertUtilsTests 45 45 0 0 1.28s
✅ TPPAnnotationsHermeticTests 15 15 0 0 1.27s
✅ TPPAnnotationsOverrideTests 4 4 0 0 121ms
✅ TPPAnnotationsTests 29 29 0 0 2.59s
✅ TPPAnnouncementManagerTests 3 3 0 0 52ms
✅ TPPAuthDocumentContractTests 3 3 0 0 32ms
✅ TPPBackgroundExecutorTests 3 3 0 0 43ms
✅ TPPBadgeImageGapTests 2 2 0 0 27ms
✅ TPPBaseReaderViewControllerInitialLocationTests 10 10 0 0 455ms
✅ TPPBasicAuthTests 11 11 0 0 27ms
✅ TPPBookAccessibilityLabelTests 8 8 0 0 33ms
✅ TPPBookAuthorCoverageTests 3 3 0 0 74ms
✅ TPPBookAuthorTests 6 6 0 0 76ms
✅ TPPBookBearerTokenTests 9 8 0 1 70ms
✅ TPPBookButtonsStateTests 7 7 0 0 116ms
✅ TPPBookContentMetadataFilesHelperTests 9 9 0 0 15ms
✅ TPPBookContentTypeConverterStreamingHTMLTests 2 2 0 0 5ms
✅ TPPBookContentTypeConverterTests 4 4 0 0 105ms
✅ TPPBookContentTypeExtendedTests 4 4 0 0 28ms
✅ TPPBookContentTypeTests 14 14 0 0 61ms
✅ TPPBookCoverRegistryTests 17 17 0 0 935ms
✅ TPPBookCreationTests 7 7 0 0 97ms
✅ TPPBookExtensionsTests 21 21 0 0 1.27s
✅ TPPBookIsDRMProtectedTests 9 9 0 0 77ms
✅ TPPBookLocationCoverageTests 7 7 0 0 597ms
✅ TPPBookLocationEdgeCaseTests 27 27 0 0 552ms
✅ TPPBookLocationKeyTests 3 3 0 0 4ms
✅ TPPBookLocationTests 11 11 0 0 91ms
✅ TPPBookModelGapTests 4 4 0 0 1.08s
✅ TPPBookRegistryAccountCaptureContractTests 4 4 0 0 404ms
✅ TPPBookRegistryAsyncReadinessTests 3 3 0 0 247ms
✅ TPPBookRegistryAtomicWriteTests 7 7 0 0 958ms
✅ TPPBookRegistryBookRetrievalTests 7 7 0 0 123ms
✅ TPPBookRegistryBookmarkTests 7 7 0 0 145ms
✅ TPPBookRegistryCorruptedDataTests 5 5 0 0 78ms
✅ TPPBookRegistryDataTests 4 4 0 0 11ms
✅ TPPBookRegistryDependencyTests 4 4 0 0 218ms
✅ TPPBookRegistryFacadeContractTests 6 6 0 0 251ms
✅ TPPBookRegistryFulfillmentIdTests 4 4 0 0 77ms
✅ TPPBookRegistryLargeCorpusTests 5 5 0 0 1m 11s
✅ TPPBookRegistryLoadReentrancyTests 2 2 0 0 63ms
✅ TPPBookRegistryLocationTests 4 4 0 0 365ms
✅ TPPBookRegistryMigrationTests 16 16 0 0 6.09s
✅ TPPBookRegistryMutationContractTests 10 10 0 0 355ms
✅ TPPBookRegistryPersistenceTests 10 10 0 0 1.13s
✅ TPPBookRegistryProcessingTests 2 2 0 0 15ms
✅ TPPBookRegistryPublisherTests 6 6 0 0 258ms
✅ TPPBookRegistryRebuildRefusalContractTests 1 1 0 0 1.11s
✅ TPPBookRegistryRecordPersistenceTests 3 3 0 0 39ms
✅ TPPBookRegistryRecordTests 10 10 0 0 79ms
✅ TPPBookRegistryStateConcurrencyTests 2 2 0 0 61ms
✅ TPPBookRegistryStateManagementTests 11 11 0 0 125ms
✅ TPPBookRegistrySyncContractTests 4 1 0 3 230ms
✅ TPPBookRegistryThreadSafetyTests 3 3 0 0 508ms
✅ TPPBookRegistryUpdateAndRemoveTests 1 1 0 0 31ms
✅ TPPBookRequiresAdobeDRMTests 6 6 0 0 10ms
✅ TPPBookSerializationTests 13 13 0 0 870ms
✅ TPPBookStateInitializationTests 4 4 0 0 40ms
✅ TPPBookStateTests 4 4 0 0 55ms
✅ TPPBookTests 98 98 0 0 973ms
✅ TPPBookmarkDeletionLogTests 11 11 0 0 1.41s
✅ TPPBookmarkFactoryInitTests 2 2 0 0 8ms
✅ TPPBookmarkFactoryServerAnnotationEdgeCaseTests 5 5 0 0 320ms
✅ TPPBookmarkFactoryTests 15 15 0 0 1.84s
✅ TPPBookmarkR3ConversionTests 5 5 0 0 116ms
✅ TPPBookmarkR3LocationTests 13 13 0 0 387ms
✅ TPPBookmarkSpecTests 1 1 0 0 12ms
✅ TPPCachingTests 3 3 0 0 164ms
✅ TPPCapturedCredentialsTests 5 5 0 0 1.23s
✅ TPPCirculationAnalyticsRequestShapeContractTests 2 2 0 0 38ms
✅ TPPConfigurationCustomRegistryTests 16 16 0 0 531ms
✅ TPPConfigurationTests 22 22 0 0 1.34s
✅ TPPContentTypeTests 9 9 0 0 17ms
✅ TPPCredentialConcurrencyTests 3 3 0 0 106ms
✅ TPPCredentialIsolationE2ETests 5 0 0 5 184ms
✅ TPPCredentialPersistenceTests 6 6 0 0 342ms
✅ TPPCredentialSnapshotCoherenceTests 3 0 0 3 572ms
✅ TPPCredentialSnapshotTests 8 8 0 0 146ms
✅ TPPCredentialsCoverageTests 9 9 0 0 59ms
✅ TPPCredentialsTests 26 26 0 0 294ms
✅ TPPCrossLibrarySignOutTests 6 6 0 0 674ms
✅ TPPDRMFailureCredentialPreservationTests 4 4 0 0 918ms
✅ TPPErrorLoggerTests 27 27 0 0 2.20s
✅ TPPIdleSignOutRegressionTests 13 13 0 0 1.01s
✅ TPPJWKConversionTest 1 1 0 0 22ms
✅ TPPKeychainManagerTests 5 5 0 0 941ms
✅ TPPLastReadPositionPosterTests 13 13 0 0 141ms
✅ TPPLastReadPositionSynchronizerIntegrationTests 5 5 0 0 55ms
✅ TPPLastReadPositionSynchronizerTests 23 23 0 0 123ms
✅ TPPLastReadPositionSynchronizer_BehaviorDocumentationTests 5 5 0 0 10ms
✅ TPPLastReadPositionSynchronizer_BookLocationTests 9 9 0 0 109ms
✅ TPPLastReadPositionSynchronizer_ConcurrencyTests 3 3 0 0 51ms
✅ TPPLastReadPositionSynchronizer_ReadiumBookmarkTests 9 9 0 0 117ms
✅ TPPLastReadPositionSynchronizer_SyncLogicTests 10 10 0 0 81ms
✅ TPPLastReadPositionSynchronizer_WriterDelegationTests 4 4 0 0 2.04s
✅ TPPLoginNoActivationTests 3 3 0 0 199ms
✅ TPPMainThreadCheckerTests 4 4 0 0 83ms
✅ TPPMigrationManagerTests 15 15 0 0 284ms
✅ TPPNetworkExecutorAPITests 14 14 0 0 5.36s
✅ TPPNetworkExecutorConcurrencyTests 4 4 0 0 9.40s
✅ TPPNetworkExecutorStubbedTests 17 17 0 0 774ms
✅ TPPNetworkExecutorTests 3 3 0 0 284ms
✅ TPPNetworkResponderAuthCoordinatorTests 5 5 0 0 204ms
✅ TPPNetworkResponderSizeLimitTests 5 5 0 0 1.01s
✅ TPPNetworkResponderTests 12 12 0 0 101ms
✅ TPPOPDSAcquisitionPathTests 5 5 0 0 30ms
✅ TPPOPDSEntryTests 5 5 0 0 19ms
✅ TPPOPDSFeedTests 3 3 0 0 107ms
✅ TPPOPDSGroupSwiftTests 3 3 0 0 14ms
✅ TPPOPDSLinkTests 7 7 0 0 147ms
✅ TPPOpenSearchDescriptionExpandedTests 10 10 0 0 434ms
✅ TPPOpenSearchDescriptionTests 1 1 0 0 2ms
✅ TPPPDFDocumentMetadataTests 15 15 0 0 91ms
✅ TPPPDFDocumentTests 8 8 0 0 32ms
✅ TPPPDFLocationCoverageTests 7 7 0 0 14ms
✅ TPPPDFLocationTests 10 10 0 0 70ms
✅ TPPPDFPageBookmarkTests 9 9 0 0 68ms
✅ TPPPDFPageTests 5 5 0 0 133ms
✅ TPPPDFReaderModeTests 6 6 0 0 9ms
✅ TPPPDFReaderSearchBindingTests 3 3 0 0 26ms
✅ TPPPerAccountIsolationTests 8 0 0 8 330ms
✅ TPPPreferredAuthSelectionTests 8 8 0 0 664ms
✅ TPPProblemDocumentCacheManagerTests 12 12 0 0 117ms
✅ TPPProblemDocumentTests 21 21 0 0 228ms
✅ TPPReaderAppearanceTests 4 4 0 0 281ms
✅ TPPReaderBlockNavigationTests 12 12 0 0 329ms
✅ TPPReaderBookmarksBusinessLogicTests 12 12 0 0 1.17s
✅ TPPReaderBookmarksReadinessTests 2 2 0 0 413ms
✅ TPPReaderFontTests 4 4 0 0 282ms
✅ TPPReaderFootnoteAccessibilityTests 16 16 0 0 94ms
✅ TPPReaderPageListBusinessLogicTests 27 27 0 0 1.09s
✅ TPPReaderPositionReportTests 10 10 0 0 183ms
✅ TPPReaderPreferencesLoadTests 3 3 0 0 110ms
✅ TPPReaderSettingsTests 28 28 0 0 1.49s
✅ TPPReaderTOCBusinessLogicTests 15 15 0 0 380ms
✅ TPPReaderTOCFlattenTests 2 2 0 0 22ms
✅ TPPReadiumBookmarkLocationMatchingTests 5 5 0 0 169ms
✅ TPPReadiumBookmarkTests 23 23 0 0 198ms
✅ TPPReauthenticatorMockTests 2 2 0 0 4ms
✅ TPPReauthenticatorTests 4 4 0 0 1.10s
✅ TPPReturnPromptHelperTests 5 5 0 0 29ms
✅ TPPSAMLCookieExpirationTests 7 7 0 0 163ms
✅ TPPSAMLFlowTests 10 10 0 0 2.11s
✅ TPPSAMLReauthFlowTests 2 2 0 0 101ms
✅ TPPSAMLRegressionTests 4 4 0 0 154ms
✅ TPPSAMLSignInTests 26 26 0 0 1.82s
✅ TPPSAMLStateIsolationTests 4 4 0 0 148ms
✅ TPPSAMLStateMachineTests 6 6 0 0 286ms
✅ TPPSettingsTests 6 6 0 0 358ms
✅ TPPSignInAdobeSkipTests 14 14 0 0 891ms
✅ TPPSignInAuthStateTransitionTests 3 3 0 0 701ms
✅ TPPSignInBusinessLogicExtendedTests 58 58 0 0 3.18s
✅ TPPSignInBusinessLogicOAuthTests 11 11 0 0 710ms
✅ TPPSignInBusinessLogicSignOutTests 11 11 0 0 685ms
✅ TPPSignInBusinessLogicStateMachineTests 10 10 0 0 620ms
✅ TPPSignInBusinessLogicTests 23 23 0 0 1m 3s
✅ TPPSignInBusinessLogicTokenFlowTests 3 3 0 0 313ms
✅ TPPSignInBusinessLogicValidationCallbackOrderTests 2 2 0 0 318ms
✅ TPPSignInCapabilitiesCharacterizationTests 12 12 0 0 6.23s
✅ TPPSignInErrorHandlingTests 2 2 0 0 676ms
✅ TPPSignInProfileDocEdgeCaseTests 3 3 0 0 288ms
✅ TPPSignedInStateProviderTests 3 3 0 0 7ms
✅ TPPUserAccountAuthStateTests 6 6 0 0 28ms
✅ TPPUserAccountConcurrencyTests 1 1 0 0 51ms
✅ TPPUserAccountGapTests 4 4 0 0 34ms
✅ TPPUserAccountIsolationLintTests 3 3 0 0 1.27s
✅ TPPUserAccountTestFactoryTests 7 0 0 7 210ms
✅ TPPUserFriendlyErrorTests 11 11 0 0 64ms
✅ TPPUserNotificationsTests 10 10 0 0 1.55s
✅ TPPXMLSwiftTests 16 16 0 0 52ms
✅ TPPXMLTests 3 3 0 0 10ms
✅ TabBarModernizationTests 8 8 0 0 210ms
✅ TearDownRequiredLintTests 5 5 0 0 2.21s
✅ TestAppContainerFactoryTests 5 5 0 0 197ms
⚠️ TestTargetHermeticityRegressionTests 4 3 0 0 1.80s
✅ TimeEntryTests 3 3 0 0 86ms
✅ TokenRefreshAndRetryQueueTests 9 9 0 0 5.14s
✅ TokenRefreshIntegrationTests 2 2 0 0 47ms
✅ TokenRefreshInterceptorAuthCoordinatorTests 8 8 0 0 896ms
✅ TokenRefreshInterceptorTests 24 24 0 0 514ms
✅ TokenRefreshOnForegroundTests 10 10 0 0 5.81s
✅ TokenRefreshTests 25 25 0 0 293ms
✅ TokenRefreshWatchdogTests 5 5 0 0 735ms
✅ TokenRequestCredentialGuardTests 13 13 0 0 1.92s
✅ TokenRequestTests 11 11 0 0 2.41s
✅ TokenResponseTests 21 21 0 0 126ms
✅ TriageBotKeyAdminTests 4 4 0 0 182ms
✅ TypographyPresetTests 21 21 0 0 209ms
✅ TypographyServiceTests 31 31 0 0 1.88s
✅ TypographySettingsViewModelTests 27 27 0 0 1.11s
✅ UIAlertCACommitGuardTests 9 9 0 0 2.29s
✅ UIColor_NYPLAdditionsTests 1 1 0 0 3ms
✅ URLBackupExclusionTests 3 3 0 0 13ms
✅ URLExtensionTests 16 16 0 0 117ms
✅ URLExtensionsTests 11 11 0 0 152ms
✅ URLRequestExtensionsCoverageTests 3 3 0 0 77ms
✅ URLRequestExtensionsTests 11 11 0 0 555ms
✅ URLRequestNYPLAdditionsTests 11 11 0 0 291ms
✅ URLRequest_NYPLTests 1 1 0 0 2ms
✅ URLResponseAuthenticationTests 10 10 0 0 60ms
✅ URLResponseNYPLTests 14 14 0 0 1.48s
✅ URLSessionCredentialStorageTests 3 3 0 0 47ms
✅ URLSessionStubbingResetTests 2 2 0 0 7ms
✅ URLTypeTests 2 2 0 0 254ms
✅ URLValidationTests 5 5 0 0 27ms
✅ UnifiedOPDSServiceStateMachineTests 2 2 0 0 126ms
✅ UserAccountPublisherAuthStateTests 5 5 0 0 195ms
✅ UserAccountPublisherTests 14 14 0 0 322ms
✅ UserAccountValidationTests 11 11 0 0 994ms
✅ UserDefaultsIsolationLintTests 2 2 0 0 1.27s
✅ UserProfileDocumentTests 7 7 0 0 71ms
✅ UserRetryTrackerTests 10 10 0 0 70ms
✅ XCTestCase_testUserDefaultsTests 3 3 0 0 1.94s
✅ iPadOnMacRMSDKGuardTests 7 7 0 0 134ms

📊 Full interactive matrix: report

Failed tests
PalacePreferencesSettingsRoundTripTests.First Run

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.1% (17 files excluded from testable denominator — see scripts/coverage-exclude.json)

Target Lines Covered
Palace.app 44.1%

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)

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