blob: 6a0e053a0308a35fc44f6a71a5a54029785da4bc (
plain)
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
|
package data.io.csv;
import static org.junit.Assert.*;
import java.io.IOException;
import java.io.StringReader;
import java.util.Iterator;
import org.junit.Test;
import data.MVDataEntry;
public class CSVDataReaderTest {
@Test
public void testNext() throws IOException {
CSVDataReader reader = new CSVDataReader(
"testNext",
new StringReader(CSVDataReader.CSV_DEMO),
false
);
MVDataEntry expected[] = new MVDataEntry[3];
expected[0]=new MVDataEntry("line1");
expected[0].splitAndPut("from", "csv1;csv1bis", ";");
expected[0].splitAndPut("attr2","csv1",";");
expected[1]=new MVDataEntry("line2");
expected[1].splitAndPut("hello", "all;the;world", ";");
expected[2]=new MVDataEntry("line3");
expected[2].splitAndPut("hello", "all;the;others", ";");
// Test twice to check if asking a new iterator "rewinds" correctly
for (int i=0;i<2;i++) {
System.out.println("Loop " + (i+1));
Iterator<MVDataEntry> readerIt = reader.iterator();
for ( MVDataEntry e: expected) {
assertTrue(readerIt.hasNext());
MVDataEntry r = readerIt.next();
System.out.println(e + " / " + r);
assertEquals(e, r);
}
assertFalse(readerIt.hasNext());
}
}
}
|