Skip to content

PP-4531: footnote VoiceOver labels never applied — namespaced-attribute selector - #1487

Closed
mauricecarrier7 wants to merge 1 commit into
developfrom
fix/PP-4531-footnote-selector-namespace
Closed

mauricecarrier7 wants to merge 1 commit into
developfrom
fix/PP-4531-footnote-selector-namespace

Conversation

@mauricecarrier7

Copy link
Copy Markdown
Contributor

What

PP-4531 (footnote VoiceOver labels) shipped in build 480 and has labelled zero elements in every book ever since. QA on build 502 hears "1, link" where "Footnote 1, link" is expected.

Root cause

TPPReaderFootnoteAccessibility.annotationJavaScript() selected elements with:

document.querySelectorAll('[epub\:type],[role]')

A CSS attribute selector with no namespace component matches only attributes in no namespace. Readium serves spine resources as application/xhtml+xml (MediaType.swift:271), so WKWebView parses them as XML and xmlns:epub="http://www.idpf.org/2007/ops" puts epub:type in the OPS namespace. The selector matched nothing.

getAttribute('epub:type') matches by qualified name and does work — which is exactly why the Swift classifier looked correct and stayed green. The elements never reached it.

Measured against the real chapter QA read (moby-dick-preview-collection.epub OPS/preface_001.xhtml, which contains <a epub:type="noteref" href="#n1">1</a>), running the production script:

parse mode labelled VoiceOver says
application/xhtml+xml (production) 0 "1, link"
text/html 2 "Footnote 1, link"

The fix

  • Resolve epub:type namespace-agnostically: getAttributeNS(OPS,'type') first, getAttribute('epub:type') as the HTML-parsed fallback.
  • Stop filtering element selection on the namespaced attribute; walk querySelectorAll('*'), which cannot silently match nothing.
  • Concatenate epub:type and role into one token list instead of ||-chaining. The old expression never consulted role when an unrelated epub:type was present (e.g. epub:type="chapter" role="doc-noteref").

Why no test caught it

The 16 existing tests cover the Swift classifier and label composer. The only test of the JavaScript asserted js.contains("noteref") against the script's own source text — a gate that cannot fail on any DOM defect. The original intent file recorded the runtime leg as "Runtime (pending)" and it shipped on unit-only evidence.

TPPReaderFootnoteAccessibilityDOMTests (new) executes the production script in a real WKWebView against both parse modes and asserts the resulting aria-labels, including a role-only reference, the mixed epub:type+role case, a negative control, and idempotency. It also asserts a ground-truth count computed without the production selector, so a fixture that failed to parse cannot masquerade as the defect.

