private void createFile(byte[] stream, String filename) throws FileNotFoundException, IOException { File aFile = new File(tempFolder, this.getClass().getSimpleName() + "_" + filename); FileOutputStream fos = new FileOutputStream(aFile); IOUtils.write(stream, fos); fos.close(); }
@Test public void testNumberingNoneAbstractNumber() throws Exception { DocxNumberingPreprocessor preprocessor = new DocxNumberingPreprocessor(); InputStream stream = IOUtils.toInputStream( "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>" + "<w:numbering" + " xmlns:ve=\"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: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:wne=\"http://schemas.microsoft.com/office/word/2006/wordml\">" + " </w:numbering>"); StringWriter writer = new StringWriter(); IDocumentFormatter formatter = new FreemarkerDocumentFormatter(); Map<String, Object> sharedContext = new HashMap<String, Object>(); preprocessor.preprocess("word/numbering.xml", stream, writer, null, formatter, sharedContext); Assert.assertEquals( "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>" + "<w:numbering" + " xmlns:ve=\"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: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:wne=\"http://schemas.microsoft.com/office/word/2006/wordml\"> " + "${___NoEscapeStylesGenerator.generateAbstractNumBullet(___DefaultStyle)}" + "[#if ___NumberingRegistry??]" + "[#list ___NumberingRegistry.numbers as ___NumberInfo]" + "[#if ___NumberInfo.ordered??]" + "${___NoEscapeStylesGenerator.generateAbstractNumDecimal(___DefaultStyle,___NumberInfo.abstractNumId)}" + "[/#if]" + "[/#list]" + "[/#if]" + "[#if ___NumberingRegistry??]" + "[#list ___NumberingRegistry.numbers as ___NumberInfo]" + "<w:num w:numId=\"${___NumberInfo.numId}\">" + "<w:abstractNumId w:val=\"${___NumberInfo.abstractNumId}\"/>" + "</w:num>" + "[/#list]" + "[/#if]" + "</w:numbering>", writer.toString()); DefaultStyle defaultStyle = DocxContextHelper.getDefaultStyle(sharedContext); Assert.assertNotNull(defaultStyle); Assert.assertNull(defaultStyle.getAbstractNumIdForOrdererList()); Assert.assertNull(defaultStyle.getAbstractNumIdForUnordererList()); }
public void testImageWithNullFieldsMetadata() throws Exception { ODTPreprocessor preprocessor = new ODTPreprocessor(); InputStream stream = IOUtils.toInputStream(LOGO_IMAGE_XML, "UTF-8"); StringWriter writer = new StringWriter(); FieldsMetadata metadata = null; IDocumentFormatter formatter = new VelocityDocumentFormatter(); preprocessor.preprocess("test", stream, writer, metadata, formatter, null); assertEquals(LOGO_IMAGE_XML, writer.toString()); }
@Test public void uploadARootFile() throws FileNotFoundException, IOException, ResourcesException { String resourceId = "ZzzNewSimple_" + this.getClass().getSimpleName() + ".docx"; JAXWSResourcesService client = JAXWSResourcesServiceClientFactory.create(BASE_ADDRESS); InputStream document = Data.class.getResourceAsStream("Simple.docx"); BinaryData dataIn = new BinaryData(); dataIn.setResourceId(resourceId); dataIn.setContent(IOUtils.toByteArray(document)); client.upload(dataIn); // Test if file was uploaded in the target/resources folder Assert.assertTrue(new File(resourcesFolder, resourceId).exists()); // Test if download with the resourceId returns a non null binary data. BinaryData downloadedDocument = client.download(resourceId); Assert.assertNotNull(downloadedDocument); Assert.assertNotNull(downloadedDocument.getContent()); }
public void testImageWithSimpleField() throws Exception { ODTPreprocessor preprocessor = new ODTPreprocessor(); InputStream stream = IOUtils.toInputStream(LOGO_IMAGE_XML, "UTF-8"); StringWriter writer = new StringWriter(); FieldsMetadata metadata = new FieldsMetadata(); metadata.addFieldAsImage("logo"); IDocumentFormatter formatter = new VelocityDocumentFormatter(); preprocessor.preprocess("test", stream, writer, metadata, formatter, null); assertEquals( "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>" + "<office:document-content xmlns:office=\"urn:oasis:names:tc:opendocument:xmlns:office:1.0\" " + "xmlns:text=\"urn:oasis:names:tc:opendocument:xmlns:text:1.0\" " + "xmlns:table=\"urn:oasis:names:tc:opendocument:xmlns:table:1.0\" " + "xmlns:svg=\"urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0\" " + "xmlns:xlink=\"http://www.w3.org/1999/xlink\" " + "xmlns:draw=\"urn:oasis:names:tc:opendocument:xmlns:drawing:1.0\">" + "<text:p text:style-name=\"Standard\">" + "#set($___imageInfo=$___ImageRegistry.registerImage($logo,'logo',$___context))#if($___imageInfo.NotRemoveImageTemplate)" + "<draw:frame draw:style-name=\"fr1\" draw:name=\"logo\" text:anchor-type=\"paragraph\" svg:x=\"69.96pt\" svg:y=\"18.31pt\" " // + "svg:width=\"21pt\" " + "svg:width=\"${___ImageRegistry.getWidth($___imageInfo,'21pt')}\" " // + "svg:height=\"22.51pt\" " + "svg:height=\"${___ImageRegistry.getHeight($___imageInfo,'22.51pt')}\" " + "draw:z-index=\"0\">" + "<draw:image " + "xlink:href=\"${___ImageRegistry.getPath($___imageInfo,'Pictures/100000000000001C0000001EE8812A78.png')}\" " + "xlink:type=\"simple\" xlink:show=\"embed\" xlink:actuate=\"onLoad\"/>" + "</draw:frame>" + "#{end}" + "Project logo :</text:p>" + "</office:document-content>", writer.toString()); }
public void testImageWithListFieldInTable() throws Exception { ODTPreprocessor preprocessor = new ODTPreprocessor(); InputStream stream = IOUtils.toInputStream( "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>" + "<office:document-content xmlns:office=\"urn:oasis:names:tc:opendocument:xmlns:office:1.0\" " + "xmlns:text=\"urn:oasis:names:tc:opendocument:xmlns:text:1.0\" " + "xmlns:table=\"urn:oasis:names:tc:opendocument:xmlns:table:1.0\" " + "xmlns:svg=\"urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0\" " + "xmlns:xlink=\"http://www.w3.org/1999/xlink\" " + "xmlns:draw=\"urn:oasis:names:tc:opendocument:xmlns:drawing:1.0\">" + "<table:table table:name=\"Tableau1\" table:style-name=\"Tableau1\">" + "<table:table-column table:style-name=\"Tableau1.A\"/>" + "<table:table-column table:style-name=\"Tableau1.B\"/>" + "<table:table-column table:style-name=\"Tableau1.C\"/>" + "<table:table-column table:style-name=\"Tableau1.D\"/>" + "<table:table-row table:style-name=\"Tableau1.1\">" + "<table:table-cell table:style-name=\"Tableau1.A1\" office:value-type=\"string\">" + "<text:p text:style-name=\"P1\">Name</text:p>" + "</table:table-cell>" + "<table:table-cell table:style-name=\"Tableau1.A1\" office:value-type=\"string\">" + "<text:p text:style-name=\"P2\">Last name</text:p>" + "</table:table-cell>" + "<table:table-cell table:style-name=\"Tableau1.A1\" office:value-type=\"string\">" + "<text:p text:style-name=\"P1\">Mail</text:p>" + "</table:table-cell>" + "<table:table-cell table:style-name=\"Tableau1.A1\" office:value-type=\"string\">" + "<text:p text:style-name=\"P1\">Photo</text:p>" + "</table:table-cell>" + "</table:table-row>" + "<table:table-row table:style-name=\"Tableau1.1\">" + "<table:table-cell table:style-name=\"Tableau1.A2\" office:value-type=\"string\">" + "<text:p text:style-name=\"Standard\">" + "<text:text-input text:description=\"\">$developers.Name</text:text-input>" + "</text:p>" + "</table:table-cell>" + "<table:table-cell table:style-name=\"Tableau1.A2\" office:value-type=\"string\">" + "<text:p text:style-name=\"Standard\">" + "<text:text-input text:description=\"\">$developers.LastName</text:text-input>" + "</text:p>" + "</table:table-cell>" + "<table:table-cell table:style-name=\"Tableau1.A2\" office:value-type=\"string\">" + "<text:p text:style-name=\"Standard\">" + "<text:text-input text:description=\"\">$developers.Mail</text:text-input>" + "</text:p>" + "</table:table-cell>" + "<table:table-cell table:style-name=\"Tableau1.A2\" office:value-type=\"string\">" + "<text:p text:style-name=\"Standard\">" + "<draw:frame draw:style-name=\"fr1\" draw:name=\"developers.Photo\" text:anchor-type=\"paragraph\" svg:width=\"21pt\" svg:height=\"22.51pt\" draw:z-index=\"0\">" + "<draw:image xlink:href=\"Pictures/100000000000001C0000001EE8812A78.png\" xlink:type=\"simple\" xlink:show=\"embed\" xlink:actuate=\"onLoad\"/>" + "</draw:frame>" + "</text:p>" + "</table:table-cell>" + "</table:table-row>" + "</table:table>" + "</office:document-content>", "UTF-8"); StringWriter writer = new StringWriter(); FieldsMetadata metadata = new FieldsMetadata(); metadata.addFieldAsList("developers.Photo"); metadata.addFieldAsImage("developers.Photo"); IDocumentFormatter formatter = new VelocityDocumentFormatter(); preprocessor.preprocess("test", stream, writer, metadata, formatter, null); assertEquals( "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>" + "<office:document-content xmlns:office=\"urn:oasis:names:tc:opendocument:xmlns:office:1.0\" " + "xmlns:text=\"urn:oasis:names:tc:opendocument:xmlns:text:1.0\" " + "xmlns:table=\"urn:oasis:names:tc:opendocument:xmlns:table:1.0\" " + "xmlns:svg=\"urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0\" " + "xmlns:xlink=\"http://www.w3.org/1999/xlink\" " + "xmlns:draw=\"urn:oasis:names:tc:opendocument:xmlns:drawing:1.0\">" + "<table:table table:name=\"Tableau1\" table:style-name=\"Tableau1\">" + "<table:table-column table:style-name=\"Tableau1.A\"/>" + "<table:table-column table:style-name=\"Tableau1.B\"/>" + "<table:table-column table:style-name=\"Tableau1.C\"/>" + "<table:table-column table:style-name=\"Tableau1.D\"/>" + "<table:table-row table:style-name=\"Tableau1.1\">" + "<table:table-cell table:style-name=\"Tableau1.A1\" office:value-type=\"string\">" + "<text:p text:style-name=\"P1\">Name</text:p>" + "</table:table-cell>" + "<table:table-cell table:style-name=\"Tableau1.A1\" office:value-type=\"string\">" + "<text:p text:style-name=\"P2\">Last name</text:p>" + "</table:table-cell>" + "<table:table-cell table:style-name=\"Tableau1.A1\" office:value-type=\"string\">" + "<text:p text:style-name=\"P1\">Mail</text:p>" + "</table:table-cell>" + "<table:table-cell table:style-name=\"Tableau1.A1\" office:value-type=\"string\">" + "<text:p text:style-name=\"P1\">Photo</text:p>" + "</table:table-cell>" + "</table:table-row>" + "#foreach($item_developers in $developers)" + "<table:table-row table:style-name=\"Tableau1.1\">" + "<table:table-cell table:style-name=\"Tableau1.A2\" office:value-type=\"string\">" + "<text:p text:style-name=\"Standard\">" // + // "<text:text-input text:description=\"\">$developers.Name</text:text-input>" + "$developers.Name" + "</text:p>" + "</table:table-cell>" + "<table:table-cell table:style-name=\"Tableau1.A2\" office:value-type=\"string\">" + "<text:p text:style-name=\"Standard\">" // + // "<text:text-input text:description=\"\">$developers.LastName</text:text-input>" + "$developers.LastName" + "</text:p>" + "</table:table-cell>" + "<table:table-cell table:style-name=\"Tableau1.A2\" office:value-type=\"string\">" + "<text:p text:style-name=\"Standard\">" // + // "<text:text-input text:description=\"\">$developers.Mail</text:text-input>" + "$developers.Mail" + "</text:p>" + "</table:table-cell>" + "<table:table-cell table:style-name=\"Tableau1.A2\" office:value-type=\"string\">" + "<text:p text:style-name=\"Standard\">" + "#set($___imageInfo=$___ImageRegistry.registerImage($item_developers.Photo,'developers.Photo',$___context))#if($___imageInfo.NotRemoveImageTemplate)" + "<draw:frame draw:style-name=\"fr1\" draw:name=\"developers.Photo\" text:anchor-type=\"paragraph\" " // + "svg:width=\"21pt\" " + "svg:width=\"${___ImageRegistry.getWidth($___imageInfo,'21pt')}\" " // + "svg:height=\"22.51pt\" " + "svg:height=\"${___ImageRegistry.getHeight($___imageInfo,'22.51pt')}\" " + "draw:z-index=\"0\">" + "<draw:image " + "xlink:href=\"${___ImageRegistry.getPath($___imageInfo,'Pictures/100000000000001C0000001EE8812A78.png')}\" " + "xlink:type=\"simple\" xlink:show=\"embed\" xlink:actuate=\"onLoad\"/>" + "</draw:frame>" + "#{end}" + "</text:p>" + "</table:table-cell>" + "</table:table-row>" + "#{end}" + "</table:table>" + "</office:document-content>", writer.toString()); }
public InputStream getInputStream() throws IOException { ByteArrayOutputStream o = new ByteArrayOutputStream(); IOUtils.write(super.toCharArray(), o, charset.name()); return new ByteArrayInputStream(o.toByteArray()); }