/* Copyright 2010, Google Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package com.google.refine.tests.importers; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.UnsupportedEncodingException; import java.util.LinkedList; import org.json.JSONArray; import org.json.JSONObject; import org.slf4j.LoggerFactory; import org.testng.Assert; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.BeforeTest; import org.testng.annotations.Test; import com.google.refine.importers.XmlImporter; import com.google.refine.importers.tree.TreeImportingParserBase; import com.google.refine.importing.ImportingJob; import com.google.refine.model.Row; import com.google.refine.util.JSONUtilities; public class XmlImporterTests extends ImporterTest { @Override @BeforeTest public void init() { logger = LoggerFactory.getLogger(this.getClass()); } //dependencies ByteArrayInputStream inputStream = null; //System Under Test XmlImporter SUT = null; @Override @BeforeMethod public void setUp(){ super.setUp(); SUT = new XmlImporter(); } @Override @AfterMethod public void tearDown() { SUT = null; if (inputStream != null) { try { inputStream.close(); } catch (IOException e) { // Ignore } inputStream = null; } super.tearDown(); } @Test public void canParseSample(){ RunTest(getSample()); log(project); assertProjectCreated(project, 4, 6); Row row = project.rows.get(0); Assert.assertNotNull(row); Assert.assertNotNull(row.getCell(1)); Assert.assertEquals(row.getCell(1).value, "Author 1, The"); } @Test public void canParseDeeplyNestedSample(){ RunTest(getDeeplyNestedSample(), getNestedOptions(job, SUT)); log(project); assertProjectCreated(project, 4, 6); Row row = project.rows.get(0); Assert.assertNotNull(row); Assert.assertNotNull(row.getCell(1)); Assert.assertEquals(row.getCell(1).value, "Author 1, The"); } @Test public void canParseSampleWithMixedElement(){ RunTest(getMixedElementSample(), getNestedOptions(job, SUT)); log(project); assertProjectCreated(project, 4, 6); Row row = project.rows.get(0); Assert.assertNotNull(row); Assert.assertNotNull(row.getCell(1)); Assert.assertEquals(row.getCell(1).value, "Author 1, The"); } @Test public void canParseSampleWithDuplicateNestedElements(){ RunTest(getSampleWithDuplicateNestedElements()); log(project); assertProjectCreated(project, 4, 12); Row row = project.rows.get(0); Assert.assertNotNull(row); Assert.assertEquals(row.cells.size(), 4); Assert.assertNotNull(row.getCell(1)); Assert.assertEquals(row.getCell(1).value, "Author 1, The"); Assert.assertEquals(project.rows.get(1).getCell(1).value, "Author 1, Another"); } @Test public void testCanParseLineBreak(){ RunTest(getSampleWithLineBreak()); log(project); assertProjectCreated(project, 4, 6); Row row = project.rows.get(3); Assert.assertNotNull(row); Assert.assertEquals(row.cells.size(), 4); Assert.assertNotNull(row.getCell(1)); Assert.assertEquals(row.getCell(1).value, "With line\n break"); } @Test public void testElementsWithVaryingStructure(){ RunTest(getSampleWithVaryingStructure()); log(project); assertProjectCreated(project, 5, 6); Assert.assertEquals(project.columnModel.getColumnByCellIndex(4).getName(), "book - genre"); Row row0 = project.rows.get(0); Assert.assertNotNull(row0); Assert.assertEquals(row0.cells.size(),4); Row row5 = project.rows.get(5); Assert.assertNotNull(row5); Assert.assertEquals(row5.cells.size(),5); } @Test public void testElementWithNestedTree(){ RunTest(getSampleWithTreeStructure()); log(project); assertProjectCreated(project, 5, 6); Assert.assertEquals(project.columnModel.columnGroups.size(),1); Assert.assertEquals(project.columnModel.columnGroups.get(0).keyColumnIndex, 2); Assert.assertEquals(project.columnModel.columnGroups.get(0).startColumnIndex, 2); Assert.assertNull(project.columnModel.columnGroups.get(0).parentGroup); Assert.assertEquals(project.columnModel.columnGroups.get(0).subgroups.size(),0); Assert.assertEquals(project.columnModel.columnGroups.get(0).columnSpan,2); } //------------helper methods--------------- public static String getTypicalElement(int id){ return "<book id=\"" + id + "\">" + "<author>Author " + id + ", The</author>" + "<title>Book title " + id + "</title>" + "<publish_date>2010-05-26</publish_date>" + "</book>"; } public static String getElementWithDuplicateSubElement(int id){ return "<book id=\"" + id + "\">" + "<authors>" + "<author>Author " + id + ", The</author>" + "<author>Author " + id + ", Another</author>" + "</authors>" + "<title>Book title " + id + "</title>" + "<publish_date>2010-05-26</publish_date>" + "</book>"; } public static String getSample(){ StringBuilder sb = new StringBuilder(); sb.append("<?xml version=\"1.0\"?><library>"); for(int i = 1; i < 7; i++){ sb.append(getTypicalElement(i)); } sb.append("</library>"); return sb.toString(); } public static JSONObject getOptions(ImportingJob job, TreeImportingParserBase parser) { JSONObject options = parser.createParserUIInitializationData( job, new LinkedList<JSONObject>(), "text/json"); JSONArray path = new JSONArray(); JSONUtilities.append(path, "library"); JSONUtilities.append(path, "book"); JSONUtilities.safePut(options, "recordPath", path); return options; } public static JSONObject getNestedOptions(ImportingJob job, TreeImportingParserBase parser) { JSONObject options = parser.createParserUIInitializationData( job, new LinkedList<JSONObject>(), "text/json"); JSONArray path = new JSONArray(); JSONUtilities.append(path, "nest"); JSONUtilities.append(path, "nest2"); JSONUtilities.append(path, "library"); JSONUtilities.append(path, "book"); JSONUtilities.safePut(options, "recordPath", path); return options; } public static String getDeeplyNestedSample(){ StringBuilder sb = new StringBuilder(); sb.append("<?xml version=\"1.0\"?><nest><nest2><library>"); for(int i = 1; i < 7; i++){ sb.append(getTypicalElement(i)); } sb.append("</library></nest2>"); sb.append("<anElement>asdf</anElement></nest>"); return sb.toString(); } public static String getMixedElementSample(){ StringBuilder sb = new StringBuilder(); sb.append("<?xml version=\"1.0\"?><nest>"); sb.append("somemixeduptext"); sb.append("<nest2><library>"); for(int i = 1; i < 7; i++){ sb.append(getTypicalElement(i)); } sb.append("</library></nest2>"); sb.append("<anElement>asdf</anElement></nest>"); return sb.toString(); } public static String getSampleWithDuplicateNestedElements(){ StringBuilder sb = new StringBuilder(); sb.append("<?xml version=\"1.0\"?><library>"); for(int i = 1; i < 7; i++){ sb.append(getElementWithDuplicateSubElement(i)); } sb.append("</library>"); return sb.toString(); } public static String getSampleWithLineBreak(){ StringBuilder sb = new StringBuilder(); sb.append("<?xml version=\"1.0\"?><library>"); for(int i = 1; i < 4; i++){ sb.append(getTypicalElement(i)); } sb.append("<book id=\"4\">" + "<author>With line\n break</author>" + "<title>Book title 4</title>" + "<publish_date>2010-05-26</publish_date>" + "</book>"); sb.append(getTypicalElement(5)); sb.append(getTypicalElement(6)); sb.append("</library>"); return sb.toString(); } public static String getSampleWithVaryingStructure(){ StringBuilder sb = new StringBuilder(); sb.append("<?xml version=\"1.0\"?><library>"); for(int i = 1; i < 6; i++){ sb.append(getTypicalElement(i)); } sb.append("<book id=\"6\">" + "<author>Author 6, The</author>" + "<title>Book title 6</title>" + "<genre>New element not seen in other records</genre>" + "<publish_date>2010-05-26</publish_date>" + "</book>"); sb.append("</library>"); return sb.toString(); } public static String getSampleWithTreeStructure(){ StringBuilder sb = new StringBuilder(); sb.append("<?xml version=\"1.0\"?><library>"); for(int i = 1; i < 7; i++){ sb.append("<book id=\"" + i + "\">" + "<author><author-name>Author " + i + ", The</author-name>" + "<author-dob>1950-0" + i + "-15</author-dob></author>" + "<title>Book title " + i + "</title>" + "<publish_date>2010-05-26</publish_date>" + "</book>"); } sb.append("</library>"); return sb.toString(); } private void RunTest(String testString){ RunTest(testString, getOptions(job, SUT)); } private void RunTest(String testString, JSONObject options) { try { inputStream = new ByteArrayInputStream(testString.getBytes( "UTF-8" )); } catch (UnsupportedEncodingException e1) { Assert.fail(); } try { parseOneFile(SUT, inputStream, options); } catch (Exception e) { e.printStackTrace(); Assert.fail(); } } @Override protected void parseOneFile(TreeImportingParserBase parser, InputStream inputStream, JSONObject options) { parseOneInputStream(parser, inputStream, options); } }