]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.util/ext/test/org/argeo/util/CsvParserParseFileTest.java
Rename container scripts.
[lgpl/argeo-commons.git] / org.argeo.util / ext / test / org / argeo / util / CsvParserParseFileTest.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.util;
17
18 import java.io.InputStream;
19 import java.util.HashMap;
20 import java.util.Map;
21
22 /** Test that {@link CsvParser} can properly parse a CSV file. */
23 public class CsvParserParseFileTest {
24 public void testParse() throws Exception {
25
26 final Map<Integer, Map<String, String>> lines = new HashMap<Integer, Map<String, String>>();
27 InputStream in = getClass().getResourceAsStream("/org/argeo/util/ReferenceFile.csv");
28 CsvParserWithLinesAsMap parser = new CsvParserWithLinesAsMap() {
29 protected void processLine(Integer lineNumber, Map<String, String> line) {
30 lines.put(lineNumber, line);
31 }
32 };
33
34 parser.parse(in);
35 in.close();
36
37 assert 5 == lines.size();
38 }
39
40 }