/** * The MIT License * * Copyright (C) 2007 Asterios Raptis * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package de.alpharogroup.xml.sax.handler; import java.io.File; import java.io.IOException; import java.io.StringWriter; import java.util.List; import java.util.Map; import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; import org.testng.AssertJUnit; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; import org.xml.sax.SAXException; import de.alpharogroup.file.compare.CompareFileUtils; import de.alpharogroup.file.compare.interfaces.IFileContentResultBean; import de.alpharogroup.file.csv.CsvFileUtils; import de.alpharogroup.file.delete.DeleteFileUtils; import de.alpharogroup.file.search.PathFinder; import de.alpharogroup.file.write.WriteFileUtils; public class TemplateHandlerTest { @BeforeMethod public void setUp() throws Exception { } @AfterMethod public void tearDown() throws Exception { } @Test public void testWrite() throws IOException { // The resources destination dir final File testResDir = PathFinder.getSrcTestResourcesDir(); final String templateName = "LoginAsProvider"; final String expectedFileName = "expected.html"; final File template = new File(testResDir, templateName + ".xml"); final File expected = new File(testResDir, expectedFileName); final File input = new File(testResDir, templateName + ".cvs"); final List<Map<String, String>> testData = CsvFileUtils.getCvsAsListMap(input); final Map<String, String> oneline = testData.get(0); final StringWriter writer = new StringWriter(); final TemplateHandler handler = new TemplateHandler(oneline, writer); try { // Use the default (non-validating) parser final SAXParserFactory factory = SAXParserFactory.newInstance(); // Parse the input final SAXParser saxParser = factory.newSAXParser(); saxParser.parse(template, handler); } catch (final ParserConfigurationException e) { e.printStackTrace(); } catch (final SAXException e) { e.printStackTrace(); } final File output = new File("test" + ".html"); if (!output.exists()) { output.createNewFile(); } WriteFileUtils.writeStringToFile(output, writer.toString(), "UTF-8"); final IFileContentResultBean bean = CompareFileUtils.compareFiles(output, expected); AssertJUnit.assertTrue(bean.getContentEquality()); DeleteFileUtils.delete(output); } }