-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[resolves #1997] Add support for component fop
- Loading branch information
1 parent
e570584
commit 9febb4e
Showing
19 changed files
with
631 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
### camel-fop | ||
|
||
The http://camel.apache.org/fop.html[FOP,window=_blank] component allows you to render a message into different output formats using http://xmlgraphics.apache.org/fop/index.html[Apache FOP,window=_blank]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...src/main/resources/modules/system/layers/fuse/org/apache/avalon/framework/main/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module xmlns="urn:jboss:module:1.1" name="org.apache.avalon.framework"> | ||
<properties> | ||
<property name="jboss.api" value="private" /> | ||
</properties> | ||
<resources> | ||
<artifact name="${org.apache.avalon.framework:avalon-framework-api}" /> | ||
<artifact name="${org.apache.avalon.framework:avalon-framework-impl}" /> | ||
</resources> | ||
<dependencies> | ||
<module name="javax.api" /> | ||
<module name="org.apache.commons.logging" /> | ||
<module name="org.apache.log4j" /> | ||
</dependencies> | ||
</module> |
22 changes: 22 additions & 0 deletions
22
.../main/resources/modules/system/layers/fuse/org/apache/camel/component/fop/main/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module xmlns="urn:jboss:module:1.1" name="org.apache.camel.component.fop"> | ||
<resources> | ||
<artifact name="${org.apache.camel:camel-fop}" /> | ||
</resources> | ||
<dependencies> | ||
<module name="javax.api" /> | ||
<module name="org.apache.xmlgraphics" export="true"> | ||
<exports> | ||
<exclude path="org/apache/batik**" /> | ||
<exclude path="org/apache/fop/servlet**" /> | ||
<exclude path="org/apache/fop/tools**" /> | ||
<exclude path="org/apache/xmlgraphics/image/writer/internal**" /> | ||
<exclude path="org/w3c**" /> | ||
</exports> | ||
</module> | ||
<module name="org.slf4j" /> | ||
<module name="javax.xml.bind.api" /> | ||
<module name="org.apache.avalon.framework" /> | ||
<module name="org.apache.camel.core" /> | ||
</dependencies> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
...pack/src/main/resources/modules/system/layers/fuse/org/apache/xmlgraphics/main/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module xmlns="urn:jboss:module:1.1" name="org.apache.xmlgraphics"> | ||
<properties> | ||
<property name="jboss.api" value="private" /> | ||
</properties> | ||
<resources> | ||
<artifact name="${org.apache.xmlgraphics:batik-anim}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-awt-util}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-bridge}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-css}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-dom}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-ext}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-extension}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-gvt}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-parser}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-script}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-svg-dom}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-svggen}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-transcoder}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-util}" /> | ||
<artifact name="${org.apache.xmlgraphics:batik-xml}" /> | ||
<artifact name="${org.apache.xmlgraphics:fop}" /> | ||
<artifact name="${org.apache.xmlgraphics:xmlgraphics-commons}" /> | ||
</resources> | ||
<dependencies> | ||
<module name="javax.api" /> | ||
<module name="org.apache.avalon.framework" /> | ||
<module name="javax.servlet.api" /> | ||
<module name="org.apache.commons.io" /> | ||
<module name="org.apache.commons.logging" /> | ||
<module name="org.apache.xalan" /> | ||
<module name="org.apache.xerces" /> | ||
</dependencies> | ||
</module> |
152 changes: 152 additions & 0 deletions
152
itests/standalone/basic/src/test/java/org/wildfly/camel/test/fop/FopIntegrationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
/* | ||
* #%L | ||
* Wildfly Camel :: Testsuite | ||
* %% | ||
* Copyright (C) 2013 - 2017 RedHat | ||
* %% | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* #L% | ||
*/ | ||
package org.wildfly.camel.test.fop; | ||
|
||
import java.io.IOException; | ||
import java.io.StringWriter; | ||
import java.io.Writer; | ||
import java.net.URI; | ||
import java.nio.file.Paths; | ||
|
||
import javax.naming.InitialContext; | ||
|
||
import org.apache.camel.CamelContext; | ||
import org.apache.camel.Exchange; | ||
import org.apache.camel.ProducerTemplate; | ||
import org.apache.camel.builder.RouteBuilder; | ||
import org.apache.camel.component.mock.MockEndpoint; | ||
import org.apache.camel.impl.DefaultCamelContext; | ||
import org.apache.fop.apps.FopFactory; | ||
import org.apache.pdfbox.pdmodel.PDDocument; | ||
import org.apache.pdfbox.util.PDFTextStripper; | ||
import org.jboss.arquillian.container.test.api.Deployment; | ||
import org.jboss.arquillian.junit.Arquillian; | ||
import org.jboss.arquillian.test.api.ArquillianResource; | ||
import org.jboss.gravia.resource.ManifestBuilder; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.wildfly.extension.camel.CamelAware; | ||
|
||
@CamelAware | ||
@RunWith(Arquillian.class) | ||
public class FopIntegrationTest { | ||
|
||
@ArquillianResource | ||
private InitialContext initialContext; | ||
|
||
@Deployment | ||
public static JavaArchive createDeployment() { | ||
return ShrinkWrap.create(JavaArchive.class, "camel-fop-tests.jar") | ||
.addAsResource("fop/data.xml", "data.xml") | ||
.addAsResource("fop/template.xsl", "template.xsl") | ||
.addAsResource("fop/factory.xml", "factory.xml") | ||
.setManifest(() -> { | ||
ManifestBuilder builder = new ManifestBuilder(); | ||
builder.addManifestHeader("Dependencies", "org.apache.pdfbox"); | ||
return builder.openStream(); | ||
}); | ||
} | ||
|
||
@Test | ||
public void testFopComponent() throws Exception { | ||
CamelContext camelctx = new DefaultCamelContext(); | ||
camelctx.addRoutes(new RouteBuilder() { | ||
@Override | ||
public void configure() throws Exception { | ||
from("direct:start") | ||
.to("xslt:template.xsl") | ||
.setHeader("foo", constant("bar")) | ||
.to("fop:pdf") | ||
.setHeader(Exchange.FILE_NAME, constant("resultA.pdf")) | ||
.to("file:{{jboss.server.data.dir}}/fop") | ||
.to("mock:result"); | ||
} | ||
}); | ||
|
||
MockEndpoint mockEndpoint = camelctx.getEndpoint("mock:result", MockEndpoint.class); | ||
mockEndpoint.expectedMessageCount(1); | ||
|
||
camelctx.start(); | ||
try { | ||
ProducerTemplate template = camelctx.createProducerTemplate(); | ||
template.sendBody("direct:start", FopIntegrationTest.class.getResourceAsStream("/data.xml")); | ||
|
||
mockEndpoint.assertIsSatisfied(); | ||
|
||
String dataDir = System.getProperty("jboss.server.data.dir"); | ||
PDDocument document = PDDocument.load(Paths.get(dataDir, "fop", "resultA.pdf").toFile()); | ||
String pdfText = extractTextFromDocument(document); | ||
Assert.assertTrue(pdfText.contains("Project")); | ||
Assert.assertTrue(pdfText.contains("John Doe")); | ||
} finally { | ||
camelctx.stop(); | ||
} | ||
} | ||
|
||
@Test | ||
public void testFopComponentWithCustomFactory() throws Exception { | ||
FopFactory fopFactory = FopFactory.newInstance(new URI("/"), FopIntegrationTest.class.getResourceAsStream("/factory.xml")); | ||
initialContext.bind("fopFactory", fopFactory); | ||
|
||
CamelContext camelctx = new DefaultCamelContext(); | ||
camelctx.addRoutes(new RouteBuilder() { | ||
@Override | ||
public void configure() throws Exception { | ||
from("direct:start") | ||
.to("xslt:template.xsl") | ||
.setHeader("foo", constant("bar")) | ||
.to("fop:pdf?fopFactory=#fopFactory") | ||
.setHeader(Exchange.FILE_NAME, constant("resultB.pdf")) | ||
.to("file:{{jboss.server.data.dir}}/fop") | ||
.to("mock:result"); | ||
} | ||
}); | ||
|
||
MockEndpoint mockEndpoint = camelctx.getEndpoint("mock:result", MockEndpoint.class); | ||
mockEndpoint.expectedMessageCount(1); | ||
|
||
camelctx.start(); | ||
try { | ||
ProducerTemplate template = camelctx.createProducerTemplate(); | ||
template.sendBody("direct:start", FopIntegrationTest.class.getResourceAsStream("/data.xml")); | ||
|
||
mockEndpoint.assertIsSatisfied(); | ||
|
||
String dataDir = System.getProperty("jboss.server.data.dir"); | ||
PDDocument document = PDDocument.load(Paths.get(dataDir, "fop", "resultB.pdf").toFile()); | ||
String pdfText = extractTextFromDocument(document); | ||
Assert.assertTrue(pdfText.contains("Project")); | ||
Assert.assertTrue(pdfText.contains("John Doe")); | ||
} finally { | ||
camelctx.stop(); | ||
initialContext.unbind("fopFactory"); | ||
} | ||
} | ||
|
||
private String extractTextFromDocument(PDDocument document) throws IOException { | ||
Writer output = new StringWriter(); | ||
PDFTextStripper stripper = new PDFTextStripper(); | ||
stripper.writeText(document, output); | ||
return output.toString().trim(); | ||
} | ||
} |
Oops, something went wrong.