Verification

  • Red before / green after: with the selector defect reintroduced, 5 of 6 fail — XHTML noteref aria-label "" vs "Footnote 1", 2 of 5 elements labelled (exactly the two role-based ones the old selector could still see). With the fix, 6/6.
  • Full suite (verify-pr.sh --quick --diff-baseline): 8731 tests, 8711 passed, 4 failed across 3 classes that all pass in isolation (AccountsManagerStateMachineWiringTests — the Renamed project, classes and properties #1 known flake at 16%, ParserFuzzTests, TestTargetHermeticityRegressionTests); none related to this diff. Zero timeout/restart lines. All 38 legs accounted for, coverage_floors pass.
  • Mutation (diff-scoped): baseline PASS, 3/3 killed, 0 survived, 0 errored.

Scope

Footnote DOM annotation only. TPPReaderBlockNavigation is unaffected — it selects on plain tag names and [role=…], neither of which is namespaced.

Not done: QA also reported "the audio just stops / no audio resumes". That is not this defect — moving VoiceOver focus stops Speak All by OS design, and swiping right speaking the next element is normal VoiceOver navigation. No change made.

Deferred: books with no doc-backlink still have no way back to the reading position. There is no link history in the reader or in Readium's EPUB navigator (goBackward is a directional page turn). Of the two footnote-bearing titles in our test data neither has a backlink, and The Waste Land puts 50 endnotes ~31k characters past their references. Filed as PP-5150.

🤖 Generated with Claude Code

https://claude.ai/code/session_015xqE9uAiVMUc7kKHsXT17w

@github-actions

github-actions Bot commented Sep 16, 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 45 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 5.02 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 10 entries — those are cycle paths through the cycles listed below, not 10 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, 16 edges between them

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

edges
Accounts → ErrorHandling
Accounts → Network
Accounts → OPDS2
Accounts → SignInLogic
AppRating → Settings
ErrorHandling → Logging
FeatureFlags → AppRating
Logging → Accounts
Network → Accounts
Notifications → Accounts
OPDS2 → Accounts
Settings → Accounts
Settings → FeatureFlags
SignInLogic → Accounts
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: PalaceBookModel is a coupling hotspot with 21 dependents
  • hotspot: PalacePreferences is a coupling hotspot with 15 dependents
  • hotspot: Accounts is a coupling hotspot with 12 dependents
  • hotspot: PalaceNetwork is a coupling hotspot with 14 dependents
  • hotspot: PalaceBookRegistry is a coupling hotspot with 18 dependents
  • hotspot: PalaceCatalog is a coupling hotspot with 22 dependents
  • hotspot: PalaceLogging is a coupling hotspot with 32 dependents
  • hotspot: Logging is a coupling hotspot with 10 dependents
  • hotspot: PalaceFeatureFlags is a coupling hotspot with 6 dependents
  • hotspot: PalaceAuth is a coupling hotspot with 8 dependents
  • hotspot: Network is a coupling hotspot with 7 dependents
  • hotspot: TriageBotCore is a coupling hotspot with 6 dependents
  • hotspot: ErrorHandling is a coupling hotspot with 6 dependents
  • hotspot: PalaceUIKit is a coupling hotspot with 7 dependents
  • layer_violation: TriageBotUI (Presentation) depends on Palace (Application) - upward dependency
  • layer_violation: AppInfrastructure (Infrastructure) depends on PalaceBookModel (Domain) - 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

…ector (PP-4531)

PP-4531 shipped in build 480 and has labelled zero elements ever since. QA on
build 502 hears "1, link" where "Footnote 1, link" is expected.

`annotationJavaScript()` selected elements with
`querySelectorAll('[epub\:type],[role]')`. A CSS attribute selector with no
namespace component matches ONLY attributes in no namespace. Readium serves
spine resources as `application/xhtml+xml` (MediaType.swift:271), so WKWebView
parses them as XML and `xmlns:epub="http://www.idpf.org/2007/ops"` puts
`epub:type` in the OPS namespace — the selector matched nothing. Measured
against the real chapter QA read (moby-dick-preview-collection.epub
OPS/preface_001.xhtml), running the production script:

    application/xhtml+xml (production)   0 labelled   -> "1, link"
    text/html                            2 labelled   -> "Footnote 1, link"

`getAttribute('epub:type')` matches by QUALIFIED name and does work, which is
why the Swift classifier looked correct: the elements never reached it.

Resolve the attribute namespace-agnostically — `getAttributeNS(OPS,'type')`
first, `getAttribute('epub:type')` as the HTML-parsed fallback — and stop
filtering selection on the namespaced attribute at all. Also concatenate
`epub:type` and `role` into one token list instead of `||`-chaining them, so an
element carrying an unrelated `epub:type` alongside `role="doc-noteref"` still
classifies.

Why no test caught it: the 16 existing tests cover the Swift classifier and
composer. The sole JS test substring-matched the script's own SOURCE
(`js.contains("noteref")`) and never executed it, so it could not fail on this.
The new `TPPReaderFootnoteAccessibilityDOMTests` runs the production script in a
real WKWebView against both parse modes and asserts the resulting aria-labels.
Confirmed RED before this fix (5 of 6 failed; XHTML noteref aria-label "" vs
"Footnote 1") and green after.

**Scope:** the DOM annotation path for footnotes only.

**Not done:** QA's "audio stops / does not resume" is NOT this defect and is not
addressed here — moving VoiceOver focus stops Speak All by OS design, and
swiping right speaking the next element is normal VoiceOver navigation.

**Deferred:** books with no `doc-backlink` still have no way back to the reading
position; there is no link history in the reader or in Readium's EPUB navigator
(goBackward is a directional page turn). Filed as PP-5150.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_015xqE9uAiVMUc7kKHsXT17w
@github-actions

github-actions Bot commented Sep 16, 2026

Copy link
Copy Markdown

🧪 Unit Test Results

📊 View Full Interactive Report

❌ 2 TESTS FAILED

8731 tests | 8713 passed | 2 failed | 14 skipped | ⏱️ 12m 40s | 📊 99.8% | 📈 48.7% coverage

All 994 classes — 2 with failures (full matrix)
Class Tests Passed Failed Skipped Duration
✅ AccessLintComplianceTests 11 11 0 0 60ms
✅ AccessibilityAnnouncementCenterTests 20 20 0 0 1.60s
✅ AccessibilityLabelTests 9 9 0 0 954ms
✅ AccessibilityPreferencesTests 26 26 0 0 145ms
✅ AccessibilityServiceTests 11 11 0 0 111ms
✅ AccountAuthDocCarryoverTests 5 5 0 0 534ms
✅ AccountAuthSurfaceHostsTests 7 7 0 0 101ms
✅ AccountAwareNetworkTests 10 10 0 0 3.43s
✅ AccountCredentialResolverTests 5 5 0 0 86ms
✅ AccountDetailCredentialStateTests 7 7 0 0 607ms
✅ AccountDetailPINVisibilityTests 25 23 0 2 1.76s
✅ AccountDetailSignOutConfirmationTests 2 2 0 0 637ms
✅ AccountDetailViewModelGapTests 1 1 0 0 48ms
✅ AccountDetailViewModelLeakTests 1 1 0 0 98ms
✅ AccountDetailViewModelSignedInDerivationTests 5 5 0 0 395ms
✅ AccountDetailViewModelTests 19 19 0 0 1.08s
✅ AccountDetailsAuthenticationIsBrowserBasedTests 10 10 0 0 358ms
✅ AccountDetailsNeedsAuthAggregateTests 10 10 0 0 9ms
✅ AccountDetailsURLTests 17 17 0 0 257ms
✅ AccountErrorReportingTests 1 1 0 0 3ms
✅ AccountModelGapTests 9 9 0 0 744ms
✅ AccountModelTests 20 20 0 0 61ms
✅ AccountNetworkingSeamTests 2 2 0 0 99ms
✅ AccountProfileDocumentTests 25 25 0 0 741ms
✅ AccountProfileGateLintTests 3 3 0 0 54ms
✅ AccountRegistryCacheSeamTests 3 3 0 0 644ms
✅ AccountRegistryLoaderSeamTests 3 3 0 0 12ms
✅ AccountRegistryStorePoolStarvationTests 3 2 0 1 120ms
✅ AccountRegistryStoreSeamTests 6 6 0 0 118ms
✅ AccountScopeAdapterTests 5 5 0 0 414ms
✅ AccountStateMachineTests 13 13 0 0 980ms
✅ AccountSwitchBorrowReauthCouplingContractTests 4 4 0 0 250ms
✅ AccountSwitchCleanupTests 8 8 0 0 269ms
✅ AccountSwitchIntegrationTests 8 8 0 0 86ms
✅ AccountSwitchLifecycleTests 9 9 0 0 902ms
✅ AccountsManagerAccountIndexTests 7 7 0 0 199ms
✅ AccountsManagerAuthDocContractTests 1 1 0 0 158ms
✅ AccountsManagerCacheReadTests 4 4 0 0 272ms
✅ AccountsManagerCacheTests 16 16 0 0 822ms
✅ AccountsManagerCancellationTests 5 5 0 0 628ms
✅ AccountsManagerCatalogLoadJoinTests 3 3 0 0 1.57s
✅ AccountsManagerCurrentAccountSwitchContractTests 5 5 0 0 437ms
✅ AccountsManagerFirstRunDecodeTests 3 3 0 0 1.29s
✅ AccountsManagerGapTests 3 3 0 0 4ms
✅ AccountsManagerHelpersTests 12 12 0 0 256ms
✅ AccountsManagerIsolationLintTests 4 4 0 0 1.12s
✅ AccountsManagerLaunchSnapshotTests 13 13 0 0 7.84s
❌ AccountsManagerStateMachineWiringTests 18 17 1 0 4.52s
✅ AccountsManagerTests 51 48 0 3 2.23s
✅ AdobeActivationCoordinatorTests 4 4 0 0 215ms
✅ AdobeActivationDedupTests 8 8 0 0 409ms
✅ AdobeActivationLicensorGraceTests 7 7 0 0 530ms
✅ AdobeActivationRefreshLicensorTests 16 16 0 0 1.17s
✅ AdobeActivationTests 6 6 0 0 58ms
✅ AdobeCertificateGapTests 7 7 0 0 110ms
✅ AdobeClientTokenSplitTests 19 19 0 0 784ms
✅ AdobeDRMCharacterizationTests 21 21 0 0 101ms
✅ AdobeDRMErrorGapTests 3 3 0 0 159ms
✅ AdobeDRMErrorMappingTests 9 9 0 0 637ms
✅ AdobeDRMHandlerTests 12 12 0 0 517ms
✅ AdobeDRMServiceGapTests 2 2 0 0 15ms
✅ AdobeDeauthorizationTests 16 16 0 0 1.10s
✅ AdobeLicensorRefreshTests 13 13 0 0 188ms
✅ AlertModelCoverageTests 6 6 0 0 9ms
✅ AlertModelRetryTests 7 7 0 0 161ms
✅ AlertModelTests 2 2 0 0 2ms
✅ AlertPresentationRawGuardLintTests 6 6 0 0 55ms
✅ AlertUtilsTests 20 20 0 0 2.35s
✅ AnnotationContractTests 3 3 0 0 15ms
✅ AnnotationDeviceIDTests 2 2 0 0 2ms
✅ AnnotationPostResponseContractTests 1 1 0 0 3ms
✅ AnnouncementChainTests 5 5 0 0 8ms
✅ AnnouncementTests 3 3 0 0 10ms
✅ AppContainerAudiobookFactoryTests 3 3 0 0 6ms
✅ AppContainerAuthCoordinatorRegistrationTests 3 3 0 0 236ms
✅ AppContainerImageLoaderInjectionTests 4 4 0 0 186ms
✅ AppContainerIsolationLintTests 8 8 0 0 7.43s
✅ AppContainerResetTests 5 5 0 0 111ms
✅ AppContainerTests 5 5 0 0 70ms
✅ AppContainerWithSignInModalSheetPresenterTests 2 2 0 0 10ms
✅ AppHealthViewModelTests 8 8 0 0 90ms
✅ AppLaunchTrackerExtendedTests 16 16 0 0 430ms
✅ AppLaunchTrackerTests 10 10 0 0 267ms
✅ AppLaunchTrackerWiringTests 2 2 0 0 52ms
✅ AppRatingServiceOverrideTests 3 3 0 0 959ms
✅ AppRatingServiceTests 9 9 0 0 213ms
✅ AppRouteTests 5 5 0 0 72ms
✅ AppTabHostMiniPlayerIntegrationTests 6 6 0 0 405ms
✅ AppTabHostViewBadgeCountTests 10 10 0 0 374ms
✅ AppTabRouterCoverageTests 4 4 0 0 95ms
✅ AppTabRouterGapTests 3 3 0 0 32ms
✅ AppTabSelectionBindingLintTests 2 2 0 0 7ms
✅ AppTabStackMemoryTests 11 11 0 0 241ms
✅ AppTabSwitchPreservesStacksTests 3 3 0 0 170ms
✅ ArrayExtensionsTests 6 6 0 0 55ms
✅ AudioBookmarkGapTests 6 6 0 0 213ms
✅ AudioEngineWrapperTests 8 8 0 0 128ms
✅ AudioInterruptionLogicTests 6 6 0 0 120ms
✅ AudioSessionActivatorTests 8 8 0 0 43ms
✅ AudiobookAccessibilityTests 7 7 0 0 7ms
✅ AudiobookBackgroundAudioTests 2 2 0 0 158ms
✅ AudiobookBearerTokenRecoveryTests 21 21 0 0 72ms
✅ AudiobookBookmarkBusinessLogicConcurrencyTests 3 3 0 0 903ms
✅ AudiobookBookmarkBusinessLogicPositionWriteTests 9 9 0 0 10.35s
✅ AudiobookBookmarkBusinessLogicTests 21 21 0 0 4.93s
✅ AudiobookChapterCompletionPauseTests 7 7 0 0 190ms
✅ AudiobookChapterTOCNormalizationTests 6 6 0 0 4ms
✅ AudiobookColdLoadRecoveryTests 4 4 0 0 4ms
✅ AudiobookContentGateTests 19 19 0 0 445ms
✅ AudiobookCrossVendorSmokeTests 4 4 0 0 46ms
✅ AudiobookDataManagerEmptyQueueTests 1 1 0 0 43ms
✅ AudiobookDataManagerErrorHandlingTests 5 5 0 0 253ms
✅ AudiobookDataManagerModelsTests 20 20 0 0 68ms
✅ AudiobookDataManagerNetworkSyncTests 5 5 0 0 118ms
✅ AudiobookDataManagerSaveTests 4 4 0 0 354ms
✅ AudiobookDataManagerStoreRecoveryTests 5 5 0 0 82ms
✅ AudiobookFileLoggerTests 15 15 0 0 4.06s
✅ AudiobookFirstOpenHangTests 15 14 0 1 1.39s
✅ AudiobookLoadFailureSAMLReauthTests 10 10 0 0 513ms
✅ AudiobookLoaderDispatchTests 7 7 0 0 1.16s
✅ AudiobookLoaderFinalizeBuildTests 11 11 0 0 1.29s
✅ AudiobookLoaderOPDSShapeMatrixTests 8 8 0 0 1.37s
✅ AudiobookLoaderPredicateTests 11 11 0 0 158ms
✅ AudiobookLoaderTests 2 2 0 0 150ms
✅ AudiobookMorphingPlayerViewTests 26 26 0 0 484ms
✅ AudiobookNetworkValidationTests 3 3 0 0 1.34s
✅ AudiobookOpenStateRaceTests 3 3 0 0 944ms
✅ AudiobookPhoneAlertContentTests 3 3 0 0 9ms
✅ AudiobookPlaybackStateTests 3 3 0 0 33ms
✅ AudiobookPlaybackTests 26 26 0 0 388ms
✅ AudiobookPlaytimesLifecycleTests 6 6 0 0 565ms
✅ AudiobookPositionAdapterContractTests 3 3 0 0 136ms
✅ AudiobookPositionPolicyValidatorTests 14 14 0 0 42ms
✅ AudiobookPositionRestoreTests 25 25 0 0 1.68s
✅ AudiobookReadinessPlaybackContractTests 2 2 0 0 291ms
✅ AudiobookSAMLReauthTests 6 6 0 0 617ms
✅ AudiobookSessionErrorDescriptionTests 4 4 0 0 5ms
✅ AudiobookSessionErrorExtTests 4 4 0 0 5ms
✅ AudiobookSessionErrorTests 3 3 0 0 10ms
✅ AudiobookSessionManagerErrorMappingTests 6 6 0 0 6ms
✅ AudiobookSessionManagerFlagGatePresentationTests 4 4 0 0 12.35s
✅ AudiobookSessionManagerPresenterMigrationTests 10 10 0 0 359ms
✅ AudiobookSessionManagerShutdownTests 12 12 0 0 283ms
✅ AudiobookSessionPresenterLifecycleContractTests 3 3 0 0 74ms
✅ AudiobookSessionPresenterTests 31 31 0 0 1.07s
✅ AudiobookSessionStateTests 6 6 0 0 18ms
✅ AudiobookSessionStateTransitionTests 22 22 0 0 649ms
✅ AudiobookSkipIntervalSettingsTests 7 7 0 0 164ms
✅ AudiobookSleepTimerIntegrationTests 5 5 0 0 218ms
✅ AudiobookStorageLocationTests 3 3 0 0 2ms
✅ AudiobookTOCTests 18 18 0 0 810ms
✅ AudiobookTimeEntryTests 6 6 0 0 337ms
✅ AudiobookTimeTrackerEdgeTests 8 8 0 0 284ms
✅ AudiobookTimeTrackerLifecycleTests 5 5 0 0 1.19s
✅ AudiobookTimeTrackerTests 9 9 0 0 207ms
✅ AudiobookTrackCompletionTests 2 2 0 0 64ms
✅ AudiobookTypeRoutingTests 5 5 0 0 5.04s
✅ AudiobookVendorAdapterTests 5 5 0 0 48ms
✅ AudiobookVendorRecoveryContractTests 1 1 0 0 67ms
✅ AudiobookmarkTests 4 4 0 0 149ms
✅ AuthCoordinatorTelemetryTests 5 5 0 0 105ms
✅ AuthDecisionEventEmissionTests 7 7 0 0 68ms
✅ AuthDocumentContractTests 2 2 0 0 3ms
✅ AuthDocumentLoaderSeamTests 6 6 0 0 71ms
✅ AuthDocumentVariantsContractTests 5 5 0 0 74ms
✅ AuthErrorCategoryTests 12 12 0 0 15ms
✅ AuthErrorProblemDocSeamTests 6 6 0 0 410ms
✅ AuthFlowSecurityTests 3 3 0 0 24ms
✅ AuthReducerTests 21 21 0 0 1.04s
✅ AuthTypeTests 7 7 0 0 487ms
✅ AuthenticationTests 16 16 0 0 259ms
✅ BackgroundDownloadHandlerTests 28 28 0 0 437ms
✅ BackgroundDownloadTokenAccountTests 5 5 0 0 616ms
✅ BackgroundListenerTests 2 2 0 0 21ms
✅ BackgroundReconciliationContractTests 8 8 0 0 461ms
✅ BackgroundSessionRoutingTests 6 6 0 0 54ms
✅ BackupExclusionMigrationTests 3 3 0 0 37ms
✅ BasicAuthEmptyCredentialTests 4 4 0 0 6ms
✅ BearerTokenAdapterTests 5 5 0 0 153ms
✅ BearerTokenFulfillFlowTests 4 4 0 0 484ms
✅ BearerTokenRefreshTests 4 4 0 0 119ms
✅ BearerTokenResponseDetectionTests 7 7 0 0 11ms
✅ BeginningPositionPolicyTests 8 8 0 0 4.19s
✅ BookAvailabilityFormatterTests 18 18 0 0 334ms
✅ BookButtonMapperHoldReadyTests 10 10 0 0 328ms
✅ BookButtonMapperTests 21 21 0 0 164ms
✅ BookButtonMapperViewModelTests 18 18 0 0 27ms
✅ BookButtonStateTests 8 8 0 0 75ms
✅ BookButtonTypeMetaTests 4 4 0 0 15ms
✅ BookButtonTypeTests 13 13 0 0 99ms
✅ BookCellModelActionTests 18 18 0 0 2.42s
✅ BookCellModelCacheInvalidationTests 9 9 0 0 84ms
✅ BookCellModelCachePrefetchSafetyTests 9 9 0 0 244ms
✅ BookCellModelCacheTests 22 22 0 0 654ms
✅ BookCellModelComputedPropertyTests 19 19 0 0 331ms
✅ BookCellModelLCPProgressTests 7 7 0 0 343ms
✅ BookCellModelOfflineTests 9 9 0 0 1.01s
✅ BookCellModelProcessingStateTests 6 6 0 0 142ms
✅ BookCellModelRegistryBindingTests 4 4 0 0 108ms
✅ BookCellModelStateTests 16 16 0 0 618ms
✅ BookCellModelStreamingHTMLTests 2 2 0 0 54ms
✅ BookCellStateComprehensiveTests 14 14 0 0 770ms
✅ BookContentResetServiceTests 2 2 0 0 16ms
✅ BookDetailButtonRoutingTests 4 4 0 0 115ms
✅ BookDetailInfoValueLinkTests 5 5 0 0 498ms
✅ BookDetailLCPContentProgressTests 7 7 0 0 372ms
✅ BookDetailMetadataHydrationTests 6 6 0 0 44ms
✅ BookDetailMetadataMergeContractTests 5 5 0 0 69ms
✅ BookDetailOpenRoutingTests 3 3 0 0 306ms
✅ BookDetailViewModelAudiobookDismissTests 1 1 0 0 26ms
✅ BookDetailViewModelTests 91 91 0 0 5.65s
✅ BookFileManagerAccountScopingTests 5 5 0 0 1.63s
✅ BookFileManagerSideloadResolutionTests 4 4 0 0 690ms
✅ BookFileManagerTests 8 8 0 0 215ms
✅ BookListViewAccessibilityTests 9 9 0 0 19ms
✅ BookPreviewTests 4 4 0 0 158ms
✅ BookRegistryReconciliationTableTests 10 10 0 0 79ms
✅ BookRegistryStoreTests 26 26 0 0 1.45s
✅ BookRegistrySyncReadinessTests 4 3 0 1 962ms
✅ BookRegistrySyncReentrancyTests 6 6 0 0 481ms
✅ BookRegistrySyncSideloadExemptionTests 2 2 0 0 608ms
✅ BookRegistrySyncTests 42 42 0 0 3.39s
✅ BookRegistrySyncTimeoutSeamTests 2 2 0 0 25ms
✅ BookReturnCleverReauthTests 1 1 0 0 568ms
✅ BookReturnServiceAuthCoordinatorTests 3 3 0 0 102ms
✅ BookReturnServiceContractTests 9 9 0 0 650ms
✅ BookReturnServiceTests 20 20 0 0 1.24s
✅ BookServiceAudiobookOpenTests 2 2 0 0 185ms
❌ BookSignInRedirectHandlerTests 8 7 1 0 250ms
✅ BookStateIntegrationTests 8 8 0 0 1.14s
✅ BookmarkBusinessLogicExtendedTests 6 6 0 0 252ms
✅ BookmarkDeletionLogTests 3 3 0 0 181ms
✅ BookmarkDeviceIdMatchingTests 3 3 0 0 220ms
✅ BookmarkExistenceTests 4 4 0 0 311ms
✅ BookmarkManagerTests 24 24 0 0 1.71s
✅ BookmarkSortingTests 1 1 0 0 26ms
✅ BookmarkSyncTests 3 3 0 0 1.64s
✅ BorrowAdobeActivationStepTests 6 6 0 0 31ms
✅ BorrowAndDownloadIntegrationTests 7 7 0 0 1.18s
✅ BorrowErrorMessageTests 13 13 0 0 180ms
✅ BorrowErrorPresenterTests 6 6 0 0 73ms
✅ BorrowOperationAuthCoordinatorTests 6 6 0 0 145ms
✅ BorrowOperationCleverReauthTests 2 2 0 0 117ms
✅ BorrowOperationContractTests 8 8 0 0 1.02s
✅ BorrowOperationStreamingHTMLTests 3 3 0 0 352ms
✅ BorrowOperationTests 13 13 0 0 1.75s
✅ BorrowOperationTimeoutTests 3 3 0 0 119ms
✅ BorrowReauthResettingTests 4 4 0 0 577ms
✅ BorrowReducerContractTests 2 2 0 0 9ms
✅ BorrowReducerCoreContractTests 12 12 0 0 62ms
✅ BorrowReducerTests 21 21 0 0 89ms
✅ BundledRegistrySnapshotTests 5 5 0 0 349ms
✅ ButtonStateMonotonicClampTests 10 10 0 0 1.85s
✅ ButtonStateTests 16 16 0 0 2.70s
✅ ButtonStyleTypeTests 2 2 0 0 4ms
✅ ButtonTapDebounceTests 7 7 0 0 63ms
✅ C64ConversionTests 6 6 0 0 231ms
✅ CarPlayAudiobookBridgePresenterMigrationTests 2 2 0 0 120ms
✅ CarPlayAuthHelperReadinessTests 3 3 0 0 885ms
✅ CarPlayChapterListTests 3 3 0 0 545ms
✅ CarPlayIntegrationTests 2 2 0 0 68ms
✅ CarPlayLibraryRefreshTests 3 3 0 0 15ms
✅ CarPlayNowPlayingTemplateTests 4 4 0 0 517ms
✅ CarPlayOpenAppAlertTests 6 6 0 0 177ms
✅ CarPlayPlaybackErrorTests 8 8 0 0 482ms
✅ CarPlayTests 12 12 0 0 71ms
✅ CarPlayTimeTrackingTests 3 3 0 0 212ms
✅ CatalogAPIDedupeTests 3 3 0 0 603ms
✅ CatalogAPIEntryPointTests 1 1 0 0 6ms
✅ CatalogAccessibilityTests 8 8 0 0 9ms
✅ CatalogCacheKeyAndIsolationTests 12 12 0 0 343ms
✅ CatalogCacheMetadataExactBoundaryTests 4 4 0 0 747ms
✅ CatalogCacheMetadataTests 21 21 0 0 134ms
✅ CatalogCrawlSchedulerTests 9 9 0 0 3.48s
✅ CatalogFeedModelTests 4 4 0 0 79ms
✅ CatalogFilterGroupModelTests 17 17 0 0 83ms
✅ CatalogFilterModelTests 17 17 0 0 98ms
✅ CatalogFilterServiceTests 29 29 0 0 219ms
✅ CatalogFilterTests 1 1 0 0 1ms
✅ CatalogLaneAssemblyTests 7 7 0 0 107ms
✅ CatalogLaneFilterApplicationTests 4 4 0 0 420ms
✅ CatalogLaneModelStructTests 20 20 0 0 989ms
✅ CatalogLaneModelTests 3 3 0 0 338ms
✅ CatalogLaneMoreFilterStateTests 8 8 0 0 779ms
✅ CatalogLaneMoreViewModelTests 43 43 0 0 1.68s
✅ CatalogLaneRowViewAccessibilityTests 11 11 0 0 56ms
✅ CatalogLaneSortingTests 5 5 0 0 105ms
✅ CatalogLoadIntegrationTests 6 6 0 0 302ms
✅ CatalogOPDS2NegotiationTests 12 12 0 0 6.03s
✅ CatalogPreloaderTests 6 6 0 0 26ms
✅ CatalogProblemDocumentTests 6 6 0 0 47ms
✅ CatalogRepositoryCoreTests 9 9 0 0 79ms
✅ CatalogRepositoryStaleWhileRevalidateTests 12 12 0 0 480ms
✅ CatalogRepositoryTests 19 19 0 0 416ms
✅ CatalogSearchViewModelRegistryUpdateTests 5 5 0 0 247ms
✅ CatalogSearchViewModelTests 67 67 0 0 4.90s
✅ CatalogSelectorsTests 2 2 0 0 1ms
✅ CatalogSortServiceTests 14 14 0 0 341ms
✅ CatalogStateTests 7 7 0 0 311ms
✅ CatalogViewLibraryIconTests 2 2 0 0 342ms
✅ CatalogViewModelStateMachineTests 19 19 0 0 1.07s
✅ ChaosFaultInjectionTests 5 5 0 0 41ms
✅ ChapterChangeDetectorTests 5 5 0 0 645ms
✅ ChapterScrubberChromeVisibilityTests 4 4 0 0 34ms
✅ ChapterScrubberModelTests 35 35 0 0 543ms
✅ ChapterScrubberReadoutTests 11 11 0 0 12ms
✅ ChapterScrubberTOCResolutionTests 5 5 0 0 18ms
✅ ChapterScrubberViewTests 31 31 0 0 92ms
✅ ChapterTOCNormalizerTests 7 7 0 0 269ms
✅ CirculationAnalyticsTests 4 4 0 0 265ms
✅ ColdStartResumeIntegrationTests 10 10 0 0 1.67s
✅ ColorExtensionTests 5 5 0 0 21ms
✅ ConcurrentBookStateTests 3 3 0 0 15ms
✅ ConcurrentDownloadStateTests 3 3 0 0 5.15s
✅ ConcurrentTokenRefreshTests 2 2 0 0 199ms
✅ ContinuousPlaybackTrackingTests 3 3 0 0 1.66s
✅ CookiePersistenceTests 10 10 0 0 437ms
✅ CoverSourceBadResponseCacheTests 3 3 0 0 1.55s
✅ CrawlStateTests 16 16 0 0 91ms
✅ CrawlableFeedAnalysisTests 17 17 0 0 1.80s
✅ CrawlerFallbackTests 12 12 0 0 595ms
✅ CredentialEdgeCaseTests 6 6 0 0 20ms
✅ CredentialPrivacyTests 4 4 0 0 3.31s
✅ CredentialPromptCoordinatorTests 4 4 0 0 61ms
✅ CredentialSnapshotInvalidationTests 5 5 0 0 535ms
✅ CredentialStoreCharacterizationTests 7 7 0 0 3.15s
✅ CrossDeviceBookmarkSyncTests 12 12 0 0 1.65s
✅ CrossDeviceSyncE2ETests 10 10 0 0 1.24s
✅ CrossDomain401Tests 8 8 0 0 106ms
✅ CrossFormatMappingTests 14 14 0 0 593ms
✅ DPLAErrorTests 3 3 0 0 20ms
✅ DRMAdversarialTests 4 4 0 0 34ms
✅ DRMFulfilledPublicationTests 6 6 0 0 31ms
✅ DataBase64Tests 3 3 0 0 12ms
✅ DataReceptionComparisonTests 2 2 0 0 39ms
✅ DateExtensionTests 9 9 0 0 69ms
✅ DateFormattingTests 4 4 0 0 21ms
✅ Date_NYPLAdditionsTests 7 7 0 0 415ms
✅ DebugSettingsForceSkeletonsTests 4 4 0 0 75ms
✅ DebugSettingsGapTests 4 4 0 0 68ms
✅ DebugSettingsTests 31 31 0 0 218ms
✅ DefaultCatalogAPITests 31 31 0 0 324ms
✅ DeriveInitialStateTests 4 4 0 0 84ms
✅ DeveloperSettingsEngineeringTierTests 4 4 0 0 31ms
✅ DeveloperSettingsViewModelOverrideTests 3 3 0 0 514ms
✅ DeviceLogCollectorGapTests 2 2 0 0 6ms
✅ DeviceLogCollectorTests 13 13 0 0 1.28s
✅ DeviceOrientationTests 7 7 0 0 467ms
✅ DeviceSpecificErrorMonitorTests 11 11 0 0 735ms
✅ DictionaryExtensionsTests 5 5 0 0 308ms
✅ DirectionalNavigationAdapterOwnershipTests 2 2 0 0 13ms
✅ DiskBudgetManagerTests 7 7 0 0 264ms
✅ DiskBudgetTests 2 2 0 0 13ms
✅ DownloadAccountContextAdapterTests 11 11 0 0 883ms
✅ DownloadAlertPresenterTests 8 8 0 0 213ms
✅ DownloadAnnouncementServiceTests 12 12 0 0 483ms
✅ DownloadAuthChallengeWitnessTests 13 13 0 0 779ms
✅ DownloadAuthRetryHandlerAuthCoordinatorTests 6 6 0 0 2.74s
✅ DownloadAuthRetryHandlerTaskLifecycleTests 4 4 0 0 389ms
✅ DownloadAuthRetryHandlerTests 17 17 0 0 2.09s
✅ DownloadCancellationHandlerTests 7 7 0 0 207ms
✅ DownloadCompleteMomentTests 6 6 0 0 10ms
✅ DownloadCompletionParserTests 9 9 0 0 592ms
✅ DownloadCoordinatorIntegrationTests 10 10 0 0 141ms
✅ DownloadCoordinatorTests 11 11 0 0 93ms
✅ DownloadDiskSpaceTests 2 2 0 0 3ms
✅ DownloadErrorInfoTests 3 3 0 0 2ms
✅ DownloadErrorRecoveryPolicyTests 11 11 0 0 265ms
✅ DownloadErrorRecoveryTests 3 3 0 0 17ms
✅ DownloadFreeSpaceExhaustionTests 11 11 0 0 425ms
✅ DownloadInfoTests 5 5 0 0 78ms
✅ DownloadIntegrityTests 10 10 0 0 134ms
✅ DownloadOnlyOnWiFiTests 10 10 0 0 65ms
✅ DownloadPersistenceStoreTests 5 5 0 0 164ms
✅ DownloadProgressPublisherCoreTests 29 29 0 0 1.58s
✅ DownloadQueueIntegrationTests 3 3 0 0 21ms
✅ DownloadQueueOrchestratorTests 9 9 0 0 208ms
✅ DownloadRMSDKHandoffTests 13 13 0 0 410ms
✅ DownloadReconciliationLaunchOrderContractTests 2 2 0 0 20ms
✅ DownloadReconciliationTests 29 29 0 0 2.42s
✅ DownloadRedirectTests 7 7 0 0 896ms
✅ DownloadReissuePersistenceTests 19 19 0 0 22.25s
✅ DownloadResumeAfterKillTests 7 7 0 0 75ms
✅ DownloadSlotManagementTests 5 5 0 0 11ms
✅ DownloadStartCoordinatorContractTests 5 5 0 0 188ms
✅ DownloadStartCoordinatorTests 11 11 0 0 500ms
✅ DownloadStartDispatcherContractTests 12 12 0 0 122ms
✅ DownloadStartDispatcherTests 26 26 0 0 272ms
✅ DownloadStartReducerContractTests 24 24 0 0 1.14s
✅ DownloadStateMachineIntegrationTests 15 15 0 0 55ms
✅ DownloadStateMachineTests 5 5 0 0 52ms
✅ DownloadStateManagerTests 16 16 0 0 190ms
✅ DownloadTaskLifecycleServiceTests 9 9 0 0 487ms
✅ DownloadTaskPersistenceTests 14 14 0 0 856ms
✅ DownloadThrottlingContractTests 2 2 0 0 6ms
✅ DownloadThrottlingServiceTests 10 10 0 0 812ms
✅ DownloadTransferRetryTests 6 6 0 0 2.05s
✅ DownloadWatchdogTests 3 3 0 0 30ms
✅ EPUBKeyCommandsPP4289Tests 4 4 0 0 8ms
✅ EPUBModuleTests 4 4 0 0 94ms
✅ EPUBPositionTests 10 10 0 0 64ms
✅ EPUBSearchViewModelTests 18 18 0 0 145ms
✅ EPUBToolbarToggleTests 11 11 0 0 274ms
✅ EffectBoundaryTests 6 6 0 0 814ms
✅ EmailAddressTests 16 16 0 0 142ms
✅ EpubSampleFactoryTests 5 5 0 0 242ms
✅ ErrorActivityTrackerTests 12 12 0 0 276ms
✅ ErrorDetailTests 14 14 0 0 534ms
✅ ErrorDetailViewControllerGapTests 3 3 0 0 237ms
✅ ErrorDetailViewControllerTests 14 14 0 0 478ms
✅ ErrorLogExporterTests 5 5 0 0 521ms
✅ ExecutorNetworkHermeticityTests 1 1 0 0 227ms
✅ ExpiredLoanStringsTests 5 5 0 0 95ms
✅ FCMRegistrationReadinessLintTests 18 18 0 0 137ms
✅ FacetEnumTests 3 3 0 0 6ms
✅ FacetToolbarAccessibilityTests 5 5 0 0 134ms
✅ FacetViewModelLogoDelegateTests 4 4 0 0 46ms
✅ FacetViewModelTests 18 18 0 0 27.68s
✅ FetchManifestWithBearerTokenLCPSafetyTests 1 1 0 0 9ms
✅ FetchManifestWithBearerTokenTests 9 9 0 0 267ms
✅ FetchOpenAccessManifestLCPSafetyTests 4 4 0 0 105ms
✅ FileURLGenerationTests 3 3 0 0 411ms
✅ FindawayChapterStatusGuardTests 1 1 0 0 2ms
✅ FindawaySavedVsPlayedTests 1 1 0 0 25ms
✅ FloatTPPAdditionsTests 5 5 0 0 408ms
✅ FocusIndicationTests 7 7 0 0 172ms
✅ FontManagerTests 17 17 0 0 534ms
✅ ForceResetTests 6 6 0 0 82ms
✅ GeneralCacheClearOnUpdateTests 3 3 0 0 16ms
✅ GeneralCacheTests 22 22 0 0 963ms
✅ GroupEnumTests 1 1 0 0 12ms
✅ HTMLTextViewTests 70 70 0 0 15.02s
✅ HalfSheetProgressCueTests 11 11 0 0 27ms
✅ HoldNotificationClassificationTests 2 2 0 0 3ms
✅ HoldsBadgeCountTests 9 9 0 0 164ms
✅ HoldsBookViewModelTests 8 8 0 0 435ms
✅ HoldsReducerTests 11 11 0 0 145ms
✅ HoldsSyncFailureTests 12 12 0 0 2.67s
✅ HoldsViewModelTests 23 23 0 0 1.87s
✅ HostFailureTrackerTests 2 2 0 0 313ms
✅ ImageCacheContinuationTests 1 1 0 0 3.74s
✅ ImageCacheOffMainIsolationTests 2 2 0 0 84ms
✅ ImageCacheTypeTests 1 1 0 0 13ms
✅ ImageCoverKeyUnificationTests 2 2 0 0 8ms
✅ ImageLoaderTests 14 14 0 0 174ms
✅ InflightFeedFetchesTimeoutTests 4 4 0 0 10.25s
✅ IntExtensionsTests 4 4 0 0 456ms
✅ IsReaderActiveTrackingModifierTests 4 4 0 0 30ms
✅ KeyboardNavigationFKATests 11 11 0 0 76ms
✅ KeyboardNavigationHandlerTests 16 16 0 0 266ms
✅ KeyboardVoiceOverTests 5 5 0 0 114ms
✅ LCPAcquisitionPredicateTests 4 4 0 0 72ms
✅ LCPAdapterTests 8 8 0 0 1.50s
✅ LCPAudiobookURLSchemeTests 4 4 0 0 1.22s
✅ LCPAudiobooksTests 24 24 0 0 276ms
✅ LCPBotanCRLGuardTests 5 5 0 0 1.22s
✅ LCPCharacterizationTests 31 31 0 0 675ms
✅ LCPClientTests 9 9 0 0 77ms
✅ LCPFulfillmentHandlerTests 18 18 0 0 1.87s
✅ LCPKeychainMigrationTests 5 5 0 0 28ms
✅ LCPLibraryServiceTests 20 20 0 0 604ms
✅ LCPLicenseDocumentDetectionTests 5 5 0 0 5ms
✅ LCPLicenseFilePathTests 3 3 0 0 446ms
✅ LCPOrphanedDownloadRegistryTests 4 4 0 0 66ms
✅ LCPPDFAcquisitionPredicateTests 5 5 0 0 5ms
✅ LCPPDFDiskExtractTests 5 5 0 0 125ms
✅ LCPPDFOpenProgressTests 13 13 0 0 197ms
✅ LCPPassphraseReadinessTests 2 2 0 0 24ms
✅ LCPSessionIdentifierTests 3 3 0 0 55ms
✅ LegacySAMLProblemDocumentPropagationTests 7 7 0 0 526ms
✅ LibrariesSectionViewModelTests 16 16 0 0 46ms
✅ LibraryCatalogMergerTests 9 9 0 0 126ms
✅ LibraryIconInertLintTests 1 1 0 0 421ms
✅ LibraryRegistryCrawlerTests 15 15 0 0 582ms
✅ LibraryRowPresentationTests 10 10 0 0 611ms
✅ LicensesServiceTests 4 4 0 0 30ms
✅ LiveCrawlableParsingTest 4 0 0 4 99ms
✅ LiveDownloadTaskBoxTests 9 9 0 0 1.01s
✅ LoanEvictionPolicyTests 13 13 0 0 135ms
✅ LoanRenewalServiceTests 9 9 0 0 207ms
✅ LocalBookContentServiceTests 34 34 0 0 861ms
✅ LocalFileAdapterTests 6 6 0 0 56ms
✅ LocalizationTablesTests 4 4 0 0 1.09s
✅ LogTests 13 13 0 0 2.70s
✅ LoginKeyboardTests 8 8 0 0 99ms
✅ MainActorHelpersTests 22 22 0 0 1.26s
✅ ManifestFixtureTests 2 2 0 0 122ms
✅ MappedCatalogBridgeTests 3 3 0 0 7ms
✅ MappedCatalogModelTests 11 11 0 0 486ms
✅ MarqueeTextTests 5 5 0 0 46ms
✅ MockBackendExpiredCredentialsTests 3 3 0 0 27ms
✅ MockBackendHoldsTests 3 3 0 0 62ms
✅ MockBackendIntegrationTests 4 4 0 0 190ms
✅ MockBackendLoanLimitTests 2 2 0 0 116ms
✅ MockBackendRouteMatchingTests 4 4 0 0 101ms
✅ MockBackendServerDownTests 1 1 0 0 7ms
✅ MockIsolationLintTests 5 5 0 0 1.87s
✅ MultiLibraryTokenIsolationTests 17 17 0 0 2.23s
✅ MyBooksDownloadCenterAccountIdThreadingTests 7 7 0 0 360ms
✅ MyBooksDownloadCenterAccountScopeSeamTests 7 7 0 0 138ms
✅ MyBooksDownloadCenterAdeptGapTests 3 3 0 0 550ms
✅ MyBooksDownloadCenterCachePurgeTests 4 4 0 0 269ms
✅ MyBooksDownloadCenterConcurrencyTests 22 22 0 0 760ms
✅ MyBooksDownloadCenterEvictionTests 7 7 0 0 453ms
✅ MyBooksDownloadCenterOfflineTests 8 8 0 0 2.86s
✅ MyBooksDownloadCenterProgressPublishingTests 2 2 0 0 30ms
✅ MyBooksDownloadSessionInvalidationTests 3 3 0 0 29ms
✅ MyBooksSimplifiedBearerTokenTests 17 17 0 0 296ms
✅ MyBooksViewModelBooksPublisherTests 3 3 0 0 103ms
✅ MyBooksViewModelConcurrencyTests 4 4 0 0 176ms
✅ MyBooksViewModelDownloadStateTests 3 3 0 0 140ms
✅ MyBooksViewModelEmptyArrayTests 3 3 0 0 434ms
✅ MyBooksViewModelEmptyStateTests 4 4 0 0 36ms
✅ MyBooksViewModelExtendedTests 15 15 0 0 767ms
✅ MyBooksViewModelFacetIntegrationTests 4 4 0 0 22ms
✅ MyBooksViewModelFacetPublisherTests 5 5 0 0 600ms
✅ MyBooksViewModelFilterSortInteractionTests 2 2 0 0 40ms
✅ MyBooksViewModelFilterTests 9 9 0 0 128ms
✅ MyBooksViewModelGuardConditionsTests 2 2 0 0 50ms
✅ MyBooksViewModelLargeDatasetTests 2 2 0 0 231ms
✅ MyBooksViewModelLoadAccountTests 2 2 0 0 141ms
✅ MyBooksViewModelLoginStateTests 4 4 0 0 357ms
✅ MyBooksViewModelMultipleAuthorSortingTests 3 3 0 0 24ms
✅ MyBooksViewModelNotificationTests 4 4 0 0 352ms
✅ MyBooksViewModelOfflineFilteringTests 3 3 0 0 14ms
✅ MyBooksViewModelPublisherTests 7 7 0 0 92ms
✅ MyBooksViewModelSearchEdgeCaseTests 6 6 0 0 72ms
✅ MyBooksViewModelSearchQueryTests 3 3 0 0 33ms
✅ MyBooksViewModelSortPersistenceTests 3 3 0 0 18ms
✅ MyBooksViewModelSortingIntegrationTests 5 5 0 0 145ms
✅ MyBooksViewModelSortingTests 6 6 0 0 379ms
✅ MyBooksViewModelStateTransitionTests 3 3 0 0 365ms
✅ MyBooksViewModelUIBindingTests 3 3 0 0 84ms
✅ NSErrorAdditionsTests 7 7 0 0 287ms
✅ NSNotificationTPPTests 3 3 0 0 15ms
✅ NavigationCoordinatorHubTests 11 11 0 0 97ms
✅ NavigationCoordinatorTests 18 18 0 0 867ms
✅ NavigationFreezePreventionTests 5 5 0 0 6ms
✅ NetworkCacheClearRoutingTests 3 3 0 0 227ms
✅ NetworkExecutorCredentialGuardTests 8 8 0 0 618ms
✅ NetworkExecutorResponseRegressionTests 4 4 0 0 53ms
✅ NetworkExecutorTaskTypeTests 3 3 0 0 68ms
✅ NetworkOfflineDetectionTests 3 3 0 0 24ms
✅ NetworkQueueTests 22 22 0 0 2.12s
✅ NetworkRequestQueueTests 2 2 0 0 10.10s
✅ NetworkResponderAuthChallengeWitnessTests 13 13 0 0 67ms
✅ NetworkRetryLogicTests 7 7 0 0 163ms
✅ NetworkTimeoutTests 2 2 0 0 1ms
✅ NotificationEventTypeContractTests 7 7 0 0 429ms
✅ NotificationPayloadContractTests 10 10 0 0 70ms
✅ NotificationServiceReadinessGateTests 4 4 0 0 2.05s
✅ NotificationServiceStateMachineTests 9 9 0 0 999ms
✅ NotificationServiceTests 16 16 0 0 1.03s
✅ NotificationServiceTokenTests 25 25 0 0 1.83s
✅ NotificationSyncThrottleTests 5 5 0 0 74ms
✅ NotificationTokenDataTests 4 4 0 0 108ms
✅ NotificationTokenRegistrationTests 10 10 0 0 256ms
✅ NowPlayingCoordinatorBackgroundTests 6 6 0 0 832ms
✅ NowPlayingCoordinatorTests 19 19 0 0 1.09s
✅ OAuthSAMLRedirectRegressionTests 4 4 0 0 198ms
✅ OIDCAuthDocumentParsingTests 4 4 0 0 543ms
✅ OIDCAuthTypeTests 5 5 0 0 1.32s
✅ OIDCAuthenticationPropertyTests 8 8 0 0 442ms
✅ OIDCCallbackEdgeCaseTests 9 9 0 0 2.43s
✅ OIDCCallbackHandlingTests 5 5 0 0 657ms
✅ OIDCCallbackSchemeTests 3 3 0 0 6.72s
✅ OIDCIsolationRegressionTests 6 6 0 0 356ms
✅ OIDCLoginRoutingTests 3 3 0 0 107ms
✅ OIDCMakeRequestTests 3 3 0 0 554ms
✅ OIDCNSCodingTests 1 1 0 0 50ms
✅ OIDCNetworkLayer401Tests 5 5 0 0 184ms
✅ OIDCReauthAttemptTests 9 9 0 0 107ms
✅ OIDCReauthOnExpiredTokenTests 5 5 0 0 157ms
✅ OIDCReauthRetryBehaviorTests 5 5 0 0 3.93s
✅ OIDCReauthWiringLintTests 4 4 0 0 1.41s
✅ OIDCRedirectURIConstructionTests 6 6 0 0 648ms
✅ OIDCRegressionTests 9 9 0 0 2.61s
✅ OIDCSelectedAuthenticationTests 2 2 0 0 116ms
✅ OIDCSignOutRegressionTests 6 6 0 0 452ms
✅ OIDCTokenRefreshRegressionTests 6 6 0 0 484ms
✅ OIDCUpdateUserAccountTests 5 5 0 0 2.22s
✅ OIDCViewModelRegressionTests 1 1 0 0 23ms
✅ OIDCViewModelSignInTests 2 2 0 0 27ms
✅ OPDS1BorrowEntryContractTests 4 4 0 0 28ms
✅ OPDS1CatalogGroupedContractTests 3 3 0 0 12ms
✅ OPDS1HoldEntriesContractTests 4 4 0 0 14ms
✅ OPDS1LoansFeedContractTests 6 6 0 0 154ms
✅ OPDS1ParsingTests 34 34 0 0 552ms
✅ OPDS1RevokeResponseContractTests 2 2 0 0 4ms
✅ OPDS2AuthenticationDocumentTests 18 18 0 0 6.07s
✅ OPDS2AvailabilityTests 4 4 0 0 166ms
✅ OPDS2BookBridgeTests 44 44 0 0 3.29s
✅ OPDS2BorrowResponseContractTests 3 3 0 0 163ms
✅ OPDS2CatalogWiringTests 21 21 0 0 2.48s
✅ OPDS2CatalogsFeedTests 3 3 0 0 365ms
✅ OPDS2ContributorTests 2 2 0 0 3ms
✅ OPDS2EmptyFeedContractTests 1 1 0 0 8ms
✅ OPDS2FeedContractTests 4 4 0 0 98ms
✅ OPDS2FeedParsingTests 11 11 0 0 220ms
✅ OPDS2FeedTests 14 14 0 0 1.13s
✅ OPDS2FullMetadataTests 4 4 0 0 11ms
✅ OPDS2FullPublicationTests 13 13 0 0 151ms
✅ OPDS2IntegrationTests 18 18 0 0 776ms
✅ OPDS2LinkArrayTests 5 5 0 0 51ms
✅ OPDS2LinkComputedPropertyTests 20 20 0 0 53ms
✅ OPDS2LinkRelTests 1 1 0 0 79ms
✅ OPDS2LinkTests 2 2 0 0 183ms
✅ OPDS2ParsingTests 38 38 0 0 258ms
✅ OPDS2PublicationExtendedTests 53 53 0 0 1.66s
✅ OPDS2PublicationImageTests 6 6 0 0 43ms
✅ OPDS2PublicationNarratorTests 3 3 0 0 105ms
✅ OPDS2PublicationTests 2 2 0 0 41ms
✅ OPDS2SamlIDPTests 6 6 0 0 28ms
✅ OPDS2SearchResultsContractTests 3 3 0 0 27ms
✅ OPDS2SubjectTests 2 2 0 0 2ms
✅ OPDS2SupportingTypesTests 5 5 0 0 309ms
✅ OPDSAcquisitionPathExpandedTests 15 15 0 0 714ms
✅ OPDSFeedCacheTests 14 14 0 0 151ms
✅ OPDSFeedMigrationTests 11 11 0 0 425ms
✅ OPDSFeedParsingTests 2 2 0 0 39ms
✅ OPDSFeedServiceStateMachineTests 3 3 0 0 184ms
✅ OPDSFeedServiceTests 2 2 0 0 51ms
✅ OPDSFormatTests 13 13 0 0 195ms
✅ OPDSParserCoreTests 4 4 0 0 913ms
✅ OPDSParserTests 4 4 0 0 18ms
✅ OPDSParsingTests 57 57 0 0 5.82s
✅ OfflineActionTests 29 29 0 0 218ms
✅ OfflineQueueCoordinatorTests 11 11 0 0 54ms
✅ OfflineQueueServiceExtendedTests 13 13 0 0 2.13s
✅ OfflineQueueServiceTests 17 17 0 0 335ms
✅ OpenAccessAdapterTests 13 13 0 0 187ms
✅ OverdriveDeferredFulfillmentTests 6 6 0 0 9ms
✅ OverdriveDownloadHandlerTests 9 9 0 0 397ms
✅ OverdriveFulfillmentTests 25 25 0 0 1.03s
✅ PDFExtensionsTests 20 20 0 0 148ms
✅ PDFKitThumbnailProviderTests 5 5 0 0 89ms
✅ PDFReaderTests 12 12 0 0 556ms
✅ PDFSearchEmptyStateTests 4 4 0 0 404ms
✅ PP3596RegressionTests 3 3 0 0 593ms
✅ PalaceCheckPropertyTests 8 8 0 0 655ms
✅ PalaceErrorCategoryTests 20 20 0 0 58ms
✅ PalaceErrorExtendedTests 23 23 0 0 316ms
✅ PalaceErrorTests 11 11 0 0 1.50s
✅ PalaceHapticTests 4 4 0 0 248ms
✅ PalaceMotionTests 11 11 0 0 339ms
✅ PalacePDFViewTests 12 12 0 0 85ms
✅ PalacePreferencesSettingsRoundTripTests 9 9 0 0 135ms
✅ PalacePressableButtonStyleTests 6 6 0 0 37ms
✅ PalaceTestSetupObservationTests 4 4 0 0 281ms
✅ PalaceWiringTestCaseTests 4 4 0 0 285ms
✅ ParserFuzzTests 4 4 0 0 47.34s
✅ PatronProfileContractTests 4 4 0 0 17ms
✅ PerformanceMonitorTests 14 14 0 0 261ms
✅ PerformanceReportTests 14 14 0 0 176ms
✅ PersistentLoggerTests 9 9 0 0 1.53s
✅ PlaybackBootstrapperAudioSessionTests 2 2 0 0 179ms
✅ PlaybackBootstrapperTests 8 8 0 0 389ms
✅ PlaybackFailureRecordTests 5 5 0 0 8ms
✅ PlaybackOpenPolicyTests 7 7 0 0 81ms
✅ PlaybackRateTests 18 18 0 0 794ms
✅ PlaybackTrackingRegressionTests 5 5 0 0 89ms
⚠️ PoolResponsivenessProbeTests 5 4 0 0 462ms
✅ PositionPersistenceLogicTests 6 6 0 0 15ms
✅ PositionPersistenceTests 2 2 0 0 3ms
✅ PositionSyncServiceTests 13 13 0 0 264ms
✅ PositionSyncTests 5 5 0 0 7ms
✅ PositionWriterContractTests 6 6 0 0 710ms
✅ PostUpdateMigrationTests 5 5 0 0 394ms
✅ ProblemDocumentContractTests 4 4 0 0 8ms
✅ ProblemDocumentLoanExpiryTests 5 5 0 0 5ms
✅ ProblemDocumentTests 12 12 0 0 49ms
✅ ProblemReportEmailTests 11 11 0 0 85ms
✅ RatingCardMotionGateTests 5 5 0 0 1.60s
✅ RatingEligibilityPolicyTests 17 17 0 0 112ms
✅ RatingEngagementTrackerTests 9 9 0 0 59ms
✅ RatingFeedbackPresenterTests 3 3 0 0 57ms
✅ RatingPromptPresenterTests 21 21 0 0 864ms
✅ ReachabilityTests 10 10 0 0 1.07s
✅ Reader2BookmarkContractTests 3 3 0 0 28ms
✅ Reader2PositionAdapterContractTests 4 3 0 1 709ms
✅ Reader2PositionResumeContractTests 3 3 0 0 134ms
✅ ReaderAccessibilityTests 7 7 0 0 527ms
✅ ReaderChromeToggleFadeTests 3 3 0 0 340ms
✅ ReaderEditingActionsTests 5 5 0 0 18ms
✅ ReaderErrorTests 5 5 0 0 5ms
✅ ReaderNavBarVoiceOverTests 2 2 0 0 4ms
✅ ReaderPageOfFormatTests 3 3 0 0 61ms
✅ ReaderServicePDFRouteTests 3 3 0 0 152ms
✅ ReaderServiceRouteOwnershipTests 8 8 0 0 309ms
✅ ReaderServiceSyncTests 3 3 0 0 26ms
✅ ReaderThemeTests 24 24 0 0 358ms
✅ ReadingPositionTests 22 22 0 0 319ms
✅ RedirectHandlingIntegrationTests 4 4 0 0 269ms
✅ RedirectPolicyTests 9 9 0 0 147ms
✅ RegistryDownloadServicingSeamTests 3 3 0 0 758ms
✅ RegistryFileRecoveryTests 23 23 0 0 2.24s
✅ RemoteFeatureFlagsGapTests 4 4 0 0 14ms
✅ RemoteFeatureFlagsSideLoadingTests 5 5 0 0 25ms
✅ RemoteFeatureFlagsTests 21 21 0 0 10.59s
✅ ResourcePropertiesLengthTests 3 3 0 0 14ms
✅ RetryClassificationTests 17 17 0 0 2.01s
✅ ReturnFlowTests 1 1 0 0 1ms
✅ ReturnReducerContractTests 16 16 0 0 79ms
✅ RightsManagementDetectionTests 5 5 0 0 5ms
✅ RightsManagementDispatchContractTests 8 8 0 0 110ms
✅ RightsManagementDispatcherTests 10 10 0 0 321ms
✅ RuntimeQuiescenceGateTests 11 10 0 1 3.30s
✅ RuntimeQuiescenceLintTests 5 5 0 0 1.96s
✅ SAMLCookieSyncTests 5 5 0 0 41ms
✅ SAMLLogoutCallbackDetectionTests 4 4 0 0 12ms
✅ SAMLLogoutLinkParsingTests 5 5 0 0 1.76s
✅ SAMLLogoutURLTests 4 4 0 0 37ms
✅ SAMLPlusBiblioBoardExpirationTests 8 8 0 0 7.22s
✅ SEMigrationsTests 6 6 0 0 77ms
✅ SafeDictionaryTests 21 21 0 0 344ms
✅ SamplePlayerErrorTests 5 5 0 0 272ms
✅ SampleTypeTests 8 8 0 0 83ms
✅ SceneDelegateTests 1 1 0 0 2ms
✅ ScopedResetTests 9 9 0 0 451ms
✅ SearchAccessibilityTests 11 11 0 0 2.07s
✅ SearchFlowIntegrationTests 8 8 0 0 138ms
✅ SettingsViewModelComputedPropertyTests 6 6 0 0 63ms
✅ SettingsViewModelEdgeCaseTests 7 7 0 0 51ms
✅ SettingsViewModelGapTests 1 1 0 0 2ms
✅ SettingsViewModelSyncTests 14 14 0 0 247ms
✅ SettingsViewModelTests 33 33 0 0 1.69s
✅ SideloadBoundaryTests 6 6 0 0 207ms
✅ SideloadImportContractTests 1 1 0 0 14ms
✅ SideloadedBookManagerTests 17 17 0 0 491ms
✅ SideloadedBookRegistryTests 14 14 0 0 398ms
✅ SideloadedLaneBridgeTests 6 6 0 0 88ms
✅ SideloadedLaneViewModelTests 7 7 0 0 172ms
✅ SignInFormPresentationTests 3 3 0 0 9ms
✅ SignInModalLifecycleTests 9 9 0 0 196ms
✅ SignInModalPredicateTests 3 3 0 0 8ms
✅ SignInModalSAMLOIDCTests 6 6 0 0 2.47s
✅ SignInOAuthErrorPropagationTests 8 8 0 0 449ms
✅ SignInRequestServiceCharacterizationTests 11 11 0 0 807ms
✅ SignInToReadFlowIntegrationTests 5 5 0 0 343ms
✅ SignInWebSheetIntegrationTests 3 3 0 0 3.86s
✅ SignInWebSheetViewModelTests 31 31 0 0 572ms
✅ SignOutCacheClearingTests 3 3 0 0 174ms
✅ SingletonResetRegistryTests 5 5 0 0 83ms
✅ SkeletonTests 22 22 0 0 361ms
✅ StatusAnnouncementTests 22 22 0 0 411ms
✅ StopPositionSaveTests 2 2 0 0 2ms
✅ StoreTests 5 5 0 0 25ms
✅ StreamingReaderPresentationContractTests 1 1 0 0 15ms
✅ StreamingReaderProgressStoreTests 7 7 0 0 61ms
✅ StreamingReaderViewControllerScrollRestoreTests 12 12 0 0 927ms
✅ StreamingReaderViewModelTests 9 9 0 0 72ms
✅ StringExtensionTests 8 8 0 0 16ms
✅ StringExtensionsTests 3 3 0 0 13ms
✅ StringHTMLEntitiesTests 7 7 0 0 35ms
✅ StringNYPLAdditionsTests 4 4 0 0 1.12s
✅ String_NYPLAdditionsTests 4 4 0 0 229ms
✅ SupportSectionDecisionTests 5 5 0 0 49ms
✅ SyncConflictResolutionTests 3 3 0 0 3ms
✅ SyncDeletionGuardTests 5 5 0 0 70ms
✅ SyncDeletionRatioTests 6 6 0 0 140ms
✅ SyncPermissionTests 5 5 0 0 192ms
✅ TPPAccountAuthStateEnumTests 5 5 0 0 160ms
✅ TPPAccountListDataSourceTests 3 3 0 0 103ms
✅ TPPAdobeActivationSkipTests 6 6 0 0 262ms
✅ TPPAgeCheckCompletionTests 5 5 0 0 123ms
✅ TPPAgeCheckIsValidTests 5 5 0 0 786ms
✅ TPPAgeCheckStateMachineTests 4 4 0 0 598ms
✅ TPPAgeCheckTests 6 6 0 0 1.62s
✅ TPPAgeCheckVerifyDecisionTests 5 5 0 0 162ms
✅ TPPAlertUtilsTests 45 45 0 0 1.43s
✅ TPPAnnotationsHermeticTests 27 27 0 0 1.12s
✅ TPPAnnotationsOverrideTests 4 4 0 0 331ms
✅ TPPAnnotationsTests 29 29 0 0 3.02s
✅ TPPAnnouncementManagerTests 3 3 0 0 6ms
✅ TPPAuthDocumentContractTests 3 3 0 0 17ms
✅ TPPBackgroundExecutorTests 3 3 0 0 88ms
✅ TPPBadgeImageGapTests 2 2 0 0 13ms
✅ TPPBaseReaderViewControllerInitialLocationTests 10 10 0 0 1.46s
✅ TPPBasicAuthTests 13 13 0 0 89ms
✅ TPPBookAccessibilityLabelTests 8 8 0 0 146ms
✅ TPPBookAuthorCoverageTests 3 3 0 0 39ms
✅ TPPBookAuthorTests 6 6 0 0 80ms
✅ TPPBookBearerTokenTests 9 9 0 0 1.94s
✅ TPPBookButtonsStateTests 7 7 0 0 83ms
✅ TPPBookContentMetadataFilesHelperTests 9 9 0 0 58ms
✅ TPPBookContentTypeConverterStreamingHTMLTests 2 2 0 0 2ms
✅ TPPBookContentTypeConverterTests 4 4 0 0 871ms
✅ TPPBookContentTypeExtendedTests 4 4 0 0 7ms
✅ TPPBookContentTypeTests 14 14 0 0 68ms
✅ TPPBookCoverCacheLookupTests 8 8 0 0 36ms
✅ TPPBookCoverRegistryTests 17 17 0 0 1.28s
✅ TPPBookCreationTests 7 7 0 0 40ms
✅ TPPBookExtensionsTests 21 21 0 0 1.45s
✅ TPPBookIsDRMProtectedTests 9 9 0 0 67ms
✅ TPPBookLocationCoverageTests 7 7 0 0 343ms
✅ TPPBookLocationEdgeCaseTests 27 27 0 0 181ms
✅ TPPBookLocationKeyTests 3 3 0 0 19ms
✅ TPPBookLocationTests 11 11 0 0 940ms
✅ TPPBookModelGapTests 4 4 0 0 201ms
✅ TPPBookRegistryAccountCaptureContractTests 4 4 0 0 698ms
✅ TPPBookRegistryAsyncReadinessTests 3 3 0 0 486ms
✅ TPPBookRegistryAtomicWriteTests 7 7 0 0 2.11s
✅ TPPBookRegistryBookRetrievalTests 7 7 0 0 241ms
✅ TPPBookRegistryBookmarkTests 7 7 0 0 257ms
✅ TPPBookRegistryCorruptedDataTests 5 5 0 0 713ms
✅ TPPBookRegistryDataTests 4 4 0 0 4ms
✅ TPPBookRegistryDependencyTests 4 4 0 0 121ms
✅ TPPBookRegistryFacadeContractTests 6 6 0 0 642ms
✅ TPPBookRegistryFulfillmentIdTests 4 4 0 0 416ms
✅ TPPBookRegistryLargeCorpusTests 5 5 0 0 43.47s
✅ TPPBookRegistryLoadReentrancyTests 3 3 0 0 214ms
✅ TPPBookRegistryLocationTests 4 4 0 0 78ms
✅ TPPBookRegistryMigrationTests 16 16 0 0 1.21s
✅ TPPBookRegistryMutationContractTests 10 10 0 0 538ms
✅ TPPBookRegistryPersistenceTests 10 10 0 0 288ms
✅ TPPBookRegistryProcessingTests 2 2 0 0 12ms
✅ TPPBookRegistryPublisherTests 6 6 0 0 1.77s
✅ TPPBookRegistryRebuildRefusalContractTests 1 1 0 0 14ms
✅ TPPBookRegistryRecordPersistenceTests 3 3 0 0 217ms
✅ TPPBookRegistryRecordTests 10 10 0 0 23ms
✅ TPPBookRegistryStateConcurrencyTests 2 2 0 0 101ms
✅ TPPBookRegistryStateManagementTests 11 11 0 0 1.28s
✅ TPPBookRegistrySyncContractTests 4 4 0 0 253ms
✅ TPPBookRegistryThreadSafetyTests 3 3 0 0 297ms
✅ TPPBookRegistryUpdateAndRemoveTests 1 1 0 0 11ms
✅ TPPBookRequiresAdobeDRMTests 6 6 0 0 25ms
✅ TPPBookSerializationTests 13 13 0 0 734ms
✅ TPPBookStateInitializationTests 5 5 0 0 643ms
✅ TPPBookStateTests 4 4 0 0 5ms
✅ TPPBookTests 98 98 0 0 787ms
✅ TPPBookmarkDeletionLogTests 11 11 0 0 123ms
✅ TPPBookmarkFactoryInitTests 2 2 0 0 8ms
✅ TPPBookmarkFactoryServerAnnotationEdgeCaseTests 5 5 0 0 86ms
✅ TPPBookmarkFactoryTests 15 15 0 0 234ms
✅ TPPBookmarkR3ConversionTests 5 5 0 0 28ms
✅ TPPBookmarkR3LocationTests 13 13 0 0 1.22s
✅ TPPBookmarkSpecTests 1 1 0 0 27ms
✅ TPPCachingTests 3 3 0 0 9ms
✅ TPPCapturedCredentialsTests 5 5 0 0 889ms
✅ TPPCirculationAnalyticsRequestShapeContractTests 2 2 0 0 213ms
✅ TPPConfigurationCustomRegistryTests 16 16 0 0 418ms
✅ TPPConfigurationTests 22 22 0 0 531ms
✅ TPPContentTypeTests 9 9 0 0 38ms
✅ TPPCredentialConcurrencyTests 3 3 0 0 59ms
✅ TPPCredentialIsolationE2ETests 5 5 0 0 1.27s
✅ TPPCredentialPersistenceTests 6 6 0 0 497ms
✅ TPPCredentialSnapshotCoherenceTests 3 3 0 0 188ms
✅ TPPCredentialSnapshotTests 8 8 0 0 102ms
✅ TPPCredentialsCoverageTests 9 9 0 0 174ms
✅ TPPCredentialsTests 26 26 0 0 111ms
✅ TPPCrossLibrarySignOutTests 6 6 0 0 303ms
✅ TPPDRMAuthorizingMockTimeoutTests 3 3 0 0 609ms
✅ TPPDRMFailureCredentialPreservationTests 4 4 0 0 175ms
✅ TPPErrorLoggerTests 27 27 0 0 1.12s
✅ TPPIdleSignOutRegressionTests 13 13 0 0 3.28s
✅ TPPJWKConversionTest 1 1 0 0 11ms
✅ TPPKeychainManagerTests 9 9 0 0 1.57s
✅ TPPLastReadPositionPosterTests 13 13 0 0 131ms
✅ TPPLastReadPositionSynchronizerIntegrationTests 5 5 0 0 15ms
✅ TPPLastReadPositionSynchronizerTests 23 23 0 0 1.39s
✅ TPPLastReadPositionSynchronizer_BehaviorDocumentationTests 5 5 0 0 6ms
✅ TPPLastReadPositionSynchronizer_BookLocationTests 9 9 0 0 40ms
✅ TPPLastReadPositionSynchronizer_ConcurrencyTests 3 3 0 0 33ms
✅ TPPLastReadPositionSynchronizer_ReadiumBookmarkTests 9 9 0 0 722ms
✅ TPPLastReadPositionSynchronizer_SyncLogicTests 10 10 0 0 102ms
✅ TPPLastReadPositionSynchronizer_WriterDelegationTests 4 4 0 0 77ms
✅ TPPLoginNoActivationTests 3 3 0 0 582ms
✅ TPPMainThreadCheckerTests 4 4 0 0 8ms
✅ TPPMigrationManagerTests 17 17 0 0 170ms
✅ TPPNetworkExecutorAPITests 14 14 0 0 652ms
✅ TPPNetworkExecutorCancellationTests 6 6 0 0 3.50s
✅ TPPNetworkExecutorConcurrencyTests 4 4 0 0 3.47s
✅ TPPNetworkExecutorStubbedTests 17 17 0 0 451ms
✅ TPPNetworkExecutorTests 3 3 0 0 17ms
✅ TPPNetworkResponderAuthCoordinatorTests 5 5 0 0 64ms
✅ TPPNetworkResponderRetryBufferTests 5 5 0 0 85ms
✅ TPPNetworkResponderSizeLimitTests 5 5 0 0 218ms
✅ TPPNetworkResponderTests 12 12 0 0 74ms
✅ TPPOPDSAcquisitionPathTests 5 5 0 0 43ms
✅ TPPOPDSEntryTests 5 5 0 0 13ms
✅ TPPOPDSFeedTests 3 3 0 0 73ms
✅ TPPOPDSGroupSwiftTests 3 3 0 0 3ms
✅ TPPOPDSLinkTests 7 7 0 0 45ms
✅ TPPOpenSearchDescriptionExpandedTests 10 10 0 0 175ms
✅ TPPOpenSearchDescriptionTests 1 1 0 0 <1ms
✅ TPPPDFDocumentMetadataTests 15 15 0 0 4.72s
✅ TPPPDFDocumentTests 8 8 0 0 87ms
✅ TPPPDFLocationCoverageTests 7 7 0 0 40ms
✅ TPPPDFLocationTests 10 10 0 0 309ms
✅ TPPPDFPageBookmarkTests 9 9 0 0 314ms
✅ TPPPDFPageTests 5 5 0 0 50ms
✅ TPPPDFReaderModeTests 6 6 0 0 242ms
✅ TPPPDFReaderSearchBindingTests 3 3 0 0 130ms
✅ TPPPerAccountIsolationTests 8 8 0 0 545ms
✅ TPPPreferredAuthSelectionTests 8 8 0 0 750ms
✅ TPPProblemDocumentCacheManagerTests 12 12 0 0 545ms
✅ TPPProblemDocumentTests 21 21 0 0 65ms
✅ TPPReaderAppearanceTests 4 4 0 0 21ms
✅ TPPReaderBlockNavigationTests 12 12 0 0 244ms
✅ TPPReaderBookmarksBusinessLogicTests 12 12 0 0 2.01s
✅ TPPReaderBookmarksReadinessTests 2 2 0 0 146ms
✅ TPPReaderFontTests 4 4 0 0 28ms
✅ TPPReaderFootnoteAccessibilityDOMTests 6 6 0 0 4.15s
✅ TPPReaderFootnoteAccessibilityTests 16 16 0 0 1.56s
✅ TPPReaderPageListBusinessLogicTests 27 27 0 0 1.73s
✅ TPPReaderPositionReportTests 10 10 0 0 1.43s
✅ TPPReaderPositionsVCTOCTests 5 5 0 0 360ms
✅ TPPReaderPreferencesLoadTests 3 3 0 0 14ms
✅ TPPReaderSettingsTests 28 28 0 0 1.78s
✅ TPPReaderTOCBusinessLogicTests 15 15 0 0 1.00s
✅ TPPReaderTOCFlattenTests 2 2 0 0 83ms
✅ TPPReadiumBookmarkLocationMatchingTests 5 5 0 0 486ms
✅ TPPReadiumBookmarkTests 23 23 0 0 325ms
✅ TPPReauthenticatorMockTests 2 2 0 0 11ms
✅ TPPReauthenticatorTests 4 4 0 0 87ms
✅ TPPReturnPromptHelperTests 5 5 0 0 74ms
✅ TPPSAMLCookieExpirationTests 7 7 0 0 199ms
✅ TPPSAMLFlowTests 10 10 0 0 2.17s
✅ TPPSAMLReauthFlowTests 2 2 0 0 72ms
✅ TPPSAMLRegressionTests 4 4 0 0 350ms
✅ TPPSAMLSignInTests 26 26 0 0 3.44s
✅ TPPSAMLStateIsolationTests 4 4 0 0 66ms
✅ TPPSAMLStateMachineTests 6 6 0 0 269ms
✅ TPPSaveDRMCredentialsTests 4 4 0 0 4.28s
✅ TPPSettingsTests 6 6 0 0 265ms
✅ TPPSignInAdobeSkipTests 14 14 0 0 3.86s
✅ TPPSignInAuthStateTransitionTests 3 3 0 0 223ms
✅ TPPSignInBusinessLogicExtendedTests 58 58 0 0 3.03s
✅ TPPSignInBusinessLogicOAuthTests 11 11 0 0 1.03s
✅ TPPSignInBusinessLogicSignOutTests 12 12 0 0 2.43s
✅ TPPSignInBusinessLogicStateMachineTests 10 10 0 0 677ms
✅ TPPSignInBusinessLogicTests 23 23 0 0 2.73s
✅ TPPSignInBusinessLogicTokenFlowTests 3 3 0 0 1.34s
✅ TPPSignInBusinessLogicValidationCallbackOrderTests 2 2 0 0 3.47s
✅ TPPSignInCapabilitiesCharacterizationTests 14 14 0 0 724ms
✅ TPPSignInErrorHandlingTests 2 2 0 0 143ms
✅ TPPSignInProfileDocEdgeCaseTests 3 3 0 0 161ms
✅ TPPSignedInStateProviderTests 3 3 0 0 90ms
✅ TPPUserAccountAuthStateTests 6 6 0 0 48ms
✅ TPPUserAccountConcurrencyTests 1 1 0 0 4ms
✅ TPPUserAccountGapTests 4 4 0 0 438ms
✅ TPPUserAccountIsolationLintTests 3 3 0 0 1.28s
✅ TPPUserAccountTestFactoryTests 7 7 0 0 72ms
✅ TPPUserFriendlyErrorTests 11 11 0 0 72ms
✅ TPPUserNotificationsTests 10 10 0 0 154ms
✅ TPPXMLSwiftTests 16 16 0 0 1.13s
✅ TPPXMLTests 3 3 0 0 9ms
✅ TabBarModernizationTests 8 8 0 0 11ms
✅ TaskProvenanceTests 7 7 0 0 95ms
✅ TearDownRequiredLintTests 5 5 0 0 3.91s
✅ TestAppContainerFactoryTests 5 5 0 0 93ms
✅ TestTargetCompilationConditionsTests 2 2 0 0 5ms
⚠️ TestTargetHermeticityRegressionTests 4 3 0 0 353ms
✅ TimeEntryTests 3 3 0 0 48ms
✅ TokenRefreshAndRetryQueueTests 9 9 0 0 2.56s
✅ TokenRefreshIntegrationTests 2 2 0 0 40ms
✅ TokenRefreshInterceptorAuthCoordinatorTests 8 8 0 0 527ms
✅ TokenRefreshInterceptorTests 24 24 0 0 494ms
✅ TokenRefreshOnForegroundTests 10 10 0 0 2.29s
✅ TokenRefreshTests 25 25 0 0 450ms
✅ TokenRefreshWatchdogTests 5 5 0 0 349ms
✅ TokenRequestCredentialGuardTests 13 13 0 0 2.11s
✅ TokenRequestTests 11 11 0 0 387ms
✅ TokenResponseTests 21 21 0 0 146ms
✅ TriageBotKeyAdminTests 4 4 0 0 195ms
✅ TypographyPresetTests 21 21 0 0 426ms
✅ TypographyServiceTests 31 31 0 0 2.29s
✅ TypographySettingsViewModelTests 27 27 0 0 743ms
✅ UIAlertCACommitGuardTests 9 9 0 0 1.27s
✅ UIColor_NYPLAdditionsTests 1 1 0 0 98ms
✅ URLBackupExclusionTests 3 3 0 0 31ms
✅ URLExtensionTests 16 16 0 0 108ms
✅ URLExtensionsTests 11 11 0 0 437ms
✅ URLRequestExtensionsCoverageTests 3 3 0 0 3ms
✅ URLRequestExtensionsTests 11 11 0 0 254ms
✅ URLRequestNYPLAdditionsTests 11 11 0 0 24ms
✅ URLRequest_NYPLTests 1 1 0 0 7ms
✅ URLResponseAuthenticationTests 10 10 0 0 8ms
✅ URLResponseNYPLTests 14 14 0 0 1.05s
✅ URLSessionCredentialStorageTests 3 3 0 0 53ms
✅ URLSessionStubbingResetTests 2 2 0 0 5ms
✅ URLTypeTests 2 2 0 0 5ms
✅ URLValidationTests 5 5 0 0 5ms
✅ UnifiedOPDSServiceStateMachineTests 2 2 0 0 114ms
✅ UserAccountPublisherAuthStateTests 5 5 0 0 62ms
✅ UserAccountPublisherTests 14 14 0 0 380ms
✅ UserAccountValidationTests 11 11 0 0 772ms
✅ UserDefaultsIsolationLintTests 2 2 0 0 1.00s
✅ UserProfileDocumentTests 13 13 0 0 259ms
✅ UserRetryTrackerTests 10 10 0 0 360ms
✅ VerbatimTextFieldTests 9 9 0 0 320ms
✅ WebAuthPresentationAnchorTests 5 5 0 0 78ms
✅ XCTestCase_testUserDefaultsTests 3 3 0 0 47ms
✅ iPadOnMacRMSDKGuardTests 7 7 0 0 149ms

📊 Full interactive matrix: report

Failed tests
BookSignInRedirectHandlerTests.testHandleProblem_alreadySAMLStarted_setsFailedAndPresentsReauthModal
AccountsManagerStateMachineWiringTests.testSingleFlight_twoConcurrentAwaiters_oneNetworkRequest

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

📊 Testing Coverage Breakdown

Unit Test Line Coverage (testable surfaces): 48.7%

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

Target Lines Covered
Palace.app 47.4%

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: +200

⚠️ New failures — passing on base, failing on this branch
AccountsManagerStateMachineWiringTests.testSingleFlight_twoConcurrentAwaiters_oneNetworkRequest
BookSignInRedirectHandlerTests.testHandleProblem_alreadySAMLStarted_setsFailedAndPresentsReauthModal

🔗 Interactive HTML Report | CI Run Details

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

📦 Downloadable Artifacts
Artifact Description
test-report 📄 Markdown + HTML reports
test-data 📊 JSON data for tooling
test-results 🔍 Full xcresult (open in Xcode)

@mauricecarrier7

Copy link
Copy Markdown
Contributor Author

Closing in favour of #1488, which merged the identical fix into release/3.3.0 (fa20626, shipped in build 505).

The change reaches develop through the normal forward-port when release/3.3.0 merges to main and main merges back down, carrying the original SHA. Landing this PR as well would put the same 31-line change on develop from a second, unrelated SHA — which is precisely the duplicate-identity conflict the release-merge policy exists to avoid.

No work is lost: fa206268b carries the same TPPReaderFootnoteAccessibility.swift change and the same TPPReaderFootnoteAccessibilityDOMTests.swift coverage as this branch.

Re-open if release/3.3.0 is ever abandoned rather than merged.

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