1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#![allow(dead_code)]
//! Integration tests for layout analysis algorithms.
//!
//! These tests verify the complete layout analysis pipeline with mock data
//! simulating realistic PDF document structures.
use pdf_oxide::geometry::{Point, Rect};
use pdf_oxide::layout::{
clustering::{cluster_chars_into_words, cluster_words_into_lines},
reading_order::graph_based_reading_order,
FontWeight, TextBlock, TextChar,
};
// ============================================================================
// Helper Functions for Creating Mock Data
// ============================================================================
/// Create a mock character with minimal required data.
fn mock_char(c: char, x: f32, y: f32, size: f32) -> TextChar {
let width = size * 0.6;
TextChar {
char: c,
bbox: Rect::new(x, y, width, size),
font_size: size,
origin_x: x,
origin_y: y,
advance_width: width,
..Default::default()
}
}
/// Create a mock character with bold weight.
fn mock_bold_char(c: char, x: f32, y: f32, size: f32) -> TextChar {
let width = size * 0.6;
TextChar {
char: c,
bbox: Rect::new(x, y, width, size),
font_name: "Times-Bold".to_string(),
font_size: size,
font_weight: FontWeight::Bold,
origin_x: x,
origin_y: y,
advance_width: width,
..Default::default()
}
}
/// Create a text block from a string at a specific position.
fn mock_block(text: &str, x: f32, y: f32, size: f32, bold: bool) -> TextBlock {
let chars: Vec<TextChar> = text
.chars()
.enumerate()
.map(|(i, c)| {
if bold {
mock_bold_char(c, x + i as f32 * size * 0.6, y, size)
} else {
mock_char(c, x + i as f32 * size * 0.6, y, size)
}
})
.collect();
TextBlock::from_chars(chars)
}
/// Create a two-column layout with multiple lines per column.
fn create_two_column_layout() -> Vec<TextBlock> {
vec![
// Left column
mock_block("First", 0.0, 0.0, 12.0, false),
mock_block("line", 50.0, 0.0, 12.0, false),
mock_block("Second", 0.0, 20.0, 12.0, false),
mock_block("line", 50.0, 20.0, 12.0, false),
// Right column
mock_block("Third", 300.0, 0.0, 12.0, false),
mock_block("line", 350.0, 0.0, 12.0, false),
mock_block("Fourth", 300.0, 20.0, 12.0, false),
mock_block("line", 350.0, 20.0, 12.0, false),
]
}
// ============================================================================
// Geometry Tests
// ============================================================================
#[test]
fn test_geometry_point() {
let p = Point::new(10.0, 20.0);
assert_eq!(p.x, 10.0);
assert_eq!(p.y, 20.0);
}
#[test]
fn test_geometry_rect_operations() {
let r1 = Rect::new(0.0, 0.0, 100.0, 100.0);
let r2 = Rect::new(50.0, 50.0, 100.0, 100.0);
// Intersection
assert!(r1.intersects(&r2));
// Union
let union = r1.union(&r2);
assert_eq!(union.left(), 0.0);
assert_eq!(union.right(), 150.0);
// Contains point
let p1 = Point::new(50.0, 50.0);
assert!(r1.contains_point(&p1));
}
// ============================================================================
// DBSCAN Clustering Tests
// ============================================================================
#[test]
fn test_cluster_chars_into_words_simple() {
let chars = vec![
mock_char('H', 0.0, 0.0, 12.0),
mock_char('i', 8.0, 0.0, 12.0),
// Gap
mock_char('B', 50.0, 0.0, 12.0),
mock_char('y', 58.0, 0.0, 12.0),
mock_char('e', 66.0, 0.0, 12.0),
];
let clusters = cluster_chars_into_words(&chars, 15.0);
// Should produce 2 words: "Hi" and "Bye"
assert_eq!(clusters.len(), 2);
// Verify "Hi" cluster
let hi_cluster = clusters.iter().find(|c| c.contains(&0)).unwrap();
assert!(hi_cluster.contains(&0));
assert!(hi_cluster.contains(&1));
// Verify "Bye" cluster
let bye_cluster = clusters.iter().find(|c| c.contains(&2)).unwrap();
assert!(bye_cluster.contains(&2));
assert!(bye_cluster.contains(&3));
assert!(bye_cluster.contains(&4));
}
#[test]
fn test_cluster_words_into_lines_simple() {
let word1 = mock_block("Hello", 0.0, 0.0, 12.0, false);
let word2 = mock_block("World", 50.0, 1.0, 12.0, false);
let word3 = mock_block("Next", 0.0, 30.0, 12.0, false);
let word4 = mock_block("Line", 50.0, 31.0, 12.0, false);
let words = vec![word1, word2, word3, word4];
let lines = cluster_words_into_lines(&words, 5.0);
// Should produce 2 lines
assert_eq!(lines.len(), 2);
// Line 1: "Hello World"
let line1 = lines.iter().find(|l| l.contains(&0)).unwrap();
assert!(line1.contains(&0));
assert!(line1.contains(&1));
// Line 2: "Next Line"
let line2 = lines.iter().find(|l| l.contains(&2)).unwrap();
assert!(line2.contains(&2));
assert!(line2.contains(&3));
}
// ============================================================================
// NOTE: XY-Cut Column Detection Tests Removed
// These tests were removed in Phase 2.2 of CLEANUP_ROADMAP.md
// as the column_detector module and XY-Cut algorithm were deleted
// for PDF spec compliance (they are non-spec-compliant heuristics)
// ============================================================================
// ============================================================================
// Reading Order Tests
// ============================================================================
// NOTE: test_reading_order_tree_based removed - relied on LayoutTree and determine_reading_order (both deleted)
#[test]
fn test_reading_order_graph_based_simple() {
// PDF coordinates: Y increases upward, so top of page has larger Y
let blocks = vec![
mock_block("TopLeft", 0.0, 100.0, 12.0, false),
mock_block("TopRight", 100.0, 100.0, 12.0, false),
mock_block("BottomLeft", 0.0, 50.0, 12.0, false),
mock_block("BottomRight", 100.0, 50.0, 12.0, false),
];
let order = graph_based_reading_order(&blocks);
// Reading order: left-to-right, top-to-bottom
// Should be: 0, 1, 2, 3
assert_eq!(order[0], 0); // TopLeft first
assert_eq!(order[1], 1); // TopRight second
assert_eq!(order[2], 2); // BottomLeft third
assert_eq!(order[3], 3); // BottomRight fourth
}
#[test]
fn test_reading_order_two_columns() {
// PDF coordinates: Y increases upward, so top of page has larger Y
let blocks = vec![
mock_block("Col1Line1", 0.0, 100.0, 12.0, false),
mock_block("Col1Line2", 0.0, 50.0, 12.0, false),
mock_block("Col2Line1", 300.0, 100.0, 12.0, false),
mock_block("Col2Line2", 300.0, 50.0, 12.0, false),
];
let order = graph_based_reading_order(&blocks);
// Reading order should maintain top-to-bottom within columns
// First block should be a top block (0 or 2)
assert!(order[0] == 0 || order[0] == 2);
// All blocks should be included
assert_eq!(order.len(), 4);
assert!(order.contains(&0));
assert!(order.contains(&1));
assert!(order.contains(&2));
assert!(order.contains(&3));
}
// ============================================================================
// NOTE: Heading and Table Detection Tests Removed
// These tests were removed in Phase 1 of CLEANUP_ROADMAP.md
// as heading_detector and table_detector modules were deleted
// for PDF spec compliance (they are non-spec-compliant heuristics)
// ============================================================================
// Integration Tests - Full Pipeline
// ============================================================================
// NOTE: test_full_pipeline_two_column_document removed - relied on xy_cut, determine_reading_order, and detect_headings (all deleted)
#[test]
fn test_empty_inputs() {
// Test all functions with empty inputs
let empty_blocks: Vec<TextBlock> = vec![];
let empty_chars: Vec<TextChar> = vec![];
// Clustering
assert_eq!(cluster_chars_into_words(&empty_chars, 10.0).len(), 0);
assert_eq!(cluster_words_into_lines(&empty_blocks, 5.0).len(), 0);
// Reading order
assert_eq!(graph_based_reading_order(&empty_blocks).len(), 0);
}
#[test]
fn test_single_element_inputs() {
// Test all functions with single elements
let single_char = vec![mock_char('A', 0.0, 0.0, 12.0)];
let single_block = vec![mock_block("Single", 0.0, 0.0, 12.0, false)];
// Clustering
assert_eq!(cluster_chars_into_words(&single_char, 10.0).len(), 1);
assert_eq!(cluster_words_into_lines(&single_block, 5.0).len(), 1);
// Reading order
assert_eq!(graph_based_reading_order(&single_block), vec![0]);
}