package fr.opensagres.xdocreport.document.docx.preprocessor; /** * Copyright (C) 2011-2015 The XDocReport Team <xdocreport@googlegroups.com> * * All rights reserved. * * 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. */ import java.io.InputStream; import java.io.StringWriter; import java.util.HashMap; import org.junit.Assert; import org.junit.Test; import fr.opensagres.xdocreport.core.io.IOUtils; import fr.opensagres.xdocreport.document.docx.preprocessor.sax.DocxPreprocessor; import fr.opensagres.xdocreport.template.formatter.IDocumentFormatter; import fr.opensagres.xdocreport.template.velocity.VelocityDocumentFormatter; /** * See https://github.com/opensagres/xdocreport/issues/77 * * w:fldSimple can have several <w:r. Don't generates twice the field name * (https://github.com/opensagres/xdocreport/issues/77 problem generated two * #end instead of generating one #end) * */ public class Issue77 { @Test public void issue77() throws Exception { DocxPreprocessor preprocessor = new DocxPreprocessor(); String xml = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>" + "<w:document xmlns:wpc=\"http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:wp14=\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\" xmlns:wp=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\" xmlns:w10=\"urn:schemas-microsoft-com:office:word\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:w14=\"http://schemas.microsoft.com/office/word/2010/wordml\" xmlns:wpg=\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\" xmlns:wpi=\"http://schemas.microsoft.com/office/word/2010/wordprocessingInk\" xmlns:wne=\"http://schemas.microsoft.com/office/word/2006/wordml\" xmlns:wps=\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\" mc:Ignorable=\"w14 wp14\">" + "<w:body>" + "<w:fldSimple w:instr=\" MERGEFIELD #end \\* MERGEFORMAT \">" + "<w:r w:rsidR=\"00314C57\">" + "<w:rPr>" + "<w:noProof/>" + "</w:rPr>" + "<w:t> «FIN POUR CHAQUE ANNEXE</w:t>" + "</w:r>" + "<w:r w:rsidR=\"00E359EA\">" + "<w:rPr>" + "<w:noProof/>" + "</w:rPr>" + "<w:t> »</w:t>" + "</w:r>" + "</w:fldSimple>" + "</w:body>" + "</w:document>"; InputStream stream = IOUtils.toInputStream( xml, "UTF-8" ); StringWriter writer = new StringWriter(); IDocumentFormatter formatter = new VelocityDocumentFormatter(); preprocessor.preprocess( "word/document.xml", stream, writer, null, formatter, new HashMap<String, Object>() ); System.err.println(writer.toString()); Assert.assertEquals( "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>" + "<w:document xmlns:wpc=\"http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:wp14=\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\" xmlns:wp=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\" xmlns:w10=\"urn:schemas-microsoft-com:office:word\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:w14=\"http://schemas.microsoft.com/office/word/2010/wordml\" xmlns:wpg=\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\" xmlns:wpi=\"http://schemas.microsoft.com/office/word/2010/wordprocessingInk\" xmlns:wne=\"http://schemas.microsoft.com/office/word/2006/wordml\" xmlns:wps=\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\" mc:Ignorable=\"w14 wp14\">" + "<w:body>" + // "<w:fldSimple w:instr=\" MERGEFIELD #end \\* MERGEFORMAT \">" + "<w:r w:rsidR=\"00314C57\">" + "<w:rPr>" + "<w:noProof/>" + "</w:rPr>" + "<w:t>#end</w:t>" + // "<w:t> «FIN POUR CHAQUE ANNEXE</w:t>" + "</w:r>" + "<w:r w:rsidR=\"00E359EA\">" + "<w:rPr>" + "<w:noProof/>" + "</w:rPr>" + // "<w:t> »</w:t>" + "<w:t></w:t>" + "</w:r>" + // "</w:fldSimple>" + "</w:body>" + "</w:document>", writer.toString() ); } }