aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/java/org/apache/fop/BasicDriverTestCase.java44
1 files changed, 43 insertions, 1 deletions
diff --git a/test/java/org/apache/fop/BasicDriverTestCase.java b/test/java/org/apache/fop/BasicDriverTestCase.java
index 0838ef1ad..ce8bddd11 100644
--- a/test/java/org/apache/fop/BasicDriverTestCase.java
+++ b/test/java/org/apache/fop/BasicDriverTestCase.java
@@ -172,7 +172,7 @@ public class BasicDriverTestCase extends AbstractFOPTestCase {
}
/**
- * Tests Driver with JAXP and OutputStream.
+ * Tests Driver with JAXP and OutputStream generating PDF.
* @throws Exception if anything fails
*/
public void testFO2PDFWithJAXP() throws Exception {
@@ -193,6 +193,48 @@ public class BasicDriverTestCase extends AbstractFOPTestCase {
}
/**
+ * Tests Driver with JAXP and OutputStream generating PostScript.
+ * @throws Exception if anything fails
+ */
+ public void testFO2PSWithJAXP() throws Exception {
+ File foFile = new File(getBaseDir(), "test/xml/bugtests/block.fo");
+ ByteArrayOutputStream baout = new ByteArrayOutputStream();
+ Driver driver = new Driver();
+ ContainerUtil.enableLogging(driver, this.logger);
+ driver.setOutputStream(baout);
+ driver.setRenderer(Driver.RENDER_PS);
+
+ TransformerFactory factory = TransformerFactory.newInstance();
+ Transformer transformer = factory.newTransformer(); //Identity transf.
+ Source src = new StreamSource(foFile);
+ Result res = new SAXResult(driver.getContentHandler());
+ transformer.transform(src, res);
+
+ assertTrue("Generated PostScript has zero length", baout.size() > 0);
+ }
+
+ /**
+ * Tests Driver with JAXP and OutputStream generating RTF.
+ * @throws Exception if anything fails
+ */
+ public void testFO2RTFWithJAXP() throws Exception {
+ File foFile = new File(getBaseDir(), "test/xml/bugtests/block.fo");
+ ByteArrayOutputStream baout = new ByteArrayOutputStream();
+ Driver driver = new Driver();
+ ContainerUtil.enableLogging(driver, this.logger);
+ driver.setOutputStream(baout);
+ driver.setRenderer(Driver.RENDER_RTF);
+
+ TransformerFactory factory = TransformerFactory.newInstance();
+ Transformer transformer = factory.newTransformer(); //Identity transf.
+ Source src = new StreamSource(foFile);
+ Result res = new SAXResult(driver.getContentHandler());
+ transformer.transform(src, res);
+
+ assertTrue("Generated RTF has zero length", baout.size() > 0);
+ }
+
+ /**
* Tests Driver with XsltInputHandler and OutputStream.
* @throws Exception if anything fails
*/