Skip to content

fix(auth): an expired token was sent to /patrons/me/, and read back as "signed out" - #1453

Open
mauricecarrier7 wants to merge 1 commit into
developfrom
fix/profile-doc-expired-token
Open

fix(auth): an expired token was sent to /patrons/me/, and read back as "signed out"#1453
mauricecarrier7 wants to merge 1 commit into
developfrom
fix/profile-doc-expired-token

Conversation

@mauricecarrier7

Copy link
Copy Markdown
Contributor

What

getProfileDocument's gate checked that credentials exist. It did not check they are usable.

hasCredentials() is hasAuthToken || hasBarcodeAndPIN — presence, not validity — so an expired bearer token passes it. The request goes out, /patrons/me/ answers 401 with the OPDS auth-document body the gate exists to avoid, and because this path passes enableTokenRefresh: false that 401 cannot self-heal. It returns nil, and callers (NotificationService FCM registration) read nil as "signed out" and re-present sign-in on an account that is fine.

How it was found

On device 2026-09-03, build 499, Icarus Test Library. An app updated over a stale session sent the old token, took a 401, and put the login sheet back up — then cleared on relaunch once a fresh token was stored. That "fine after restart" behaviour is the signature of a credential that is present but no longer usable, rather than a missing one.

Not PP-5065 recurring. That was a 401 body concatenated onto a retry body, breaking XML parsing. This is a clean, well-formed 401 from an independent cause, in a build that already carries the PP-5065 fix. Same symptom, unrelated mechanism.

The existing test for this gate does not test it

AccountProfileDocumentTests carries an F-007 regression guard whose docstring says it "kills the gate-removal mutation".

Measured: with the entire credentials gate deleted, all five tests still passed. They assert a nil document and sub-second timing against https://example.invalid/; DNS fails fast enough that both hold whether or not the request was issued.

The blocker is a seam — getProfileDocument reaches AppContainer.production() internally, so no test can observe whether the request was sent. Rather than work around it, the decision is lifted into a pure function and its four cells asserted directly. Same pattern as BookDetailView.opensContentDirectly (PP-5059).

static func canAuthenticateProfileRequest(hasCredentials: Bool,
                                          tokenHasExpired: Bool) -> Bool {
    hasCredentials && !tokenHasExpired
}

Evidence

Proven to bite. Reverting the predicate to presence-only fails testCanAuthenticate_WithExpiredToken_IsFalse by name — a named failing test, not a compile error.

33 tests green across AccountProfileDocumentTests + NotificationServiceStateMachineTests + FCMRegistrationReadinessLintTests.

Basic auth unaffected: isTokenExpired returns false for barcode/PIN and for tokens with no expiry date. Pinned by the no-credentials and degenerate cells.

Risk

Not done: not verified on device — reproducing needs an app updated over a session whose token has since expired, which is time-dependent rather than scriptable. I also did not establish what re-presents the login sheet; the 401s are explained, but the link to the sheet re-appearing is inferred from log ordering, not traced. Retry borrow failed after OIDC re-auth and an ASWebAuthenticationSession error 3 (presentationContextInvalid, context "Settings Tab") both appear in the same window and neither is attributed.

Deferred: the F-007 test is left in place and still weak — not made worse here, and fixing it needs the AppContainer.production() seam opened. Its docstring's claim is now contradicted in a comment directly beneath it. A census found ~12 other hasCredentials() guards; TPPMigrationManager:60 already pairs it with an expiry check, so the distinction is known in this codebase. The rest were not audited for whether they gate an authenticated request with refresh disabled — the condition that turns this from early to fatal.

🤖 Generated with Claude Code

…s "signed out"

The gate in `getProfileDocument` checked that credentials EXIST. It did not
check they are USABLE. `hasCredentials()` is `hasAuthToken || hasBarcodeAndPIN`
— presence, not validity — so an expired bearer token passes it. The request
goes out, `/patrons/me/` answers 401 with the same OPDS auth-document body the
gate exists to avoid, and because this path passes `enableTokenRefresh: false`
that 401 cannot self-heal. It returns nil, and callers (NotificationService FCM
registration) read nil as "signed out" and re-present sign-in on an account
that is fine.

Observed on device 2026-09-03, build 499, Icarus Test Library: an app updated
over a stale session sent the old token, took a 401, and put the login sheet
back up. It cleared on relaunch once a fresh token was stored — which is the
signature of a credential that is present but no longer usable, not a missing
one. Reported as "login isn't loading", then "it keeps re-appearing, but I'm
actually logged in after a restart".

This is NOT the PP-5065 defect recurring. That was a 401 body concatenated onto
a retry body, breaking XML parsing. This is a clean, well-formed 401 from an
independent cause, and it is present in a build that carries the PP-5065 fix.
The two share a symptom and nothing else.

**The existing test for this gate does not test it.** `AccountProfileDocumentTests`
carries an F-007 regression guard whose docstring claims it "kills the
gate-removal mutation". Measured: with the ENTIRE credentials gate deleted, all
five tests in the file still passed. They assert a nil document and sub-second
timing against `https://example.invalid/`, and DNS fails fast enough that both
hold whether or not the request was issued. That gate has been protecting
nothing since it was written, and the docstring asserted the opposite.

The blocker is a seam: `getProfileDocument` reaches `AppContainer.production()`
internally, so no test can observe whether the request was sent. Rather than
work around it, the decision is lifted into
`Account.canAuthenticateProfileRequest(hasCredentials:tokenHasExpired:)` — a
pure function over two booleans — and its four cells are asserted directly.
Same pattern as `BookDetailView.opensContentDirectly` (PP-5059).

Proven to bite: reverting the predicate to presence-only fails
`testCanAuthenticate_WithExpiredToken_IsFalse` by name. Not a compile error —
a named failing test. 33 tests green across this file plus
NotificationServiceStateMachineTests and FCMRegistrationReadinessLintTests.

`tokenHasExpired` is false for barcode/PIN credentials and for tokens with no
expiry date (`isTokenExpired` returns false for both), so basic-auth libraries
are unaffected — pinned by the no-credentials and degenerate cells.

**Scope:** the one gate in `Account+profileDocument.swift`, plus its tests.

**Not done:** not verified on device. Reproducing needs an app updated over a
session whose token has since expired, which is time-dependent rather than
scriptable. The unit tests pin the decision, not the live flow. I also did NOT
establish what re-presents the login sheet — the 401s are explained, but the
link from "profile fetch returned nil" to the sheet re-appearing is inferred
from the log ordering, not traced. `Retry borrow failed after OIDC re-auth` and
an `ASWebAuthenticationSession` error 3 (presentationContextInvalid, context
"Settings Tab") both appear in the same window and neither is attributed.

**Deferred:** the F-007 test is left in place and still weak. It is not made
worse by this change, and rewriting it needs the `AppContainer.production()`
seam opened, which is a larger change than a release-adjacent fix should carry.
Its docstring's claim is now contradicted in a comment directly beneath it.
A census found ~12 other `hasCredentials()` guards; `TPPMigrationManager:60`
already pairs it with an expiry check, so the distinction is known here. The
rest were NOT audited for whether they gate an authenticated request with
refresh disabled — that is the condition that turns this from early to fatal,
and it should be checked before assuming they are safe.

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

github-actions Bot commented Sep 3, 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 2 Distinct circular dependencies (A→B→C→A). Goal: 0
Largest Cycle 10 components How many components are mutually tangled in the biggest cycle
Layer Violations 2 Dependencies that break architectural boundaries
Hotspots 14 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 (2)

2 distinct dependency cycles (largest spans 10 components).

The analyzer reports 16 entries — those are cycle paths through the cycles listed below, not 16 separate problems. Adding one edge inside a tangle multiplies the path count without changing the architecture, so track the cycles instead.

Cycle 1 — 10 components, 22 edges between them

Accounts, AppRating, ErrorHandling, FeatureFlags, Logging, Network, Notifications, OPDS2, Settings, SignInLogic

edges
Accounts → ErrorHandling
Accounts → Logging
Accounts → Network
Accounts → OPDS2
Accounts → SignInLogic
AppRating → Settings
ErrorHandling → Logging
FeatureFlags → AppRating
Logging → Accounts
Network → Accounts
Network → Logging
Notifications → Accounts
Notifications → Logging
OPDS2 → Accounts
Settings → Accounts
Settings → FeatureFlags
Settings → Logging
Settings → SignInLogic
SignInLogic → Accounts
SignInLogic → Logging
SignInLogic → Notifications
SignInLogic → Settings

Cycle 2 — 3 components, 4 edges between them

Audiobooks, Book, CatalogUI

edges
Audiobooks → Book
Book → Audiobooks
Book → CatalogUI
CatalogUI → Book

Discounted TriageBotUI → Palace — declared a known false positive in tools/ledger/ledger-config.json.

📋 Architecture Findings
  • hotspot: PalaceBookRegistry is a coupling hotspot with 18 dependents
  • hotspot: Accounts is a coupling hotspot with 12 dependents
  • hotspot: PalaceBookModel is a coupling hotspot with 21 dependents
  • hotspot: PalaceCatalog is a coupling hotspot with 22 dependents
  • hotspot: PalacePreferences is a coupling hotspot with 15 dependents
  • hotspot: PalaceLogging is a coupling hotspot with 32 dependents
  • hotspot: PalaceNetwork is a coupling hotspot with 14 dependents
  • hotspot: PalaceAuth is a coupling hotspot with 8 dependents
  • hotspot: Network is a coupling hotspot with 7 dependents
  • hotspot: PalaceUIKit is a coupling hotspot with 7 dependents
  • hotspot: ErrorHandling is a coupling hotspot with 6 dependents
  • hotspot: TriageBotCore is a coupling hotspot with 6 dependents
  • hotspot: PalaceFeatureFlags is a coupling hotspot with 6 dependents
  • hotspot: Logging is a coupling hotspot with 10 dependents
  • layer_violation: AppInfrastructure (Infrastructure) depends on PalaceBookModel (Domain) - upward dependency
  • layer_violation: TriageBotUI (Presentation) depends on Palace (Application) - upward dependency
  • orphan_component: BuildSupport has no dependencies and no dependents - possible orphan
  • orphan_component: Catalog has no dependencies and no dependents - possible orphan

🔍 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 Sep 3, 2026

Copy link
Copy Markdown

🧪 Unit Test Results

📊 View Full Interactive Report

❌ 1 TEST FAILED

8469 tests | 8457 passed | 1 failed | 11 skipped | ⏱️ 13m 12s | 📊 99.9% | 📈 49.2% coverage

