Windows (#291)
* Centralize library management logic and introduce support for plain text and HTML formats * Centralize library management logic and introduce support for plain text and HTML formats * Expand unit test coverage for library state management, UI models, and MainViewModel features. * Add comprehensive unit tests for PDF reader core logic, preferences, and data persistence * Add unit tests for EPUB parsing, content loading, search functionality, and reader JavaScript bridges. * Add unit tests for OPDS parsing and Smart Collection engine, and integrate Kover plugin * Add comprehensive unit tests * Centralize library snapshot serialization in the `shared` module and improve filtering and sorting logic. * Implement text selection, highlighting, and reading state persistence for PDF and EPUB engines in desktop version * Folder import support for desktop app * Introduce Smart Shelves with rule-based filtering in desktop version * Implement shared EPUB annotation serialization and highlight rendering * Centralize file type capabilities and platform-specific support logic * Refactor reader state management to use a central reducer * Implement customizable reader toolbar and advanced formatting settings in shared * Implement locator-based navigation and customizable highlight palette for desktop app * Enhance reader customization and expand search functionality in desktop app * Redesign reader settings and tools into a tabbed control panel in desktop app * Enhance reader navigation and highlight precision in desktop app * Implement bidirectional position synchronization and dynamic highlights in the desktop reader * Implement shared state management and enhanced search for the PDF reader in desktop app * Add vertical scroll support to the desktop PDF reader * Implement ink, text, and eraser annotation support in desktop PDF viewer * Implement PDF bookmarks, Table of Contents, and annotation editing in desktop app * Implement link handling and navigation for PDF and EPUB readers in desktop app * Implement PDF jump history for navigation in desktop app * Enhance PDF ink rendering and annotation capabilities in desktop app * Implement advanced PDF text annotations with inline editing and rich styling in desktop app * Add move handle and movement logic for PDF text annotations in desktop app * Implement local folder synchronization and metadata sidecar support in desktop app * Implement book metadata extraction and drag-and-drop import for Desktop * Implement dynamic and custom app theme management for desktop * Introduce canonical PDF annotation codec and support for multi-segment highlights * Implement rich text editing and pagination support for the PDF reader in desktop app * Improve PDF rich text pagination, synchronization, and observability in desktop * Hide trailing structural page breaks in rich text editor * Implement a unified JVM book loader and expand supported formats on Desktop * Add comic archive support for Desktop and enhance MOBI parsing * Implement shared OPDS catalog support and UI for Android and Desktop * Improve native WebView lifecycle and surface transition management on Desktop * Enable Compose Swing interop blending and simplify Desktop WebView management * Integrate BYOK AI features and Cloud TTS for desktop * Enhance Desktop TTS with streaming audio and improved secure storage for AI key * Implement scoped Cloud TTS with synchronized highlighting for EPUB and PDF in desktop app * Implement custom font management and utility screens in desktop app * Implement PDFium-based PDF annotation export * Remove PdfBox dependency and standardize PDF export via Pdfium * Implement local audio caching and playback controls for Gemini Cloud TTS in desktop app * Implement reader themes and custom texture support in desktop app * Redesign non-reader UI with responsive navigation and enhanced library management in desktop app * Introduce ReaderWorkspaceShell to unify EPUB and PDF reader layouts in desktop app * Exclude manual-only files from automated sync and import * Implement customizable Text-to-Speech (TTS) word replacements * Optimize reader performance with persistent layout caching and decoupled theme rendering * Improve position restoration during reader reconfiguration in epub pagination * Use independent thickness for eraser tool and stylus override
This commit is contained in:
parent
88c7fa7b5c
commit
8366d76dcd
214 changed files with 53372 additions and 4702 deletions
|
|
@ -0,0 +1,218 @@
|
|||
package com.aryan.reader.pdf
|
||||
|
||||
import android.graphics.RectF
|
||||
import androidx.compose.ui.geometry.Rect
|
||||
import androidx.compose.ui.graphics.Color
|
||||
import androidx.compose.ui.graphics.toArgb
|
||||
import com.aryan.reader.pdf.data.AnnotationSerializer
|
||||
import com.aryan.reader.pdf.data.HighlightSerializer
|
||||
import com.aryan.reader.pdf.data.PdfAnnotation
|
||||
import com.aryan.reader.pdf.data.PdfTextBox
|
||||
import com.aryan.reader.pdf.data.TextBoxSerializer
|
||||
import org.junit.Assert.assertEquals
|
||||
import org.junit.Assert.assertFalse
|
||||
import org.junit.Assert.assertNull
|
||||
import org.junit.Assert.assertTrue
|
||||
import org.junit.Test
|
||||
import org.junit.runner.RunWith
|
||||
import org.robolectric.RobolectricTestRunner
|
||||
|
||||
@RunWith(RobolectricTestRunner::class)
|
||||
class PdfReaderSerializerTest {
|
||||
|
||||
@Test
|
||||
fun `AnnotationSerializer round trips multi page annotations with precision and style`() {
|
||||
val annotations = mapOf(
|
||||
0 to listOf(
|
||||
PdfAnnotation(
|
||||
type = AnnotationType.INK,
|
||||
inkType = InkType.FOUNTAIN_PEN,
|
||||
pageIndex = 0,
|
||||
points = listOf(
|
||||
PdfPoint(0.123456f, 0.987654f, 10L),
|
||||
PdfPoint(0.2f, 0.3f, 11L)
|
||||
),
|
||||
color = Color(0xFF336699),
|
||||
strokeWidth = 0.0125f
|
||||
)
|
||||
),
|
||||
2 to listOf(
|
||||
PdfAnnotation(
|
||||
type = AnnotationType.INK,
|
||||
inkType = InkType.HIGHLIGHTER_ROUND,
|
||||
pageIndex = 2,
|
||||
points = emptyList(),
|
||||
color = Color(0x8CFFEB3B),
|
||||
strokeWidth = 0.035f
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
val decoded = AnnotationSerializer.fromJson(AnnotationSerializer.toJson(annotations))
|
||||
|
||||
assertEquals(setOf(0, 2), decoded.keys)
|
||||
val first = decoded.getValue(0).single()
|
||||
assertEquals(AnnotationType.INK, first.type)
|
||||
assertEquals(InkType.FOUNTAIN_PEN, first.inkType)
|
||||
assertEquals(Color(0xFF336699).toArgb(), first.color.toArgb())
|
||||
assertEquals(0.0125f, first.strokeWidth, 0.00001f)
|
||||
assertEquals(0.12346f, first.points[0].x, 0.00001f)
|
||||
assertEquals(0.98765f, first.points[0].y, 0.00001f)
|
||||
assertEquals(10L, first.points[0].timestamp)
|
||||
assertEquals(InkType.HIGHLIGHTER_ROUND, decoded.getValue(2).single().inkType)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `AnnotationSerializer supports legacy type field and malformed input fallback`() {
|
||||
val legacyJson = """
|
||||
[
|
||||
{
|
||||
"pageIndex": 4,
|
||||
"annotationType": "BROKEN",
|
||||
"type": "PENCIL",
|
||||
"color": -65536,
|
||||
"strokeWidth": 0.5,
|
||||
"points": [{ "x": 0.1, "y": 0.2 }]
|
||||
}
|
||||
]
|
||||
""".trimIndent()
|
||||
|
||||
val decoded = AnnotationSerializer.fromJson(legacyJson).getValue(4).single()
|
||||
|
||||
assertEquals(AnnotationType.INK, decoded.type)
|
||||
assertEquals(InkType.PENCIL, decoded.inkType)
|
||||
assertEquals(0L, decoded.points.single().timestamp)
|
||||
assertTrue(AnnotationSerializer.fromJson("not json").isEmpty())
|
||||
assertTrue(AnnotationSerializer.fromJson("").isEmpty())
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `TextBoxSerializer round trips bounds text styling and optional font data`() {
|
||||
val boxes = listOf(
|
||||
PdfTextBox(
|
||||
id = "box-1",
|
||||
pageIndex = 3,
|
||||
relativeBounds = Rect(0.1f, 0.2f, 0.8f, 0.4f),
|
||||
text = "Hello annotations",
|
||||
color = Color(0xFF112233),
|
||||
backgroundColor = Color(0x66123456),
|
||||
fontSize = 18f,
|
||||
isBold = true,
|
||||
isItalic = true,
|
||||
isUnderline = true,
|
||||
isStrikeThrough = true,
|
||||
fontPath = "/fonts/test.ttf",
|
||||
fontName = "Test Font"
|
||||
)
|
||||
)
|
||||
|
||||
val decoded = TextBoxSerializer.fromJson(TextBoxSerializer.toJson(boxes)).single()
|
||||
|
||||
assertEquals("box-1", decoded.id)
|
||||
assertEquals(3, decoded.pageIndex)
|
||||
assertEquals(Rect(0.1f, 0.2f, 0.8f, 0.4f), decoded.relativeBounds)
|
||||
assertEquals("Hello annotations", decoded.text)
|
||||
assertEquals(Color(0xFF112233).toArgb(), decoded.color.toArgb())
|
||||
assertEquals(Color(0x66123456).toArgb(), decoded.backgroundColor.toArgb())
|
||||
assertEquals(18f, decoded.fontSize, 0.0001f)
|
||||
assertTrue(decoded.isBold)
|
||||
assertTrue(decoded.isItalic)
|
||||
assertTrue(decoded.isUnderline)
|
||||
assertTrue(decoded.isStrikeThrough)
|
||||
assertEquals("/fonts/test.ttf", decoded.fontPath)
|
||||
assertEquals("Test Font", decoded.fontName)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `TextBoxSerializer defaults missing optional style fields and rejects malformed json`() {
|
||||
val legacyJson = """
|
||||
[
|
||||
{
|
||||
"id": "legacy-box",
|
||||
"pageIndex": 1,
|
||||
"text": "Legacy",
|
||||
"color": -16777216,
|
||||
"backgroundColor": 0,
|
||||
"fontSize": 14.0,
|
||||
"bounds": { "left": 0.0, "top": 0.1, "right": 0.8, "bottom": 0.2 }
|
||||
}
|
||||
]
|
||||
""".trimIndent()
|
||||
|
||||
val decoded = TextBoxSerializer.fromJson(legacyJson).single()
|
||||
|
||||
assertEquals("legacy-box", decoded.id)
|
||||
assertEquals("Legacy", decoded.text)
|
||||
assertEquals(Rect(0f, 0.1f, 0.8f, 0.2f), decoded.relativeBounds)
|
||||
assertFalse(decoded.isBold)
|
||||
assertFalse(decoded.isItalic)
|
||||
assertFalse(decoded.isUnderline)
|
||||
assertFalse(decoded.isStrikeThrough)
|
||||
assertNull(decoded.fontPath)
|
||||
assertNull(decoded.fontName)
|
||||
assertTrue(TextBoxSerializer.fromJson("broken").isEmpty())
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `HighlightSerializer round trips highlights and falls back on invalid color`() {
|
||||
val highlights = listOf(
|
||||
PdfUserHighlight(
|
||||
id = "highlight-1",
|
||||
pageIndex = 5,
|
||||
bounds = listOf(RectF(0f, 0f, 1f, 1f)),
|
||||
color = PdfHighlightColor.BLUE,
|
||||
text = "Selected text",
|
||||
range = 7 to 20,
|
||||
note = "Important"
|
||||
)
|
||||
)
|
||||
|
||||
val decoded = HighlightSerializer.fromJson(HighlightSerializer.toJson(highlights)).single()
|
||||
|
||||
assertEquals("highlight-1", decoded.id)
|
||||
assertEquals(5, decoded.pageIndex)
|
||||
assertEquals(PdfHighlightColor.BLUE, decoded.color)
|
||||
assertEquals("Selected text", decoded.text)
|
||||
assertEquals(7 to 20, decoded.range)
|
||||
assertEquals("Important", decoded.note)
|
||||
assertEquals(1, decoded.bounds.size)
|
||||
assertRectFEquals(RectF(0f, 0f, 1f, 1f), decoded.bounds.single())
|
||||
|
||||
val invalidColor = """[{"pageIndex":0,"bounds":[],"color":"NOPE","text":"x"}]"""
|
||||
assertEquals(PdfHighlightColor.YELLOW, HighlightSerializer.fromJson(invalidColor).single().color)
|
||||
assertTrue(HighlightSerializer.fromJson("bad").isEmpty())
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `HighlightSerializer omits blank notes and defaults missing legacy values`() {
|
||||
val json = HighlightSerializer.toJson(
|
||||
listOf(
|
||||
PdfUserHighlight(
|
||||
id = "blank-note",
|
||||
pageIndex = 0,
|
||||
bounds = emptyList(),
|
||||
color = PdfHighlightColor.RED,
|
||||
text = "Text",
|
||||
range = 2 to 4,
|
||||
note = " "
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
val decodedBlankNote = HighlightSerializer.fromJson(json).single()
|
||||
assertNull(decodedBlankNote.note)
|
||||
|
||||
val legacyJson = """[{"pageIndex":2,"bounds":[],"color":"GREEN"}]"""
|
||||
val decodedLegacy = HighlightSerializer.fromJson(legacyJson).single()
|
||||
assertTrue(decodedLegacy.id.isNotBlank())
|
||||
assertEquals("", decodedLegacy.text)
|
||||
assertEquals(0 to 0, decodedLegacy.range)
|
||||
}
|
||||
|
||||
private fun assertRectFEquals(expected: RectF, actual: RectF) {
|
||||
assertEquals(expected.left, actual.left, 0.0001f)
|
||||
assertEquals(expected.top, actual.top, 0.0001f)
|
||||
assertEquals(expected.right, actual.right, 0.0001f)
|
||||
assertEquals(expected.bottom, actual.bottom, 0.0001f)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue