forked from iryndin/jdbf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestDbfReader.java
163 lines (139 loc) · 5.85 KB
/
TestDbfReader.java
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
package net.iryndin.jdbf;
import net.iryndin.jdbf.core.DbfMetadata;
import net.iryndin.jdbf.core.DbfRecord;
import net.iryndin.jdbf.reader.DbfReader;
import net.iryndin.jdbf.util.JdbfUtils;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.Charset;
import java.text.ParseException;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
public class TestDbfReader {
@Rule
public ExpectedException exception = ExpectedException.none();
@Test
public void test1() throws IOException, ParseException {
Charset stringCharset = Charset.forName("Cp866");
InputStream dbf = getClass().getClassLoader().getResourceAsStream("data1/gds_im.dbf");
DbfRecord rec;
try (DbfReader reader = new DbfReader(dbf)) {
DbfMetadata meta = reader.getMetadata();
assertEquals(5, meta.getRecordsQty());
assertEquals(28, meta.getFields().size());
System.out.println("Read DBF Metadata: " + meta);
int recCounter = 0;
while ((rec = reader.read()) != null) {
rec.setStringCharset(stringCharset);
System.out.println("Record is DELETED: " + rec.isDeleted());
System.out.println(rec.getRecordNumber());
System.out.println(rec.toMap());
recCounter++;
assertEquals(recCounter, rec.getRecordNumber());
}
}
}
@Test
public void test2() throws IOException, ParseException {
Charset stringCharset = Charset.forName("Cp866");
InputStream dbf = getClass().getClassLoader().getResourceAsStream("data1/tir_im.dbf");
DbfRecord rec;
try (DbfReader reader = new DbfReader(dbf)) {
DbfMetadata meta = reader.getMetadata();
assertEquals(1, meta.getRecordsQty());
assertEquals(117, meta.getFields().size());
System.out.println("Read DBF Metadata: " + meta);
int recCounter = 0;
while ((rec = reader.read()) != null) {
rec.setStringCharset(stringCharset);
System.out.println("Record is DELETED: " + rec.isDeleted());
System.out.println(rec.getRecordNumber());
System.out.println(rec.toMap());
recCounter++;
assertEquals(recCounter, rec.getRecordNumber());
}
}
}
@Test
public void testEmptyStream() throws IOException {
InputStream dbf = new ByteArrayInputStream(new byte[] {});
exception.expect(IOException.class);
exception.expectMessage("The file is corrupted or is not a dbf file");
try (DbfReader reader = new DbfReader(dbf)) {
}
}
@Test
public void testOneByteStreamWithGoodFileType() throws IOException {
InputStream dbf = new ByteArrayInputStream(new byte[] {0x02});
exception.expect(IOException.class);
exception.expectMessage("The file is corrupted or is not a dbf file");
try (DbfReader reader = new DbfReader(dbf)) {
}
}
@Test
public void testOneByteStreamWithBadFileType() throws IOException {
InputStream dbf = new ByteArrayInputStream(new byte[] {0x02});
exception.expect(IOException.class);
exception.expectMessage("The file is corrupted or is not a dbf file");
try (DbfReader reader = new DbfReader(dbf)) {
}
}
@Test
public void testSixteenByteStreamWithGoodFileType() throws IOException {
InputStream dbf = new ByteArrayInputStream(new byte[] {
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2});
exception.expect(IOException.class);
exception.expectMessage("The file is corrupted or is not a dbf file");
try (DbfReader reader = new DbfReader(dbf)) {
}
}
@Test
public void testThirtyTwoByteStreamWithGoodFileType() throws IOException {
InputStream dbf = new ByteArrayInputStream(new byte[] {
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2 });
exception.expect(IOException.class);
exception.expectMessage("The file is corrupted or is not a dbf file");
try (DbfReader reader = new DbfReader(dbf)) {
}
}
@Test
public void testSixtyFourByteStreamWithGoodFileType() throws IOException {
InputStream dbf = new ByteArrayInputStream(new byte[] {
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2 });
exception.expect(IOException.class);
exception.expectMessage("The file is corrupted or is not a dbf file");
try (DbfReader reader = new DbfReader(dbf)) {
}
}
@Test
public void testSixtyFourByteStreamWithGoodFileTypeAndCloseHeader() throws IOException {
InputStream dbf = new ByteArrayInputStream(new byte[] {
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
JdbfUtils.HEADER_TERMINATOR });
try (DbfReader reader = new DbfReader(dbf)) {
assertNull(reader.read());
}
}
}