All 971 classes — 1 with failures (full matrix)
Class Tests Passed Failed Skipped Duration
✅ AccessLintComplianceTests 11 11 0 0 131ms
✅ AccessibilityAnnouncementCenterTests 20 20 0 0 1.80s
✅ AccessibilityLabelTests 9 9 0 0 261ms
✅ AccessibilityPreferencesTests 26 26 0 0 988ms
✅ AccessibilityServiceTests 11 11 0 0 1.39s
✅ AccountAuthDocCarryoverTests 5 5 0 0 324ms
✅ AccountAuthSurfaceHostsTests 7 7 0 0 40ms
✅ AccountCredentialResolverTests 5 5 0 0 43ms
✅ AccountDetailCredentialStateTests 7 7 0 0 428ms
✅ AccountDetailPINVisibilityTests 25 23 0 2 5.65s
✅ AccountDetailSignOutConfirmationTests 2 2 0 0 171ms
✅ AccountDetailViewModelGapTests 1 1 0 0 485ms
✅ AccountDetailViewModelLeakTests 1 1 0 0 49ms
✅ AccountDetailViewModelSignedInDerivationTests 5 5 0 0 328ms
✅ AccountDetailViewModelTests 19 19 0 0 1.21s
✅ AccountDetailsAuthenticationIsBrowserBasedTests 10 10 0 0 63ms
✅ AccountDetailsNeedsAuthAggregateTests 10 10 0 0 37ms
✅ AccountDetailsURLTests 17 17 0 0 653ms
✅ AccountErrorReportingTests 1 1 0 0 4ms
✅ AccountModelGapTests 9 9 0 0 977ms
✅ AccountModelTests 20 20 0 0 564ms
✅ AccountNetworkingSeamTests 2 2 0 0 128ms
✅ AccountProfileDocumentTests 6 6 0 0 34ms
✅ AccountRegistryCacheSeamTests 3 3 0 0 108ms
✅ AccountRegistryLoaderSeamTests 3 3 0 0 55ms
✅ AccountRegistryStorePoolStarvationTests 3 2 0 1 29ms
✅ AccountRegistryStoreSeamTests 6 6 0 0 85ms
✅ AccountScopeAdapterTests 5 5 0 0 585ms
✅ AccountStateMachineTests 13 13 0 0 1.55s
✅ AccountSwitchBorrowReauthCouplingContractTests 4 4 0 0 58ms
✅ AccountSwitchCleanupTests 8 8 0 0 225ms
✅ AccountSwitchIntegrationTests 8 8 0 0 197ms
✅ AccountSwitchLifecycleTests 9 9 0 0 960ms
✅ AccountsManagerAccountIndexTests 7 7 0 0 161ms
✅ AccountsManagerAuthDocContractTests 1 1 0 0 111ms
✅ AccountsManagerCacheReadTests 4 4 0 0 500ms
✅ AccountsManagerCacheTests 16 16 0 0 178ms
✅ AccountsManagerCancellationTests 5 5 0 0 583ms
✅ AccountsManagerCatalogLoadJoinTests 3 3 0 0 13.51s
✅ AccountsManagerCurrentAccountSwitchContractTests 5 5 0 0 419ms
✅ AccountsManagerFirstRunDecodeTests 3 3 0 0 1.58s
✅ AccountsManagerGapTests 3 3 0 0 17ms
✅ AccountsManagerHelpersTests 12 12 0 0 52ms
✅ AccountsManagerIsolationLintTests 4 4 0 0 1.46s
✅ AccountsManagerLaunchSnapshotTests 13 13 0 0 3.19s
✅ AccountsManagerStateMachineWiringTests 18 18 0 0 3.64s
✅ AdobeActivationCoordinatorTests 4 4 0 0 18ms
✅ AdobeActivationDedupTests 8 8 0 0 1.22s
✅ AdobeActivationLicensorGraceTests 7 7 0 0 574ms
✅ AdobeActivationTests 6 6 0 0 72ms
✅ AdobeCertificateGapTests 7 7 0 0 20ms
✅ AdobeDRMCharacterizationTests 21 21 0 0 3.19s
✅ AdobeDRMErrorGapTests 3 3 0 0 66ms
✅ AdobeDRMHandlerTests 12 12 0 0 429ms
✅ AdobeDRMServiceGapTests 2 2 0 0 5ms
✅ AlertModelCoverageTests 6 6 0 0 94ms
✅ AlertModelRetryTests 7 7 0 0 78ms
✅ AlertModelTests 2 2 0 0 183ms
✅ AlertPresentationRawGuardLintTests 6 6 0 0 34ms
✅ AlertUtilsTests 20 20 0 0 7.61s
✅ AnnotationContractTests 3 3 0 0 15ms
✅ AnnotationDeviceIDTests 2 2 0 0 24ms
✅ AnnotationPostResponseContractTests 1 1 0 0 2ms
✅ AnnouncementChainTests 5 5 0 0 21ms
✅ AnnouncementTests 3 3 0 0 13ms
✅ AppContainerAudiobookFactoryTests 3 3 0 0 7ms
✅ AppContainerAuthCoordinatorRegistrationTests 3 3 0 0 9ms
✅ AppContainerImageLoaderInjectionTests 4 4 0 0 70ms
✅ AppContainerIsolationLintTests 8 8 0 0 2.39s
✅ AppContainerResetTests 5 5 0 0 33.66s
✅ AppContainerTests 5 5 0 0 20ms
✅ AppContainerWithSignInModalSheetPresenterTests 2 2 0 0 46ms
✅ AppHealthViewModelTests 8 8 0 0 101ms
✅ AppLaunchTrackerExtendedTests 16 16 0 0 1.79s
✅ AppLaunchTrackerTests 10 10 0 0 259ms
✅ AppLaunchTrackerWiringTests 2 2 0 0 59ms
✅ AppRatingServiceOverrideTests 3 3 0 0 21ms
✅ AppRatingServiceTests 9 9 0 0 138ms
✅ AppRouteTests 5 5 0 0 233ms
✅ AppTabHostMiniPlayerIntegrationTests 6 6 0 0 283ms
✅ AppTabHostViewBadgeCountTests 10 10 0 0 55ms
✅ AppTabRouterCoverageTests 4 4 0 0 29ms
✅ AppTabRouterGapTests 3 3 0 0 33ms
✅ AppTabSelectionBindingLintTests 2 2 0 0 5ms
✅ AppTabStackMemoryTests 11 11 0 0 518ms
✅ AppTabSwitchPreservesStacksTests 3 3 0 0 221ms
✅ ArrayExtensionsTests 6 6 0 0 47ms
✅ AudioBookmarkGapTests 6 6 0 0 56ms
✅ AudioEngineWrapperTests 8 8 0 0 125ms
✅ AudioInterruptionLogicTests 6 6 0 0 37ms
✅ AudioSessionActivatorTests 8 8 0 0 68ms
✅ AudiobookAccessibilityTests 7 7 0 0 103ms
✅ AudiobookBackgroundAudioTests 2 2 0 0 33ms
✅ AudiobookBearerTokenRecoveryTests 21 21 0 0 159ms
✅ AudiobookBookmarkBusinessLogicConcurrencyTests 3 3 0 0 224ms
✅ AudiobookBookmarkBusinessLogicPositionWriteTests 9 9 0 0 400ms
✅ AudiobookBookmarkBusinessLogicTests 21 21 0 0 25.37s
✅ AudiobookChapterCompletionPauseTests 7 7 0 0 67ms
✅ AudiobookChapterTOCNormalizationTests 6 6 0 0 16ms
✅ AudiobookColdLoadRecoveryTests 4 4 0 0 78ms
✅ AudiobookContentGateTests 13 13 0 0 6.92s
✅ AudiobookCrossVendorSmokeTests 4 4 0 0 304ms
✅ AudiobookDataManagerEmptyQueueTests 1 1 0 0 149ms
✅ AudiobookDataManagerErrorHandlingTests 5 5 0 0 141ms
✅ AudiobookDataManagerModelsTests 20 20 0 0 187ms
✅ AudiobookDataManagerNetworkSyncTests 5 5 0 0 115ms
✅ AudiobookDataManagerSaveTests 4 4 0 0 32ms
✅ AudiobookDataManagerStoreRecoveryTests 5 5 0 0 30ms
✅ AudiobookFileLoggerTests 15 15 0 0 339ms
✅ AudiobookFirstOpenHangTests 15 14 0 1 1.33s
✅ AudiobookLoadFailureSAMLReauthTests 10 10 0 0 985ms
✅ AudiobookLoaderDispatchTests 7 7 0 0 1.16s
✅ AudiobookLoaderFinalizeBuildTests 11 11 0 0 537ms
✅ AudiobookLoaderOPDSShapeMatrixTests 8 8 0 0 1.73s
✅ AudiobookLoaderPredicateTests 11 11 0 0 29ms
✅ AudiobookLoaderTests 2 2 0 0 51ms
✅ AudiobookMorphingPlayerViewTests 26 26 0 0 159ms
✅ AudiobookNetworkValidationTests 3 3 0 0 11ms
✅ AudiobookOpenStateRaceTests 3 3 0 0 1.78s
✅ AudiobookPhoneAlertContentTests 3 3 0 0 11ms
✅ AudiobookPlaybackStateTests 3 3 0 0 46ms
✅ AudiobookPlaybackTests 26 26 0 0 281ms
✅ AudiobookPlaytimesLifecycleTests 6 6 0 0 888ms
✅ AudiobookPositionAdapterContractTests 3 3 0 0 95ms
✅ AudiobookPositionPolicyValidatorTests 14 14 0 0 80ms
✅ AudiobookPositionRestoreTests 20 20 0 0 2.50s
✅ AudiobookReadinessPlaybackContractTests 2 2 0 0 147ms
✅ AudiobookSAMLReauthTests 6 6 0 0 154ms
✅ AudiobookSessionErrorDescriptionTests 4 4 0 0 37ms
✅ AudiobookSessionErrorExtTests 4 4 0 0 89ms
✅ AudiobookSessionErrorTests 3 3 0 0 27ms
✅ AudiobookSessionManagerErrorMappingTests 6 6 0 0 22ms
✅ AudiobookSessionManagerFlagGatePresentationTests 4 4 0 0 85ms
✅ AudiobookSessionManagerPresenterMigrationTests 10 10 0 0 167ms
✅ AudiobookSessionManagerShutdownTests 12 12 0 0 431ms
✅ AudiobookSessionPresenterLifecycleContractTests 3 3 0 0 225ms
✅ AudiobookSessionPresenterTests 31 31 0 0 329ms
✅ AudiobookSessionStateTests 6 6 0 0 34ms
✅ AudiobookSessionStateTransitionTests 22 22 0 0 505ms
✅ AudiobookSkipIntervalSettingsTests 7 7 0 0 123ms
✅ AudiobookSleepTimerIntegrationTests 5 5 0 0 415ms
✅ AudiobookStorageLocationTests 3 3 0 0 198ms
✅ AudiobookTOCTests 18 18 0 0 191ms
✅ AudiobookTimeEntryTests 6 6 0 0 46ms
✅ AudiobookTimeTrackerEdgeTests 8 8 0 0 423ms
✅ AudiobookTimeTrackerLifecycleTests 5 5 0 0 1.16s
✅ AudiobookTimeTrackerTests 9 9 0 0 537ms
✅ AudiobookTrackCompletionTests 2 2 0 0 68ms
✅ AudiobookTypeRoutingTests 5 5 0 0 62ms
✅ AudiobookVendorAdapterTests 5 5 0 0 242ms
✅ AudiobookVendorRecoveryContractTests 1 1 0 0 78ms
✅ AudiobookmarkTests 4 4 0 0 15ms
✅ AuthCoordinatorTelemetryTests 5 5 0 0 458ms
✅ AuthDecisionEventEmissionTests 7 7 0 0 31ms
✅ AuthDocumentContractTests 2 2 0 0 4ms
✅ AuthDocumentLoaderSeamTests 6 6 0 0 44ms
✅ AuthDocumentVariantsContractTests 5 5 0 0 37ms
✅ AuthErrorCategoryTests 12 12 0 0 56ms
✅ AuthErrorProblemDocSeamTests 6 6 0 0 62ms
✅ AuthFlowSecurityTests 3 3 0 0 43ms
✅ AuthReducerTests 21 21 0 0 368ms
✅ AuthTypeTests 7 7 0 0 84ms
✅ AuthenticationTests 16 16 0 0 160ms
✅ BackgroundDownloadHandlerTests 28 28 0 0 1.03s
✅ BackgroundDownloadTokenAccountTests 5 5 0 0 366ms
✅ BackgroundListenerTests 2 2 0 0 57ms
✅ BackgroundReconciliationContractTests 8 8 0 0 34ms
✅ BackgroundSessionRoutingTests 6 6 0 0 341ms
✅ BackupExclusionMigrationTests 3 3 0 0 58ms
✅ BadgeDefinitionTests 33 33 0 0 3.38s
✅ BadgeServiceTests 16 16 0 0 207ms
✅ BadgeUnlockPhaseTests 4 4 0 0 53ms
✅ BadgesViewModelTests 14 14 0 0 135ms
✅ BasicAuthEmptyCredentialTests 4 4 0 0 46ms
✅ BearerTokenAdapterTests 5 5 0 0 89ms
✅ BearerTokenFulfillFlowTests 4 4 0 0 154ms
✅ BearerTokenRefreshTests 4 4 0 0 24ms
✅ BearerTokenResponseDetectionTests 7 7 0 0 375ms
✅ BeginningPositionPolicyTests 8 8 0 0 15ms
✅ BookAvailabilityFormatterTests 18 18 0 0 265ms
✅ BookButtonMapperHoldReadyTests 10 10 0 0 74ms
✅ BookButtonMapperTests 21 21 0 0 132ms
✅ BookButtonMapperViewModelTests 18 18 0 0 161ms
✅ BookButtonStateTests 8 8 0 0 144ms
✅ BookButtonTypeMetaTests 4 4 0 0 30ms
✅ BookButtonTypeTests 13 13 0 0 116ms
✅ BookCellModelActionTests 18 18 0 0 906ms
✅ BookCellModelCacheInvalidationTests 9 9 0 0 215ms
✅ BookCellModelCachePrefetchSafetyTests 9 9 0 0 229ms
✅ BookCellModelCacheTests 22 22 0 0 712ms
✅ BookCellModelComputedPropertyTests 19 19 0 0 606ms
✅ BookCellModelLCPProgressTests 7 7 0 0 529ms
✅ BookCellModelOfflineTests 9 9 0 0 215ms
✅ BookCellModelRegistryBindingTests 4 4 0 0 129ms
✅ BookCellModelStateTests 16 16 0 0 542ms
✅ BookCellModelStreamingHTMLTests 2 2 0 0 804ms
✅ BookCellStateComprehensiveTests 14 14 0 0 218ms
✅ BookContentResetServiceTests 2 2 0 0 55ms
✅ BookDetailButtonRoutingTests 4 4 0 0 18ms
✅ BookDetailInfoValueLinkTests 5 5 0 0 70ms
✅ BookDetailLCPContentProgressTests 7 7 0 0 363ms
✅ BookDetailMetadataHydrationTests 6 6 0 0 143ms
✅ BookDetailMetadataMergeContractTests 5 5 0 0 1.85s
✅ BookDetailOpenRoutingTests 3 3 0 0 139ms
✅ BookDetailViewModelAudiobookDismissTests 1 1 0 0 24ms
✅ BookDetailViewModelTests 91 91 0 0 3.48s
✅ BookFileManagerAccountScopingTests 5 5 0 0 326ms
✅ BookFileManagerSideloadResolutionTests 4 4 0 0 305ms
✅ BookFileManagerTests 8 8 0 0 78ms
✅ BookListViewAccessibilityTests 9 9 0 0 86ms
✅ BookPreviewTests 4 4 0 0 34ms
✅ BookRegistryReconciliationTableTests 10 10 0 0 90ms
✅ BookRegistryStoreTests 26 26 0 0 1.32s
✅ BookRegistrySyncReadinessTests 4 3 0 1 595ms
✅ BookRegistrySyncReentrancyTests 6 6 0 0 431ms
✅ BookRegistrySyncSideloadExemptionTests 2 2 0 0 220ms
✅ BookRegistrySyncTimeoutSeamTests 2 2 0 0 50ms
✅ BookReturnCleverReauthTests 1 1 0 0 18ms
✅ BookReturnServiceAuthCoordinatorTests 3 3 0 0 63ms
✅ BookReturnServiceContractTests 9 9 0 0 877ms
✅ BookReturnServiceTests 20 20 0 0 4.16s
✅ BookServiceAudiobookOpenTests 2 2 0 0 24ms
✅ BookStateIntegrationTests 8 8 0 0 75ms
✅ BookmarkBusinessLogicExtendedTests 6 6 0 0 434ms
✅ BookmarkDeviceIdMatchingTests 3 3 0 0 147ms
✅ BookmarkExistenceTests 4 4 0 0 420ms
✅ BookmarkManagerTests 24 24 0 0 641ms
✅ BookmarkSortingTests 1 1 0 0 55ms
✅ BookmarkSyncTests 3 3 0 0 257ms
✅ BorrowAdobeActivationStepTests 4 4 0 0 43ms
✅ BorrowAndDownloadIntegrationTests 7 7 0 0 705ms
✅ BorrowErrorMessageTests 13 13 0 0 79ms
✅ BorrowErrorPresenterTests 6 6 0 0 96ms
✅ BorrowOperationAuthCoordinatorTests 6 6 0 0 1.80s
✅ BorrowOperationCleverReauthTests 2 2 0 0 25ms
✅ BorrowOperationContractTests 8 8 0 0 1.14s
✅ BorrowOperationStreamingHTMLTests 3 3 0 0 71ms
✅ BorrowOperationTests 13 13 0 0 778ms
✅ BorrowOperationTimeoutTests 3 3 0 0 197ms
✅ BorrowReauthResettingTests 4 4 0 0 2.17s
✅ BorrowReducerContractTests 2 2 0 0 79ms
✅ BorrowReducerCoreContractTests 12 12 0 0 57ms
✅ BorrowReducerTests 21 21 0 0 559ms
✅ BundledRegistrySnapshotTests 5 5 0 0 256ms
✅ ButtonStateMonotonicClampTests 10 10 0 0 1.68s
✅ ButtonStateTests 16 16 0 0 465ms
✅ ButtonStyleTypeTests 2 2 0 0 5ms
✅ ButtonTapDebounceTests 7 7 0 0 190ms
✅ C64ConversionTests 6 6 0 0 15ms
✅ CarPlayAudiobookBridgePresenterMigrationTests 2 2 0 0 13ms
✅ CarPlayAuthHelperReadinessTests 3 3 0 0 242ms
✅ CarPlayChapterListTests 3 3 0 0 14ms
✅ CarPlayIntegrationTests 2 2 0 0 417ms
✅ CarPlayLibraryRefreshTests 3 3 0 0 42ms
✅ CarPlayNowPlayingTemplateTests 4 4 0 0 541ms
✅ CarPlayOpenAppAlertTests 6 6 0 0 2.15s
✅ CarPlayPlaybackErrorTests 8 8 0 0 291ms
✅ CarPlayTests 12 12 0 0 294ms
✅ CarPlayTimeTrackingTests 3 3 0 0 551ms
✅ CatalogAPIDedupeTests 3 3 0 0 499ms
✅ CatalogAPIEntryPointTests 1 1 0 0 2ms
✅ CatalogAccessibilityTests 8 8 0 0 90ms
✅ CatalogCacheKeyAndIsolationTests 12 12 0 0 270ms
✅ CatalogCacheMetadataExactBoundaryTests 4 4 0 0 39ms
✅ CatalogCacheMetadataTests 21 21 0 0 486ms
✅ CatalogCrawlSchedulerTests 9 9 0 0 251ms
✅ CatalogFeedModelTests 4 4 0 0 30ms
✅ CatalogFilterGroupModelTests 17 17 0 0 130ms
✅ CatalogFilterModelTests 17 17 0 0 105ms
✅ CatalogFilterServiceTests 29 29 0 0 1.95s
✅ CatalogFilterTests 1 1 0 0 2ms
✅ CatalogLaneAssemblyTests 7 7 0 0 34ms
✅ CatalogLaneFilterApplicationTests 4 4 0 0 114ms
✅ CatalogLaneModelStructTests 20 20 0 0 872ms
✅ CatalogLaneModelTests 3 3 0 0 128ms
✅ CatalogLaneMoreFilterStateTests 8 8 0 0 87ms
✅ CatalogLaneMoreViewModelTests 43 43 0 0 1.11s
✅ CatalogLaneRowViewAccessibilityTests 11 11 0 0 75ms
✅ CatalogLaneSortingTests 5 5 0 0 108ms
✅ CatalogLoadIntegrationTests 6 6 0 0 85ms
✅ CatalogOPDS2NegotiationTests 12 12 0 0 193ms
✅ CatalogPreloaderTests 6 6 0 0 87ms
✅ CatalogProblemDocumentTests 6 6 0 0 40ms
✅ CatalogRepositoryCoreTests 9 9 0 0 542ms
✅ CatalogRepositoryStaleWhileRevalidateTests 12 12 0 0 483ms
✅ CatalogRepositoryTests 19 19 0 0 346ms
✅ CatalogSearchViewModelRegistryUpdateTests 5 5 0 0 712ms
✅ CatalogSearchViewModelTests 67 67 0 0 5.64s
✅ CatalogSelectorsTests 2 2 0 0 9ms
✅ CatalogSortServiceTests 14 14 0 0 162ms
✅ CatalogStateTests 7 7 0 0 25ms
✅ CatalogViewLibraryIconTests 2 2 0 0 67ms
✅ CatalogViewModelStateMachineTests 19 19 0 0 1.18s
✅ ChaosFaultInjectionTests 5 5 0 0 86ms
✅ ChapterChangeDetectorTests 5 5 0 0 14ms
✅ ChapterScrubberChromeVisibilityTests 4 4 0 0 52ms
✅ ChapterScrubberModelTests 35 35 0 0 290ms
✅ ChapterScrubberReadoutTests 11 11 0 0 91ms
✅ ChapterScrubberTOCResolutionTests 5 5 0 0 27ms
✅ ChapterScrubberViewTests 31 31 0 0 251ms
✅ ChapterTOCNormalizerTests 7 7 0 0 51ms
✅ CirculationAnalyticsTests 4 4 0 0 8ms
✅ ColdStartResumeIntegrationTests 10 10 0 0 14.52s
✅ ColorExtensionTests 5 5 0 0 74ms
✅ ConcurrentBookStateTests 3 3 0 0 59ms
✅ ConcurrentDownloadStateTests 3 3 0 0 49ms
✅ ConcurrentTokenRefreshTests 2 2 0 0 823ms
✅ ContinuousPlaybackTrackingTests 3 3 0 0 474ms
✅ CookiePersistenceTests 10 10 0 0 5.67s
✅ CoverSourceBadResponseCacheTests 3 3 0 0 59ms
✅ CrawlStateTests 16 16 0 0 151ms
✅ CrawlableFeedAnalysisTests 17 17 0 0 137ms
✅ CrawlerFallbackTests 12 12 0 0 681ms
✅ CredentialEdgeCaseTests 6 6 0 0 64ms
✅ CredentialPrivacyTests 4 4 0 0 145ms
✅ CredentialPromptCoordinatorTests 4 4 0 0 59ms
✅ CredentialSnapshotInvalidationTests 5 5 0 0 1.59s
✅ CredentialStoreCharacterizationTests 7 7 0 0 642ms
✅ CrossDeviceBookmarkSyncTests 12 12 0 0 126ms
✅ CrossDeviceSyncE2ETests 10 10 0 0 9.92s
✅ CrossDomain401Tests 8 8 0 0 94ms
✅ CrossFormatMappingTests 14 14 0 0 108ms
✅ DPLAErrorTests 3 3 0 0 137ms
✅ DRMAdversarialTests 4 4 0 0 65ms
✅ DRMFulfilledPublicationTests 6 6 0 0 35ms
✅ DataBase64Tests 3 3 0 0 52ms
✅ DataReceptionComparisonTests 2 2 0 0 26ms
✅ DateExtensionTests 9 9 0 0 2.51s
✅ DateFormattingTests 4 4 0 0 12ms
✅ DebugSettingsForceSkeletonsTests 4 4 0 0 54ms
✅ DebugSettingsGapTests 4 4 0 0 30ms
✅ DebugSettingsTests 31 31 0 0 1.61s
✅ DefaultCatalogAPITests 31 31 0 0 406ms
✅ DeriveInitialStateTests 4 4 0 0 50ms
✅ DeveloperSettingsEngineeringTierTests 4 4 0 0 129ms
✅ DeveloperSettingsViewModelOverrideTests 3 3 0 0 56ms
✅ DeviceLogCollectorGapTests 2 2 0 0 13ms
✅ DeviceLogCollectorTests 13 13 0 0 236ms
✅ DeviceOrientationTests 7 7 0 0 94ms
✅ DeviceSpecificErrorMonitorTests 11 11 0 0 68ms
✅ DictionaryExtensionsTests 5 5 0 0 32ms
✅ DiskBudgetManagerTests 7 7 0 0 201ms
✅ DiskBudgetTests 2 2 0 0 12ms
✅ DownloadAccountContextAdapterTests 11 11 0 0 382ms
✅ DownloadAlertPresenterTests 8 8 0 0 186ms
✅ DownloadAnnouncementServiceTests 12 12 0 0 107ms
✅ DownloadAuthChallengeWitnessTests 13 13 0 0 532ms
✅ DownloadAuthRetryHandlerAuthCoordinatorTests 6 6 0 0 5.13s
✅ DownloadAuthRetryHandlerTaskLifecycleTests 4 4 0 0 517ms
✅ DownloadAuthRetryHandlerTests 17 17 0 0 2.39s
✅ DownloadCancellationHandlerTests 7 7 0 0 107ms
✅ DownloadCompleteMomentTests 6 6 0 0 24ms
✅ DownloadCompletionParserTests 9 9 0 0 309ms
✅ DownloadCoordinatorIntegrationTests 10 10 0 0 208ms
✅ DownloadCoordinatorTests 11 11 0 0 112ms
✅ DownloadDiskSpaceTests 2 2 0 0 44ms
✅ DownloadErrorInfoTests 3 3 0 0 13ms
✅ DownloadErrorRecoveryPolicyTests 11 11 0 0 197ms
✅ DownloadErrorRecoveryTests 3 3 0 0 38ms
✅ DownloadFreeSpaceExhaustionTests 11 11 0 0 114ms
✅ DownloadInfoTests 5 5 0 0 50ms
✅ DownloadIntegrityTests 10 10 0 0 810ms
✅ DownloadOnlyOnWiFiTests 10 10 0 0 88ms
✅ DownloadPersistenceStoreTests 5 5 0 0 109ms
✅ DownloadProgressPublisherCoreTests 29 29 0 0 1.37s
✅ DownloadQueueIntegrationTests 3 3 0 0 50ms
✅ DownloadQueueOrchestratorTests 9 9 0 0 174ms
✅ DownloadRMSDKHandoffTests 13 13 0 0 4.14s
✅ DownloadReconciliationLaunchOrderContractTests 2 2 0 0 22ms
✅ DownloadReconciliationTests 29 29 0 0 199ms
✅ DownloadRedirectTests 7 7 0 0 52ms
✅ DownloadReissuePersistenceTests 19 19 0 0 1.57s
✅ DownloadResumeAfterKillTests 7 7 0 0 140ms
✅ DownloadSlotManagementTests 5 5 0 0 62ms
✅ DownloadStartCoordinatorContractTests 5 5 0 0 102ms
✅ DownloadStartCoordinatorTests 11 11 0 0 1.94s
✅ DownloadStartDispatcherContractTests 12 12 0 0 99ms
✅ DownloadStartDispatcherTests 26 26 0 0 177ms
✅ DownloadStartReducerContractTests 24 24 0 0 457ms
✅ DownloadStateMachineIntegrationTests 15 15 0 0 327ms
✅ DownloadStateMachineTests 5 5 0 0 44ms
✅ DownloadStateManagerTests 16 16 0 0 557ms
✅ DownloadTaskLifecycleServiceTests 9 9 0 0 133ms
✅ DownloadTaskPersistenceTests 14 14 0 0 117ms
✅ DownloadThrottlingContractTests 2 2 0 0 17ms
✅ DownloadThrottlingServiceTests 10 10 0 0 300ms
✅ DownloadTransferRetryTests 6 6 0 0 2.20s
✅ DownloadWatchdogTests 3 3 0 0 15ms
✅ EPUBKeyCommandsPP4289Tests 4 4 0 0 11ms
✅ EPUBModuleTests 4 4 0 0 39ms
✅ EPUBPositionTests 10 10 0 0 140ms
✅ EPUBSearchViewModelTests 18 18 0 0 222ms
✅ EPUBToolbarToggleTests 11 11 0 0 171ms
✅ EffectBoundaryTests 6 6 0 0 37ms
✅ EmailAddressTests 16 16 0 0 299ms
✅ EpubSampleFactoryTests 5 5 0 0 50ms
✅ ErrorActivityTrackerTests 12 12 0 0 176ms
✅ ErrorDetailTests 14 14 0 0 1.20s
✅ ErrorDetailViewControllerGapTests 3 3 0 0 78ms
✅ ErrorDetailViewControllerTests 14 14 0 0 204ms
✅ ErrorLogExporterTests 5 5 0 0 87ms
✅ ExecutorNetworkHermeticityTests 1 1 0 0 15ms
✅ ExpiredLoanStringsTests 5 5 0 0 50ms
✅ FCMRegistrationReadinessLintTests 18 18 0 0 182ms
✅ FacetEnumTests 3 3 0 0 228ms
✅ FacetToolbarAccessibilityTests 5 5 0 0 81ms
✅ FacetViewModelLogoDelegateTests 4 4 0 0 97ms
✅ FacetViewModelTests 18 18 0 0 3.49s
✅ FetchManifestWithBearerTokenLCPSafetyTests 1 1 0 0 20ms
✅ FetchManifestWithBearerTokenTests 9 9 0 0 180ms
✅ FetchOpenAccessManifestLCPSafetyTests 4 4 0 0 29ms
✅ FileURLGenerationTests 3 3 0 0 30ms
✅ FindawayChapterStatusGuardTests 1 1 0 0 7ms
✅ FindawaySavedVsPlayedTests 1 1 0 0 20ms
✅ FloatTPPAdditionsTests 5 5 0 0 85ms
✅ FocusIndicationTests 7 7 0 0 36ms
✅ FontManagerTests 17 17 0 0 180ms
✅ ForceResetTests 6 6 0 0 92ms
✅ GeneralCacheClearOnUpdateTests 3 3 0 0 54ms
✅ GeneralCacheTests 20 20 0 0 1.27s
✅ GroupEnumTests 1 1 0 0 16ms
✅ HTMLTextViewTests 70 70 0 0 33.26s
✅ HalfSheetProgressCueTests 11 11 0 0 50ms
✅ HoldNotificationClassificationTests 2 2 0 0 10ms
✅ HoldsBadgeCountTests 9 9 0 0 174ms
✅ HoldsBookViewModelTests 8 8 0 0 535ms
✅ HoldsReducerTests 11 11 0 0 74ms
✅ HoldsSyncFailureTests 12 12 0 0 3.69s
✅ HoldsViewModelTests 23 23 0 0 373ms
✅ HostFailureTrackerTests 2 2 0 0 14ms
✅ ImageCacheOffMainIsolationTests 2 2 0 0 126ms
✅ ImageCacheTypeTests 1 1 0 0 2ms
✅ ImageCoverKeyUnificationTests 2 2 0 0 30ms
✅ ImageLoaderTests 14 14 0 0 251ms
✅ InflightFeedFetchesTimeoutTests 4 4 0 0 10.37s
✅ IntExtensionsTests 4 4 0 0 214ms
✅ IsReaderActiveTrackingModifierTests 4 4 0 0 25ms
✅ KeyboardNavigationFKATests 11 11 0 0 585ms
✅ KeyboardNavigationHandlerTests 16 16 0 0 157ms
✅ KeyboardVoiceOverTests 5 5 0 0 65ms
✅ LCPAcquisitionPredicateTests 4 4 0 0 10ms
✅ LCPAdapterTests 8 8 0 0 403ms
✅ LCPAudiobookURLSchemeTests 4 4 0 0 22ms
✅ LCPAudiobooksTests 24 24 0 0 358ms
✅ LCPBotanCRLGuardTests 5 5 0 0 49ms
✅ LCPCharacterizationTests 31 31 0 0 3.18s
✅ LCPClientTests 9 9 0 0 77ms
✅ LCPKeychainMigrationTests 3 3 0 0 91ms
✅ LCPLibraryServiceTests 20 20 0 0 202ms
✅ LCPLicenseDocumentDetectionTests 5 5 0 0 74ms
✅ LCPLicenseFilePathTests 3 3 0 0 123ms
✅ LCPOrphanedDownloadRegistryTests 4 4 0 0 19ms
✅ LCPPDFAcquisitionPredicateTests 5 5 0 0 74ms
✅ LCPPDFDiskExtractTests 5 5 0 0 62ms
✅ LCPPDFOpenProgressTests 13 13 0 0 201ms
✅ LCPPassphraseReadinessTests 2 2 0 0 19ms
✅ LCPSessionIdentifierTests 3 3 0 0 9ms
✅ LegacySAMLProblemDocumentPropagationTests 7 7 0 0 356ms
✅ LibrariesSectionViewModelTests 16 16 0 0 143ms
✅ LibraryCatalogMergerTests 9 9 0 0 80ms
✅ LibraryIconInertLintTests 1 1 0 0 640ms
✅ LibraryRegistryCrawlerTests 15 15 0 0 697ms
✅ LicensesServiceTests 4 4 0 0 297ms
✅ LiveCrawlableParsingTest 4 0 0 4 29ms
✅ LiveDownloadTaskBoxTests 9 9 0 0 184ms
✅ LoanEvictionPolicyTests 13 13 0 0 42ms
✅ LoanRenewalServiceTests 9 9 0 0 94ms
✅ LocalBookContentServiceTests 25 25 0 0 2.51s
✅ LocalFileAdapterTests 6 6 0 0 59ms
✅ LogTests 13 13 0 0 389ms
✅ LoginKeyboardTests 8 8 0 0 36ms
✅ MainActorHelpersTests 22 22 0 0 935ms
✅ ManifestFixtureTests 2 2 0 0 8ms
✅ MappedCatalogBridgeTests 3 3 0 0 28ms
✅ MappedCatalogModelTests 11 11 0 0 820ms
✅ MarqueeTextTests 5 5 0 0 17ms
✅ MockBackendExpiredCredentialsTests 3 3 0 0 70ms
✅ MockBackendHoldsTests 3 3 0 0 45ms
✅ MockBackendIntegrationTests 4 4 0 0 149ms
✅ MockBackendLoanLimitTests 2 2 0 0 26ms
✅ MockBackendRouteMatchingTests 4 4 0 0 61ms
✅ MockBackendServerDownTests 1 1 0 0 14ms
✅ MockIsolationLintTests 5 5 0 0 3.92s
✅ MyBooksDownloadCenterAccountIdThreadingTests 7 7 0 0 525ms
✅ MyBooksDownloadCenterAccountScopeSeamTests 7 7 0 0 99ms
✅ MyBooksDownloadCenterAdeptGapTests 3 3 0 0 15ms
✅ MyBooksDownloadCenterConcurrencyTests 22 22 0 0 365ms
✅ MyBooksDownloadCenterEvictionTests 7 7 0 0 225ms
✅ MyBooksDownloadCenterOfflineTests 8 8 0 0 213ms
✅ MyBooksDownloadCenterProgressPublishingTests 2 2 0 0 38ms
✅ MyBooksDownloadSessionInvalidationTests 3 3 0 0 102ms
✅ MyBooksSimplifiedBearerTokenTests 17 17 0 0 120ms
✅ MyBooksViewModelBooksPublisherTests 3 3 0 0 46ms
✅ MyBooksViewModelConcurrencyTests 4 4 0 0 96ms
✅ MyBooksViewModelDownloadStateTests 3 3 0 0 39ms
✅ MyBooksViewModelEmptyArrayTests 3 3 0 0 59ms
✅ MyBooksViewModelEmptyStateTests 4 4 0 0 62ms
✅ MyBooksViewModelExtendedTests 15 15 0 0 320ms
✅ MyBooksViewModelFacetIntegrationTests 4 4 0 0 78ms
✅ MyBooksViewModelFacetPublisherTests 5 5 0 0 64ms
✅ MyBooksViewModelFilterSortInteractionTests 2 2 0 0 22ms
✅ MyBooksViewModelFilterTests 9 9 0 0 101ms
✅ MyBooksViewModelGuardConditionsTests 2 2 0 0 28ms
✅ MyBooksViewModelLargeDatasetTests 2 2 0 0 339ms
✅ MyBooksViewModelLoadAccountTests 2 2 0 0 198ms
✅ MyBooksViewModelLoginStateTests 4 4 0 0 404ms
✅ MyBooksViewModelMultipleAuthorSortingTests 3 3 0 0 23ms
✅ MyBooksViewModelNotificationTests 4 4 0 0 600ms
✅ MyBooksViewModelOfflineFilteringTests 3 3 0 0 18ms
✅ MyBooksViewModelPublisherTests 7 7 0 0 138ms
✅ MyBooksViewModelSearchEdgeCaseTests 6 6 0 0 112ms
✅ MyBooksViewModelSearchQueryTests 3 3 0 0 21ms
✅ MyBooksViewModelSortPersistenceTests 3 3 0 0 33ms
✅ MyBooksViewModelSortingIntegrationTests 5 5 0 0 33ms
✅ MyBooksViewModelSortingTests 6 6 0 0 43ms
✅ MyBooksViewModelStateTransitionTests 3 3 0 0 357ms
✅ MyBooksViewModelUIBindingTests 3 3 0 0 38ms
✅ NSErrorAdditionsTests 7 7 0 0 12ms
✅ NSNotificationTPPTests 3 3 0 0 38ms
✅ NavigationCoordinatorHubTests 11 11 0 0 361ms
✅ NavigationCoordinatorTests 18 18 0 0 528ms
✅ NavigationFreezePreventionTests 5 5 0 0 25ms
✅ NetworkCacheClearRoutingTests 3 3 0 0 79ms
✅ NetworkExecutorCredentialGuardTests 8 8 0 0 252ms
✅ NetworkExecutorResponseRegressionTests 4 4 0 0 58ms
✅ NetworkExecutorTaskTypeTests 3 3 0 0 31ms
✅ NetworkOfflineDetectionTests 3 3 0 0 320ms
✅ NetworkQueueTests 22 22 0 0 1.78s
✅ NetworkRequestQueueTests 2 2 0 0 10.12s
✅ NetworkResponderAuthChallengeWitnessTests 13 13 0 0 408ms
✅ NetworkRetryLogicTests 7 7 0 0 89ms
✅ NetworkTimeoutTests 2 2 0 0 2ms
✅ NotificationEventTypeContractTests 7 7 0 0 149ms
✅ NotificationPayloadContractTests 10 10 0 0 1.41s
✅ NotificationServiceReadinessGateTests 4 4 0 0 1.91s
✅ NotificationServiceStateMachineTests 9 9 0 0 5.49s
✅ NotificationServiceTests 16 16 0 0 90ms
✅ NotificationServiceTokenTests 25 25 0 0 142ms
✅ NotificationSyncThrottleTests 5 5 0 0 51ms
✅ NotificationTokenDataTests 4 4 0 0 21ms
✅ NotificationTokenRegistrationTests 10 10 0 0 63ms
✅ NowPlayingCoordinatorBackgroundTests 6 6 0 0 1.57s
✅ NowPlayingCoordinatorTests 19 19 0 0 602ms
✅ OAuthSAMLRedirectRegressionTests 4 4 0 0 423ms
✅ OIDCAuthDocumentParsingTests 4 4 0 0 929ms
✅ OIDCAuthTypeTests 5 5 0 0 8ms
✅ OIDCAuthenticationPropertyTests 8 8 0 0 479ms
✅ OIDCCallbackEdgeCaseTests 9 9 0 0 713ms
✅ OIDCCallbackHandlingTests 5 5 0 0 317ms
✅ OIDCCallbackSchemeTests 3 3 0 0 18ms
✅ OIDCIsolationRegressionTests 6 6 0 0 1.99s
✅ OIDCLoginRoutingTests 3 3 0 0 1.08s
✅ OIDCMakeRequestTests 3 3 0 0 226ms
✅ OIDCNSCodingTests 1 1 0 0 41ms
✅ OIDCNetworkLayer401Tests 5 5 0 0 338ms
✅ OIDCReauthOnExpiredTokenTests 5 5 0 0 408ms
✅ OIDCRedirectURIConstructionTests 6 6 0 0 698ms
✅ OIDCRegressionTests 9 9 0 0 583ms
✅ OIDCSelectedAuthenticationTests 2 2 0 0 139ms
✅ OIDCSignOutRegressionTests 6 6 0 0 567ms
✅ OIDCTokenRefreshRegressionTests 6 6 0 0 272ms
✅ OIDCUpdateUserAccountTests 5 5 0 0 421ms
✅ OIDCViewModelRegressionTests 1 1 0 0 34ms
✅ OIDCViewModelSignInTests 2 2 0 0 47ms
✅ OPDS1BorrowEntryContractTests 4 4 0 0 25ms
✅ OPDS1CatalogGroupedContractTests 3 3 0 0 28ms
✅ OPDS1HoldEntriesContractTests 4 4 0 0 78ms
✅ OPDS1LoansFeedContractTests 6 6 0 0 68ms
✅ OPDS1ParsingTests 34 34 0 0 1.78s
✅ OPDS1RevokeResponseContractTests 2 2 0 0 9ms
✅ OPDS2AuthenticationDocumentTests 18 18 0 0 241ms
✅ OPDS2AvailabilityTests 4 4 0 0 196ms
✅ OPDS2BookBridgeTests 44 44 0 0 527ms
✅ OPDS2BorrowResponseContractTests 3 3 0 0 28ms
✅ OPDS2CatalogWiringTests 21 21 0 0 882ms
✅ OPDS2CatalogsFeedTests 3 3 0 0 143ms
✅ OPDS2ContributorTests 2 2 0 0 4ms
✅ OPDS2EmptyFeedContractTests 1 1 0 0 3ms
✅ OPDS2FeedContractTests 4 4 0 0 37ms
✅ OPDS2FeedParsingTests 11 11 0 0 500ms
✅ OPDS2FeedTests 14 14 0 0 786ms
✅ OPDS2FullMetadataTests 4 4 0 0 6ms
✅ OPDS2FullPublicationTests 13 13 0 0 71ms
✅ OPDS2IntegrationTests 18 18 0 0 323ms
✅ OPDS2LinkArrayTests 5 5 0 0 261ms
✅ OPDS2LinkComputedPropertyTests 20 20 0 0 155ms
✅ OPDS2LinkRelTests 1 1 0 0 <1ms
✅ OPDS2LinkTests 2 2 0 0 72ms
✅ OPDS2ParsingTests 38 38 0 0 390ms
✅ OPDS2PublicationExtendedTests 53 53 0 0 892ms
✅ OPDS2PublicationImageTests 6 6 0 0 57ms
✅ OPDS2PublicationNarratorTests 3 3 0 0 289ms
✅ OPDS2PublicationTests 2 2 0 0 74ms
✅ OPDS2SamlIDPTests 6 6 0 0 56ms
✅ OPDS2SearchResultsContractTests 3 3 0 0 10ms
✅ OPDS2SubjectTests 2 2 0 0 211ms
✅ OPDS2SupportingTypesTests 5 5 0 0 31ms
✅ OPDSAcquisitionPathExpandedTests 15 15 0 0 216ms
✅ OPDSFeedCacheTests 14 14 0 0 149ms
✅ OPDSFeedMigrationTests 11 11 0 0 67ms
✅ OPDSFeedParsingTests 2 2 0 0 64ms
✅ OPDSFeedServiceStateMachineTests 3 3 0 0 221ms
✅ OPDSFeedServiceTests 2 2 0 0 61ms
✅ OPDSFormatTests 13 13 0 0 203ms
✅ OPDSParserCoreTests 4 4 0 0 76ms
✅ OPDSParserTests 4 4 0 0 30ms
✅ OPDSParsingTests 57 57 0 0 10.09s
✅ OfflineActionTests 29 29 0 0 2.10s
✅ OfflineQueueCoordinatorTests 11 11 0 0 139ms
✅ OfflineQueueServiceExtendedTests 13 13 0 0 164ms
✅ OfflineQueueServiceTests 17 17 0 0 397ms
✅ OpenAccessAdapterTests 13 13 0 0 324ms
✅ OverdriveDeferredFulfillmentTests 6 6 0 0 15ms
✅ OverdriveDownloadHandlerTests 9 9 0 0 156ms
✅ OverdriveFulfillmentTests 25 25 0 0 560ms
✅ PDFExtensionsTests 20 20 0 0 165ms
✅ PDFKitThumbnailProviderTests 5 5 0 0 100ms
✅ PDFReaderTests 12 12 0 0 74ms
✅ PDFSearchEmptyStateTests 4 4 0 0 35ms
✅ PP3596RegressionTests 3 3 0 0 113ms
✅ PalaceCheckPropertyTests 8 8 0 0 721ms
✅ PalaceErrorCategoryTests 20 20 0 0 631ms
✅ PalaceErrorExtendedTests 23 23 0 0 135ms
✅ PalaceErrorTests 11 11 0 0 110ms
✅ PalaceHapticTests 4 4 0 0 44ms
✅ PalaceMotionTests 11 11 0 0 298ms
✅ PalacePDFViewTests 12 12 0 0 128ms
✅ PalacePressableButtonStyleTests 6 6 0 0 54ms
✅ PalaceTestSetupObservationTests 4 4 0 0 27ms
✅ PalaceWiringTestCaseTests 4 4 0 0 58ms
✅ ParserFuzzTests 4 4 0 0 28.19s
✅ PatronProfileContractTests 4 4 0 0 34ms
✅ PerformanceMonitorTests 14 14 0 0 327ms
✅ PerformanceReportTests 14 14 0 0 1.12s
✅ PersistentLoggerTests 9 9 0 0 1.55s
✅ PlaybackBootstrapperAudioSessionTests 2 2 0 0 35ms
✅ PlaybackBootstrapperTests 8 8 0 0 140ms
✅ PlaybackFailureRecordTests 5 5 0 0 32ms
✅ PlaybackOpenPolicyTests 7 7 0 0 52ms
✅ PlaybackRateTests 18 18 0 0 79ms
✅ PlaybackTrackingRegressionTests 5 5 0 0 83ms
✅ PositionPersistenceLogicTests 6 6 0 0 54ms
✅ PositionPersistenceTests 2 2 0 0 136ms
✅ PositionSyncServiceTests 13 13 0 0 555ms
✅ PositionSyncTests 5 5 0 0 15ms
✅ PositionWriterContractTests 6 6 0 0 82ms
✅ PostUpdateMigrationTests 5 5 0 0 58ms
✅ ProblemDocumentContractTests 4 4 0 0 12ms
✅ ProblemDocumentLoanExpiryTests 5 5 0 0 17ms
✅ ProblemDocumentTests 12 12 0 0 179ms
✅ ProblemReportEmailTests 8 8 0 0 143ms
✅ RatingCardMotionGateTests 5 5 0 0 24ms
✅ RatingEligibilityPolicyTests 17 17 0 0 174ms
✅ RatingEngagementTrackerTests 9 9 0 0 198ms
✅ RatingFeedbackPresenterTests 3 3 0 0 7ms
✅ RatingPromptPresenterTests 21 21 0 0 949ms
✅ ReachabilityTests 10 10 0 0 38ms
✅ Reader2BookmarkContractTests 3 3 0 0 65ms
✅ Reader2PositionAdapterContractTests 4 3 0 1 319ms
✅ Reader2PositionResumeContractTests 3 3 0 0 299ms
✅ ReaderAccessibilityTests 7 7 0 0 217ms
✅ ReaderChromeToggleFadeTests 3 3 0 0 40ms
✅ ReaderEditingActionsTests 5 5 0 0 70ms
✅ ReaderErrorTests 5 5 0 0 35ms
✅ ReaderNavBarVoiceOverTests 2 2 0 0 8ms
✅ ReaderServicePDFRouteTests 3 3 0 0 28ms
✅ ReaderServiceRouteOwnershipTests 8 8 0 0 184ms
✅ ReaderServiceSyncTests 3 3 0 0 434ms
✅ ReaderThemeTests 24 24 0 0 114ms
✅ ReadingPositionTests 22 22 0 0 235ms
✅ ReadingSessionTrackerTests 13 13 0 0 296ms
✅ ReadingStatsServiceTests 12 12 0 0 200ms
✅ ReadingStatsStoreTests 9 9 0 0 124ms
✅ RedirectHandlingIntegrationTests 4 4 0 0 25ms
✅ RedirectPolicyTests 9 9 0 0 139ms
✅ RegistryDownloadServicingSeamTests 3 3 0 0 63ms
✅ RegistryFileRecoveryTests 23 23 0 0 130ms
✅ RemoteFeatureFlagsGapTests 4 4 0 0 3.39s
✅ RemoteFeatureFlagsSideLoadingTests 5 5 0 0 30ms
✅ RemoteFeatureFlagsTests 21 21 0 0 10.89s
✅ ResourcePropertiesLengthTests 3 3 0 0 7ms
✅ RetryClassificationTests 17 17 0 0 123ms
✅ ReturnFlowTests 1 1 0 0 24ms
✅ ReturnReducerContractTests 16 16 0 0 156ms
✅ RightsManagementDetectionTests 5 5 0 0 9ms
✅ RightsManagementDispatchContractTests 8 8 0 0 59ms
✅ RightsManagementDispatcherTests 10 10 0 0 155ms
✅ RuntimeQuiescenceGateTests 11 10 0 1 1.47s
✅ RuntimeQuiescenceLintTests 5 5 0 0 1.55s
✅ SAMLCookieSyncTests 5 5 0 0 76ms
✅ SAMLLogoutCallbackDetectionTests 4 4 0 0 7ms
✅ SAMLLogoutLinkParsingTests 5 5 0 0 75ms
✅ SAMLLogoutURLTests 4 4 0 0 22ms
✅ SAMLPlusBiblioBoardExpirationTests 8 8 0 0 931ms
✅ SEMigrationsTests 6 6 0 0 476ms
✅ SafeDictionaryTests 21 21 0 0 237ms
✅ SamplePlayerErrorTests 5 5 0 0 28ms
✅ SampleTypeTests 8 8 0 0 698ms
✅ SceneDelegateTests 1 1 0 0 <1ms
✅ ScopedResetTests 9 9 0 0 154ms
✅ SearchAccessibilityTests 11 11 0 0 43ms
✅ SearchFlowIntegrationTests 8 8 0 0 107ms
✅ SettingsViewModelComputedPropertyTests 6 6 0 0 1.30s
✅ SettingsViewModelEdgeCaseTests 7 7 0 0 100ms
✅ SettingsViewModelGapTests 1 1 0 0 2ms
✅ SettingsViewModelSyncTests 14 14 0 0 193ms
✅ SettingsViewModelTests 33 33 0 0 640ms
✅ SideloadBoundaryTests 6 6 0 0 363ms
✅ SideloadImportContractTests 1 1 0 0 36ms
✅ SideloadedBookManagerTests 17 17 0 0 904ms
✅ SideloadedBookRegistryTests 14 14 0 0 274ms
✅ SideloadedLaneBridgeTests 6 6 0 0 30ms
✅ SideloadedLaneViewModelTests 7 7 0 0 580ms
✅ SignInFormPresentationTests 3 3 0 0 95ms
✅ SignInModalLifecycleTests 9 9 0 0 1.14s
✅ SignInModalPredicateTests 3 3 0 0 28ms
✅ SignInModalSAMLOIDCTests 6 6 0 0 382ms
✅ SignInOAuthErrorPropagationTests 8 8 0 0 2.16s
✅ SignInRequestServiceCharacterizationTests 11 11 0 0 838ms
✅ SignInToReadFlowIntegrationTests 5 5 0 0 542ms
✅ SignInWebSheetViewModelTests 31 31 0 0 364ms
✅ SignOutCacheClearingTests 3 3 0 0 14ms
✅ SingletonResetRegistryTests 5 5 0 0 71ms
✅ SkeletonTests 22 22 0 0 268ms
✅ StatsViewModelTests 10 10 0 0 370ms
✅ StatusAnnouncementTests 22 22 0 0 1.89s
✅ StopPositionSaveTests 2 2 0 0 4ms
✅ StoreTests 5 5 0 0 77ms
✅ StreamingReaderPresentationContractTests 1 1 0 0 6ms
✅ StreamingReaderProgressStoreTests 7 7 0 0 168ms
✅ StreamingReaderViewControllerScrollRestoreTests 12 12 0 0 760ms
✅ StreamingReaderViewModelTests 9 9 0 0 39ms
✅ StringExtensionTests 8 8 0 0 23ms
✅ StringExtensionsTests 3 3 0 0 99ms
✅ StringHTMLEntitiesTests 7 7 0 0 33ms
✅ StringNYPLAdditionsTests 4 4 0 0 6ms
✅ String_NYPLAdditionsTests 4 4 0 0 17ms
✅ SupportSectionDecisionTests 5 5 0 0 35ms
✅ SyncConflictResolutionTests 3 3 0 0 29ms
✅ SyncDeletionGuardTests 5 5 0 0 37ms
✅ SyncDeletionRatioTests 6 6 0 0 12ms
✅ SyncPermissionTests 5 5 0 0 199ms
✅ TPPAccountAuthStateEnumTests 5 5 0 0 31ms
✅ TPPAccountListDataSourceTests 3 3 0 0 5ms
✅ TPPAdobeActivationSkipTests 6 6 0 0 390ms
✅ TPPAgeCheckCompletionTests 5 5 0 0 208ms
✅ TPPAgeCheckIsValidTests 5 5 0 0 32ms
✅ TPPAgeCheckStateMachineTests 4 4 0 0 1.68s
✅ TPPAgeCheckTests 6 6 0 0 1.52s
✅ TPPAgeCheckVerifyDecisionTests 5 5 0 0 158ms
✅ TPPAlertUtilsTests 45 45 0 0 29.28s
✅ TPPAnnotationsHermeticTests 27 27 0 0 1.31s
✅ TPPAnnotationsOverrideTests 4 4 0 0 155ms
✅ TPPAnnotationsTests 29 29 0 0 2.77s
✅ TPPAnnouncementManagerTests 3 3 0 0 124ms
✅ TPPAuthDocumentContractTests 3 3 0 0 51ms
✅ TPPBackgroundExecutorTests 3 3 0 0 40ms
✅ TPPBadgeImageGapTests 2 2 0 0 9ms
✅ TPPBaseReaderViewControllerInitialLocationTests 10 10 0 0 117ms
✅ TPPBasicAuthTests 13 13 0 0 84ms
✅ TPPBookAccessibilityLabelTests 8 8 0 0 66ms
✅ TPPBookAuthorCoverageTests 3 3 0 0 42ms
✅ TPPBookAuthorTests 6 6 0 0 84ms
✅ TPPBookBearerTokenTests 9 9 0 0 114ms
✅ TPPBookButtonsStateTests 7 7 0 0 52ms
✅ TPPBookContentMetadataFilesHelperTests 9 9 0 0 41ms
✅ TPPBookContentTypeConverterStreamingHTMLTests 2 2 0 0 179ms
✅ TPPBookContentTypeConverterTests 4 4 0 0 24ms
✅ TPPBookContentTypeExtendedTests 4 4 0 0 46ms
✅ TPPBookContentTypeTests 14 14 0 0 79ms
✅ TPPBookCoverCacheLookupTests 8 8 0 0 17ms
✅ TPPBookCoverRegistryTests 17 17 0 0 1.09s
✅ TPPBookCreationTests 7 7 0 0 302ms
✅ TPPBookExtensionsTests 21 21 0 0 391ms
✅ TPPBookIsDRMProtectedTests 9 9 0 0 69ms
✅ TPPBookLocationCoverageTests 7 7 0 0 138ms
✅ TPPBookLocationEdgeCaseTests 27 27 0 0 224ms
✅ TPPBookLocationKeyTests 3 3 0 0 25ms
✅ TPPBookLocationTests 11 11 0 0 79ms
✅ TPPBookModelGapTests 4 4 0 0 46ms
✅ TPPBookRegistryAccountCaptureContractTests 4 4 0 0 231ms
✅ TPPBookRegistryAsyncReadinessTests 3 3 0 0 179ms
✅ TPPBookRegistryAtomicWriteTests 7 7 0 0 649ms
✅ TPPBookRegistryBookRetrievalTests 7 7 0 0 101ms
✅ TPPBookRegistryBookmarkTests 7 7 0 0 206ms
✅ TPPBookRegistryCorruptedDataTests 5 5 0 0 196ms
✅ TPPBookRegistryDataTests 4 4 0 0 71ms
✅ TPPBookRegistryDependencyTests 4 4 0 0 72ms
✅ TPPBookRegistryFacadeContractTests 6 6 0 0 112ms
✅ TPPBookRegistryFulfillmentIdTests 4 4 0 0 40ms
✅ TPPBookRegistryLargeCorpusTests 5 5 0 0 1m 29s
✅ TPPBookRegistryLoadReentrancyTests 3 3 0 0 208ms
✅ TPPBookRegistryLocationTests 4 4 0 0 135ms
✅ TPPBookRegistryMigrationTests 16 16 0 0 833ms
✅ TPPBookRegistryMutationContractTests 10 10 0 0 314ms
✅ TPPBookRegistryPersistenceTests 10 10 0 0 771ms
✅ TPPBookRegistryProcessingTests 2 2 0 0 26ms
✅ TPPBookRegistryPublisherTests 6 6 0 0 144ms
✅ TPPBookRegistryRebuildRefusalContractTests 1 1 0 0 38ms
✅ TPPBookRegistryRecordPersistenceTests 3 3 0 0 27ms
✅ TPPBookRegistryRecordTests 10 10 0 0 157ms
✅ TPPBookRegistryStateConcurrencyTests 2 2 0 0 109ms
✅ TPPBookRegistryStateManagementTests 11 11 0 0 147ms
✅ TPPBookRegistrySyncContractTests 4 4 0 0 818ms
✅ TPPBookRegistryThreadSafetyTests 3 3 0 0 1.96s
✅ TPPBookRegistryUpdateAndRemoveTests 1 1 0 0 13ms
✅ TPPBookRequiresAdobeDRMTests 6 6 0 0 33ms
✅ TPPBookSerializationTests 13 13 0 0 122ms
✅ TPPBookStateInitializationTests 5 5 0 0 349ms
✅ TPPBookStateTests 4 4 0 0 8ms
✅ TPPBookTests 98 98 0 0 5.56s
✅ TPPBookmarkDeletionLogTests 11 11 0 0 285ms
✅ TPPBookmarkFactoryInitTests 2 2 0 0 9ms
✅ TPPBookmarkFactoryServerAnnotationEdgeCaseTests 5 5 0 0 155ms
✅ TPPBookmarkFactoryTests 15 15 0 0 656ms
✅ TPPBookmarkR3ConversionTests 5 5 0 0 46ms
✅ TPPBookmarkR3LocationTests 13 13 0 0 77ms
✅ TPPBookmarkSpecTests 1 1 0 0 7ms
✅ TPPCachingTests 3 3 0 0 26ms
✅ TPPCapturedCredentialsTests 5 5 0 0 292ms
✅ TPPCirculationAnalyticsRequestShapeContractTests 2 2 0 0 81ms
✅ TPPConfigurationCustomRegistryTests 16 16 0 0 1.28s
✅ TPPConfigurationTests 22 22 0 0 153ms
✅ TPPContentTypeTests 9 9 0 0 72ms
✅ TPPCredentialConcurrencyTests 3 3 0 0 288ms
✅ TPPCredentialIsolationE2ETests 5 5 0 0 1.81s
✅ TPPCredentialPersistenceTests 6 6 0 0 310ms
✅ TPPCredentialSnapshotCoherenceTests 3 3 0 0 133ms
✅ TPPCredentialSnapshotTests 8 8 0 0 47ms
✅ TPPCredentialsCoverageTests 9 9 0 0 78ms
✅ TPPCredentialsTests 26 26 0 0 309ms
✅ TPPCrossLibrarySignOutTests 6 6 0 0 758ms
✅ TPPDRMFailureCredentialPreservationTests 4 4 0 0 195ms
✅ TPPErrorLoggerTests 27 27 0 0 488ms
✅ TPPIdleSignOutRegressionTests 13 13 0 0 2.99s
✅ TPPJWKConversionTest 1 1 0 0 24ms
✅ TPPKeychainManagerTests 9 9 0 0 265ms
✅ TPPLastReadPositionPosterTests 13 13 0 0 937ms
✅ TPPLastReadPositionSynchronizerIntegrationTests 5 5 0 0 54ms
✅ TPPLastReadPositionSynchronizerTests 23 23 0 0 206ms
✅ TPPLastReadPositionSynchronizer_BehaviorDocumentationTests 5 5 0 0 32ms
✅ TPPLastReadPositionSynchronizer_BookLocationTests 9 9 0 0 113ms
✅ TPPLastReadPositionSynchronizer_ConcurrencyTests 3 3 0 0 213ms
✅ TPPLastReadPositionSynchronizer_ReadiumBookmarkTests 9 9 0 0 54ms
✅ TPPLastReadPositionSynchronizer_SyncLogicTests 10 10 0 0 46ms
✅ TPPLastReadPositionSynchronizer_WriterDelegationTests 4 4 0 0 66ms
✅ TPPLoginNoActivationTests 3 3 0 0 166ms
✅ TPPMainThreadCheckerTests 4 4 0 0 16ms
✅ TPPMigrationManagerTests 15 15 0 0 108ms
✅ TPPNetworkExecutorAPITests 14 14 0 0 90ms
✅ TPPNetworkExecutorCancellationTests 6 6 0 0 2.40s
✅ TPPNetworkExecutorConcurrencyTests 4 4 0 0 7.20s
✅ TPPNetworkExecutorStubbedTests 17 17 0 0 268ms
✅ TPPNetworkExecutorTests 3 3 0 0 15ms
✅ TPPNetworkResponderAuthCoordinatorTests 5 5 0 0 42ms
✅ TPPNetworkResponderRetryBufferTests 5 5 0 0 35ms
✅ TPPNetworkResponderSizeLimitTests 5 5 0 0 275ms
✅ TPPNetworkResponderTests 12 12 0 0 277ms
✅ TPPOPDSAcquisitionPathTests 5 5 0 0 23ms
✅ TPPOPDSEntryTests 5 5 0 0 24ms
✅ TPPOPDSFeedTests 3 3 0 0 93ms
✅ TPPOPDSGroupSwiftTests 3 3 0 0 9ms
✅ TPPOPDSLinkTests 7 7 0 0 92ms
✅ TPPOpenSearchDescriptionExpandedTests 10 10 0 0 21ms
✅ TPPOpenSearchDescriptionTests 1 1 0 0 9ms
✅ TPPPDFDocumentMetadataTests 15 15 0 0 136ms
✅ TPPPDFDocumentTests 8 8 0 0 62ms
✅ TPPPDFLocationCoverageTests 7 7 0 0 30ms
✅ TPPPDFLocationTests 10 10 0 0 82ms
✅ TPPPDFPageBookmarkTests 9 9 0 0 38ms
✅ TPPPDFPageTests 5 5 0 0 15ms
✅ TPPPDFReaderModeTests 6 6 0 0 171ms
✅ TPPPDFReaderSearchBindingTests 3 3 0 0 10ms
✅ TPPPerAccountIsolationTests 8 8 0 0 828ms
✅ TPPPreferredAuthSelectionTests 8 8 0 0 440ms
✅ TPPProblemDocumentCacheManagerTests 12 12 0 0 106ms
✅ TPPProblemDocumentTests 21 21 0 0 337ms
✅ TPPReaderAppearanceTests 4 4 0 0 8ms
✅ TPPReaderBlockNavigationTests 12 12 0 0 43ms
✅ TPPReaderBookmarksBusinessLogicTests 12 12 0 0 528ms
✅ TPPReaderBookmarksReadinessTests 2 2 0 0 176ms
✅ TPPReaderFontTests 4 4 0 0 150ms
✅ TPPReaderFootnoteAccessibilityTests 16 16 0 0 142ms
✅ TPPReaderPageListBusinessLogicTests 27 27 0 0 256ms
✅ TPPReaderPositionReportTests 10 10 0 0 42ms
✅ TPPReaderPreferencesLoadTests 3 3 0 0 16ms
✅ TPPReaderSettingsTests 28 28 0 0 704ms
✅ TPPReaderTOCBusinessLogicTests 15 15 0 0 471ms
✅ TPPReaderTOCFlattenTests 2 2 0 0 10ms
✅ TPPReadiumBookmarkLocationMatchingTests 5 5 0 0 19ms
✅ TPPReadiumBookmarkTests 23 23 0 0 291ms
✅ TPPReauthenticatorMockTests 2 2 0 0 19ms
✅ TPPReauthenticatorTests 4 4 0 0 76ms
✅ TPPReturnPromptHelperTests 5 5 0 0 209ms
✅ TPPSAMLCookieExpirationTests 7 7 0 0 54ms
✅ TPPSAMLFlowTests 10 10 0 0 60ms
✅ TPPSAMLReauthFlowTests 2 2 0 0 376ms
✅ TPPSAMLRegressionTests 4 4 0 0 212ms
✅ TPPSAMLSignInTests 26 26 0 0 1.80s
✅ TPPSAMLStateIsolationTests 4 4 0 0 112ms
✅ TPPSAMLStateMachineTests 6 6 0 0 261ms
✅ TPPSaveDRMCredentialsTests 4 4 0 0 193ms
✅ TPPSettingsTests 6 6 0 0 221ms
✅ TPPSignInAdobeSkipTests 14 14 0 0 2.00s
✅ TPPSignInAuthStateTransitionTests 3 3 0 0 227ms
✅ TPPSignInBusinessLogicExtendedTests 58 58 0 0 6.51s
✅ TPPSignInBusinessLogicOAuthTests 11 11 0 0 1.50s
✅ TPPSignInBusinessLogicSignOutTests 11 11 0 0 742ms
✅ TPPSignInBusinessLogicStateMachineTests 10 10 0 0 682ms
✅ TPPSignInBusinessLogicTests 23 23 0 0 3.79s
✅ TPPSignInBusinessLogicTokenFlowTests 3 3 0 0 202ms
✅ TPPSignInBusinessLogicValidationCallbackOrderTests 2 2 0 0 236ms
✅ TPPSignInCapabilitiesCharacterizationTests 14 14 0 0 40.93s
✅ TPPSignInErrorHandlingTests 2 2 0 0 519ms
✅ TPPSignInProfileDocEdgeCaseTests 3 3 0 0 217ms
✅ TPPSignedInStateProviderTests 3 3 0 0 23ms
✅ TPPUserAccountAuthStateTests 6 6 0 0 169ms
✅ TPPUserAccountConcurrencyTests 1 1 0 0 4ms
✅ TPPUserAccountGapTests 4 4 0 0 72ms
✅ TPPUserAccountIsolationLintTests 3 3 0 0 1.18s
✅ TPPUserAccountTestFactoryTests 7 7 0 0 108ms
✅ TPPUserFriendlyErrorTests 11 11 0 0 117ms
✅ TPPUserNotificationsTests 10 10 0 0 149ms
✅ TPPXMLSwiftTests 16 16 0 0 86ms
✅ TPPXMLTests 3 3 0 0 10ms
✅ TabBarModernizationTests 8 8 0 0 120ms
✅ TaskProvenanceTests 7 7 0 0 401ms
✅ TearDownRequiredLintTests 5 5 0 0 2.05s
✅ TestAppContainerFactoryTests 5 5 0 0 87ms
✅ TestTargetCompilationConditionsTests 2 2 0 0 8ms
❌ TestTargetHermeticityRegressionTests 4 3 1 0 40.30s
✅ TimeEntryTests 3 3 0 0 51ms
✅ TokenRefreshAndRetryQueueTests 9 9 0 0 2.72s
✅ TokenRefreshIntegrationTests 2 2 0 0 48ms
✅ TokenRefreshInterceptorAuthCoordinatorTests 8 8 0 0 213ms
✅ TokenRefreshInterceptorTests 24 24 0 0 918ms
✅ TokenRefreshOnForegroundTests 10 10 0 0 2.47s
✅ TokenRefreshTests 25 25 0 0 233ms
✅ TokenRefreshWatchdogTests 5 5 0 0 67ms
✅ TokenRequestCredentialGuardTests 13 13 0 0 245ms
✅ TokenRequestTests 11 11 0 0 467ms
✅ TokenResponseTests 21 21 0 0 381ms
✅ TriageBotKeyAdminTests 4 4 0 0 23ms
✅ TypographyPresetTests 21 21 0 0 2.03s
✅ TypographyServiceTests 31 31 0 0 2.95s
✅ TypographySettingsViewModelTests 27 27 0 0 835ms
✅ UIAlertCACommitGuardTests 9 9 0 0 559ms
✅ UIColor_NYPLAdditionsTests 1 1 0 0 7ms
✅ URLBackupExclusionTests 3 3 0 0 24ms
✅ URLExtensionTests 16 16 0 0 141ms
✅ URLExtensionsTests 11 11 0 0 113ms
✅ URLRequestExtensionsCoverageTests 3 3 0 0 4ms
✅ URLRequestExtensionsTests 11 11 0 0 78ms
✅ URLRequestNYPLAdditionsTests 11 11 0 0 60ms
✅ URLRequest_NYPLTests 1 1 0 0 1ms
✅ URLResponseAuthenticationTests 10 10 0 0 272ms
✅ URLResponseNYPLTests 14 14 0 0 989ms
✅ URLSessionCredentialStorageTests 3 3 0 0 6ms
✅ URLSessionStubbingResetTests 2 2 0 0 7ms
✅ URLTypeTests 2 2 0 0 8ms
✅ URLValidationTests 5 5 0 0 24ms
✅ UnifiedOPDSServiceStateMachineTests 2 2 0 0 188ms
✅ UserAccountPublisherAuthStateTests 5 5 0 0 34ms
✅ UserAccountPublisherTests 14 14 0 0 455ms
✅ UserAccountValidationTests 11 11 0 0 1.52s
✅ UserDefaultsIsolationLintTests 2 2 0 0 1.15s
✅ UserProfileDocumentTests 7 7 0 0 49ms
✅ UserRetryTrackerTests 10 10 0 0 256ms
✅ VerbatimTextFieldTests 9 9 0 0 83ms
✅ XCTestCase_testUserDefaultsTests 3 3 0 0 36ms
✅ iPadOnMacRMSDKGuardTests 7 7 0 0 49ms

📊 Full interactive matrix: report

Failed tests
TestTargetHermeticityRegressionTests.testAwaitCondition_onTimeout_predicateIsNeverEvaluatedAfterReturn

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

📊 Testing Coverage Breakdown

Unit Test Line Coverage (testable surfaces): 49.2%

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

Target Lines Covered
Palace.app 48.0%

Why two coverage numbers? Testable coverage subtracts files that can't be exercised from xcodebuild — SwiftUI views, UIKit VCs, lifecycle (see scripts/coverage-exclude.json) — so raising it means more testable logic is tested, not that we shipped less UI. Total coverage is kept for continuity. The excluded paths are not covered by any CI job. They are exercised only if a maintainer opts in locally (scripts/verify-pr.sh --simdrive --chaos), which needs a booted simulator and a QA harness that is not in this repo — so on a contributor's clone, and on every CI run, nothing exercises them.

📈 What changed vs. base

Test count: -62


🔗 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