forked from tabulapdf/tabula-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUtilsForTesting.java
More file actions
67 lines (51 loc) · 2.09 KB
/
UtilsForTesting.java
File metadata and controls
67 lines (51 loc) · 2.09 KB
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
package technology.tabula;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.List;
import org.apache.pdfbox.pdmodel.PDDocument;
import com.google.gson.Gson;
import static org.junit.Assert.*;
public class UtilsForTesting {
public static Page getAreaFromFirstPage(String path, float top, float left, float bottom, float right) throws IOException {
return getAreaFromPage(path, 1, top, left, bottom, right);
}
public static Page getAreaFromPage(String path, int page, float top, float left, float bottom, float right) throws IOException {
return getPage(path, page).getArea(top, left, bottom, right);
}
public static Page getPage(String path, int pageNumber) throws IOException {
ObjectExtractor oe = null;
try {
PDDocument document = PDDocument
.load(path);
oe = new ObjectExtractor(document);
Page page = oe.extract(pageNumber);
return page;
} finally {
if (oe != null)
oe.close();
}
}
public static void assertTableEquals(Table table, String[][] arrayOfRows) {
List<List<RectangularTextContainer>> tableRows = table.getRows();
assertEquals(arrayOfRows.length, tableRows.size());
for (int i = 0; i < arrayOfRows.length; i++) {
String[] row = arrayOfRows[i];
assertEquals(row.length, tableRows.get(i).size());
for (int j = 0; j < row.length; j++) {
assertEquals(row[j].trim(), table.getCell(i, j).getText().trim());
}
}
}
public static String loadJson(String path) throws IOException {
BufferedReader reader = new BufferedReader( new FileReader (path));
StringBuilder stringBuilder = new StringBuilder();
String line = null;
while( ( line = reader.readLine() ) != null ) {
stringBuilder.append( line );
}
return stringBuilder.toString();
}
}