/** * This file is part of Graylog. * * Graylog is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Graylog is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Graylog. If not, see <http://www.gnu.org/licenses/>. */ package org.graylog2.inputs.converters; import com.google.common.collect.Maps; import org.graylog2.ConfigurationException; import org.junit.Test; import java.util.Map; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.fail; @SuppressWarnings("unchecked") public class CsvConverterTest { @Test public void testConfigHandling() { Map<String, Object> configMap = Maps.newHashMap(); assertConfigException(configMap); configMap.put("column_header", null); assertConfigException(configMap); configMap.put("column_header", ""); assertConfigException(configMap); // the rest of the fields have defaults configMap.put("column_header", "field1"); assertNoConfigException(configMap); } @Test public void testSuccessfulConversion() throws ConfigurationException { Map<String, Object> configMap = Maps.newHashMap(); configMap.put("column_header", "f1,f2"); CsvConverter csvConverter = new CsvConverter(configMap); Map<String, String> result = (Map<String, String>) csvConverter.convert("\"content1\",\"cont\\\\ent3\""); assertEquals("content1", result.get("f1")); assertEquals("cont\\ent3", result.get("f2")); } @Test public void testEdgeCases() throws ConfigurationException { Map<String, Object> configMap = Maps.newHashMap(); configMap.put("column_header", "f1,f2"); CsvConverter csvConverter = new CsvConverter(configMap); String resultString = (String) csvConverter.convert(""); assertEquals("", resultString); // too few fields Map<String, String> result = (Map<String, String>) csvConverter.convert("field1"); assertNull("Too few fields in data doesn't work", result); // too many fields result = (Map<String, String>) csvConverter.convert("field1,field2,field3"); assertNull("Too many fields in data doesn't work", result); // unclosed quote level result = (Map<String, String>) csvConverter.convert("field1,field2,\"field3"); assertNull("Unbalanced quoting does not work", result); } private void assertNoConfigException(Map<String, Object> configMap) { CsvConverter csvConverter = null; try { csvConverter = new CsvConverter(configMap); } catch (ConfigurationException e) { fail(); } assertNotNull(csvConverter); } private void assertConfigException(Map<String, Object> configMap) { ConfigurationException configurationException = null; try { new CsvConverter(configMap); } catch (ConfigurationException e) { configurationException = e; } assertNotNull("Config exception expected", configurationException); } }