Skip to content

Commit db182d3

Browse files
committed
Create CSVReader util using Apache Commons CSV
1 parent 0eb215d commit db182d3

File tree

3 files changed

+84
-0
lines changed

3 files changed

+84
-0
lines changed

pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,16 @@
107107
<artifactId>handlebars</artifactId>
108108
<version>4.3.1</version>
109109
</dependency>
110+
<dependency>
111+
<groupId>org.apache.commons</groupId>
112+
<artifactId>commons-collections4</artifactId>
113+
<version>4.4</version>
114+
</dependency>
115+
<dependency>
116+
<groupId>org.apache.commons</groupId>
117+
<artifactId>commons-csv</artifactId>
118+
<version>1.10.0</version>
119+
</dependency>
110120
</dependencies>
111121
<build>
112122
<plugins>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package org.codeforamerica.messaging.utils;
2+
3+
import org.apache.commons.collections4.CollectionUtils;
4+
import org.apache.commons.csv.CSVFormat;
5+
import org.apache.commons.csv.CSVParser;
6+
import org.apache.commons.csv.CSVRecord;
7+
8+
import java.io.IOException;
9+
import java.io.Reader;
10+
import java.util.List;
11+
import java.util.stream.Stream;
12+
13+
public class CSVReader {
14+
private final CSVParser parser;
15+
16+
public CSVReader(Reader reader) throws IOException {
17+
var csvFormat = CSVFormat.Builder.create(CSVFormat.RFC4180)
18+
.setHeader()
19+
.setSkipHeaderRecord(true)
20+
.setIgnoreSurroundingSpaces(true)
21+
.build();
22+
this.parser = csvFormat.parse(reader);
23+
}
24+
25+
public boolean validateHeader(List<String> requiredHeaderNames) {
26+
return CollectionUtils.isEqualCollection(requiredHeaderNames, parser.getHeaderNames());
27+
}
28+
29+
public Stream<CSVRecord> stream() {
30+
return parser.stream();
31+
}
32+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
package org.codeforamerica.messaging.utils;
2+
3+
import org.junit.jupiter.api.Test;
4+
5+
import java.io.IOException;
6+
import java.io.StringReader;
7+
import java.util.List;
8+
import java.util.stream.Collectors;
9+
10+
import static org.junit.jupiter.api.Assertions.*;
11+
12+
class CSVReaderTest {
13+
14+
String testCSV = """
15+
phone, email, language, color, score
16+
1234567890,[email protected], en, grey, 23
17+
8885551212,[email protected], es, black, 42
18+
""";
19+
20+
@Test
21+
public void whenRequiredHeadersPresent_ThenSucceedsValidation() throws IOException {
22+
CSVReader reader = new CSVReader(new StringReader(testCSV));
23+
24+
assertTrue(reader.validateHeader(List.of("phone", "email", "language", "color", "score")));
25+
}
26+
27+
@Test
28+
public void whenRequiredHeadersAbsent_ThenFailsValidation() throws IOException {
29+
CSVReader reader = new CSVReader(new StringReader(testCSV));
30+
31+
assertFalse(reader.validateHeader(List.of("phone", "language", "color", "score")));
32+
}
33+
34+
@Test
35+
public void whenParsed_ThenReturnsCorrectCSV() throws IOException {
36+
CSVReader reader = new CSVReader(new StringReader(testCSV));
37+
38+
List<String> result = reader.stream().map((r) -> r.get("phone")).collect(Collectors.toList());
39+
40+
assertEquals(result, List.of("1234567890", "8885551212"));
41+
}
42+
}

0 commit comments

Comments
 (0)