]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
First unit tests for table layout manager classes
authorVincent Hennebert <vhennebert@apache.org>
Tue, 13 Feb 2007 19:01:01 +0000 (19:01 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Tue, 13 Feb 2007 19:01:01 +0000 (19:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@507160 13f79535-47bb-0310-9956-ffa450edef68

test/java/org/apache/fop/layoutmgr/table/TableHandler.java [new file with mode: 0644]
test/java/org/apache/fop/layoutmgr/table/TableRowIteratorTestCase.java [new file with mode: 0644]
test/layoutmgr/table/TableRowIterator_simple.fo [new file with mode: 0644]
test/layoutmgr/table/TableRowIterator_spans.fo [new file with mode: 0644]

diff --git a/test/java/org/apache/fop/layoutmgr/table/TableHandler.java b/test/java/org/apache/fop/layoutmgr/table/TableHandler.java
new file mode 100644 (file)
index 0000000..94b1fd6
--- /dev/null
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+
+/* $Id$ */
+
+package org.apache.fop.layoutmgr.table;
+
+import java.util.LinkedList;
+import java.util.List;
+
+import org.apache.fop.apps.FOUserAgent;
+import org.apache.fop.fo.FOEventHandler;
+import org.apache.fop.fo.flow.Table;
+
+public class TableHandler extends FOEventHandler {
+
+    /** All the tables encountered in the FO file. List of Table objects. */
+    private List tables = new LinkedList();
+
+    TableHandler(FOUserAgent foUserAgent) {
+        super(foUserAgent);
+    }
+
+    public void endTable(Table tbl) {
+        tables.add(tbl);
+    }
+
+    List getTables() {
+        return tables;
+    }
+}
diff --git a/test/java/org/apache/fop/layoutmgr/table/TableRowIteratorTestCase.java b/test/java/org/apache/fop/layoutmgr/table/TableRowIteratorTestCase.java
new file mode 100644 (file)
index 0000000..9714c7d
--- /dev/null
@@ -0,0 +1,193 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.
+ */
+
+/* $Id$ */
+
+package org.apache.fop.layoutmgr.table;
+
+import java.io.File;
+import java.util.Iterator;
+import java.util.LinkedList;
+import java.util.List;
+
+import javax.xml.parsers.SAXParser;
+import javax.xml.parsers.SAXParserFactory;
+
+import junit.framework.TestCase;
+
+import org.apache.fop.apps.FOUserAgent;
+import org.apache.fop.apps.Fop;
+import org.apache.fop.apps.FopFactory;
+import org.apache.fop.fo.flow.Table;
+import org.xml.sax.XMLReader;
+
+/**
+ * Tests that TableRowIterator returns, for each part of a table, the expected number of
+ * row-groups with the expected number or rows in each.
+ */
+public class TableRowIteratorTestCase extends TestCase {
+
+    private XMLReader foReader;
+
+    private TableHandler tableHandler;
+
+    /** Returns Table instances. */
+    private Iterator tableIterator;
+
+    /** Returns ColumnSetup instances. */
+    private Iterator columnSetupIterator;
+
+    /**
+     * Creates the SAX parser for the FO file and a FO user agent with an overriden
+     * FOEventHandler and sets them up.
+     */
+    public void setUp() throws Exception {
+        SAXParserFactory spf = SAXParserFactory.newInstance();
+        spf.setNamespaceAware(true);
+        spf.setValidating(false);
+        SAXParser parser;
+        parser = spf.newSAXParser();
+        foReader = parser.getXMLReader();
+
+        FopFactory fopFactory = FopFactory.newInstance(); 
+        FOUserAgent ua = fopFactory.newFOUserAgent();
+        tableHandler = new TableHandler(ua);
+        ua.setFOEventHandlerOverride(tableHandler);
+
+        Fop fop = fopFactory.newFop(ua);
+
+        foReader.setContentHandler(fop.getDefaultHandler());
+        foReader.setDTDHandler(fop.getDefaultHandler());
+        foReader.setErrorHandler(fop.getDefaultHandler());
+        foReader.setEntityResolver(fop.getDefaultHandler());
+    }
+
+    /**
+     * Prepares the iterators over the tables contained in the given FO file.
+     * 
+     * @param filename basename of a test FO file
+     * @throws Exception
+     */
+    private void setUp(String filename) throws Exception {
+        foReader.parse(new File("test/layoutmgr/table/" + filename).toURL().toExternalForm());
+        List tables = tableHandler.getTables();
+        List columnSetups = new LinkedList();
+        tableIterator = tables.iterator();
+        for (Iterator i = tables.iterator(); i.hasNext();) {
+            columnSetups.add(new ColumnSetup((Table) i.next()));
+        }
+        columnSetupIterator = columnSetups.iterator();
+    }
+
+    /**
+     * Checks that the given iterator will return row groups as expected. More precisely,
+     * checks that the number of row groups corresponds to the size of the given array,
+     * and that the number of rows inside each row group is equal to the corresponding
+     * integer in the array.
+     * 
+     * @param tri an iterator over a given part of a table (HEADER, FOOTER, BODY)
+     * @param expectedRowLengths expected lengths of all the row groups of this part of
+     * the table
+     */
+    private void checkTablePartRowGroups(TableRowIterator tri, int[] expectedRowLengths) {
+        for (int i = 0; i < expectedRowLengths.length; i++) {
+            EffRow[] row = tri.getNextRowGroup();
+            assertTrue(row.length == expectedRowLengths[i]);
+        }
+        assertNull(tri.getNextRowGroup());        
+    }
+
+    /**
+     * Gets the next table and checks its row-groups.
+     * 
+     * @param expectedHeaderRowLengths expected row-group sizes for the header. If null
+     * the table is not expected to have a header
+     * @param expectedFooterRowLengths expected row-group sizes for the footer. If null
+     * the table is not expected to have a footer
+     * @param expectedBodyRowLengths expected row-group sizes for the body(-ies)
+     */
+    private void checkNextTableRowGroups(int[] expectedHeaderRowLengths,
+            int[] expectedFooterRowLengths, int[] expectedBodyRowLengths) {
+        Table table = (Table) tableIterator.next();
+        ColumnSetup columnSetup = (ColumnSetup) columnSetupIterator.next();
+        TableRowIterator tri;
+        if (expectedHeaderRowLengths != null) {
+            tri = new TableRowIterator(table, columnSetup, TableRowIterator.HEADER);
+            checkTablePartRowGroups(tri, expectedHeaderRowLengths);
+        }
+        if (expectedFooterRowLengths != null) {
+            tri = new TableRowIterator(table, columnSetup, TableRowIterator.FOOTER);
+            checkTablePartRowGroups(tri, expectedFooterRowLengths);
+        }
+        tri = new TableRowIterator(table, columnSetup, TableRowIterator.BODY);
+        checkTablePartRowGroups(tri, expectedBodyRowLengths);
+    }
+
+    public void testSimple() throws Exception {
+        setUp("TableRowIterator_simple.fo");
+
+        // Table 1: no header, no footer, one body (1 row)
+        checkNextTableRowGroups(null, null, new int[] {1});
+
+        // Table 2: no header, no footer, one body (2 rows)
+        checkNextTableRowGroups(null, null, new int[] {1, 1});
+
+        // Table 3: no header, no footer, two bodies (1 row, 1 row)
+        checkNextTableRowGroups(null, null, new int[] {1, 1});
+
+        // Table 4: no header, no footer, two bodies (2 rows, 3 rows)
+        checkNextTableRowGroups(null, null, new int[] {1, 1, 1, 1, 1});
+
+        // Table 5: one header (1 row), no footer, one body (1 row)
+        checkNextTableRowGroups(new int[] {1}, null, new int[] {1});
+
+        // Table 6: no header, one footer (1 row), one body (1 row)
+        checkNextTableRowGroups(null, new int[] {1}, new int[] {1});
+
+        // Table 7: one header (1 row), one footer (1 row), one body (1 row)
+        checkNextTableRowGroups(new int[] {1}, new int[] {1}, new int[] {1});
+
+        // Table 8: one header (2 rows), one footer (3 rows), one body (2 rows)
+        checkNextTableRowGroups(new int[] {1, 1}, new int[] {1, 1, 1}, new int[] {1, 1});
+
+        // Table 9: one header (3 rows), one footer (2 rows), three bodies (2 rows, 1 row, 3 rows)
+        checkNextTableRowGroups(new int[] {1, 1, 1}, new int[] {1, 1}, new int[] {1, 1, 1, 1, 1, 1});
+    }
+
+    public void testSpans() throws Exception {
+        setUp("TableRowIterator_spans.fo");
+
+        // Table 1: no header, no footer, one body (1 row with column-span)
+        checkNextTableRowGroups(null, null, new int[] {1});
+
+        // Table 2: no header, no footer, one body (1 row-group of 2 rows)
+        checkNextTableRowGroups(null, null, new int[] {2});
+
+        // Table 3: no header, no footer, one body (1 row-group of 2 rows, 1 row) 
+        checkNextTableRowGroups(null, null, new int[] {2, 1});
+
+        // Table 4: no header, no footer, one body (1 row, 1 row-group of 2 rows)
+        checkNextTableRowGroups(null, null, new int[] {1, 2});
+
+        // Table 5: no header, no footer, one body (1 row, 1 row-group of 3 rows, 1 row) 
+        checkNextTableRowGroups(null, null, new int[] {1, 3, 1});
+
+        // Table 6: one header (1 row-group of 2 rows), one footer (1 row, 1 row-group of 3 rows),
+        // one body (1 row-group of 2 rows, 1 row, 1 row-group of 3 rows) 
+        checkNextTableRowGroups(new int[] {2}, new int[] {1, 3}, new int[] {2, 1, 3});
+    }
+}
diff --git a/test/layoutmgr/table/TableRowIterator_simple.fo b/test/layoutmgr/table/TableRowIterator_simple.fo
new file mode 100644 (file)
index 0000000..00a14d5
--- /dev/null
@@ -0,0 +1,249 @@
+<?xml version="1.0" standalone="no"?>
+<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
+  <fo:layout-master-set>
+    <fo:simple-page-master master-name="page" page-height="20cm" page-width="15cm"
+      margin-top="1cm" margin-bottom="1cm" margin-left="1cm" margin-right="1cm">
+      <fo:region-body/>
+    </fo:simple-page-master>
+  </fo:layout-master-set>
+  <fo:page-sequence master-reference="page" font-family="serif" font-size="14pt">
+    <fo:flow flow-name="xsl-region-body">
+      <!-- Table 1: no header, no footer, one body (1 row) -->
+      <fo:table width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 2: no header, no footer, one body (2 rows) -->
+      <fo:table width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 3</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 4</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 3: no header, no footer, two bodies (1 row, 1 row) -->
+      <fo:table width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 3</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 4</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 4: no header, no footer, two bodies (2 rows, 3 rows) -->
+      <fo:table width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 3</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 4</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 5</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 6</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 7</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 8</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 9</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 10</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 5: one header (1 row), no footer, one body (1 row) -->
+      <fo:table width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+        <fo:table-header>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Header 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Header 2</fo:block></fo:table-cell>
+         </fo:table-row>
+        </fo:table-header>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 6: no header, one footer (1 row), one body (1 row) -->
+      <fo:table width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+        <fo:table-footer>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Footer 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Footer 2</fo:block></fo:table-cell>
+         </fo:table-row>
+        </fo:table-footer>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 7: one header (1 row), one footer (1 row), one body (1 row) -->
+      <fo:table width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+        <fo:table-header>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Header 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Header 2</fo:block></fo:table-cell>
+         </fo:table-row>
+        </fo:table-header>
+        <fo:table-footer>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Footer 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Footer 2</fo:block></fo:table-cell>
+         </fo:table-row>
+        </fo:table-footer>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 8: one header (2 rows), one footer (3 rows), one body (2 rows) -->
+      <fo:table width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+        <fo:table-header>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Header 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Header 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Header 3</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Header 4</fo:block></fo:table-cell>
+         </fo:table-row>
+        </fo:table-header>
+        <fo:table-footer>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Footer 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Footer 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Footer 4</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Footer 5</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Footer 5</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Footer 6</fo:block></fo:table-cell>
+         </fo:table-row>
+        </fo:table-footer>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 3</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 4</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 9: one header (3 rows), one footer (2 rows), three bodies (2 rows, 1 row, 3 rows) -->
+      <fo:table width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+        <fo:table-header>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Header 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Header 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Header 3</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Header 4</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Header 5</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Header 6</fo:block></fo:table-cell>
+         </fo:table-row>
+        </fo:table-header>
+        <fo:table-footer>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Footer 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Footer 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Footer 4</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Footer 5</fo:block></fo:table-cell>
+         </fo:table-row>
+        </fo:table-footer>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 3</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 4</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 5</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 6</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 7</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 8</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 9</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 10</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell><fo:block>Cell 10</fo:block></fo:table-cell>
+           <fo:table-cell><fo:block>Cell 11</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+    </fo:flow>
+  </fo:page-sequence>
+</fo:root>
diff --git a/test/layoutmgr/table/TableRowIterator_spans.fo b/test/layoutmgr/table/TableRowIterator_spans.fo
new file mode 100644 (file)
index 0000000..ea6f9ac
--- /dev/null
@@ -0,0 +1,158 @@
+<?xml version="1.0" standalone="no"?>
+<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
+  <fo:layout-master-set>
+    <fo:simple-page-master master-name="page" page-height="20cm" page-width="15cm"
+      margin-top="1cm" margin-bottom="1cm" margin-left="1cm" margin-right="1cm">
+      <fo:region-body/>
+    </fo:simple-page-master>
+  </fo:layout-master-set>
+  <fo:page-sequence master-reference="page" font-family="serif" font-size="14pt">
+    <fo:flow flow-name="xsl-region-body">
+      <!-- Table 1: no header, no footer, one body (1 row with column-span) -->
+      <fo:table border-separation="2pt" width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid" number-columns-spanned="2"><fo:block>Cell 1</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 2: no header, no footer, one body (1 row-group of 2 rows) -->
+      <fo:table border-separation="2pt" width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid" number-rows-spanned="2"><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 4</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 3: no header, no footer, one body (1 row-group of 2 rows, 1 row) -->
+      <fo:table border-separation="2pt" width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid" number-rows-spanned="2"><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 4</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 5</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 6</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 4: no header, no footer, one body (1 row, 1 row-group of 2 rows) -->
+      <fo:table border-separation="2pt" width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid" number-rows-spanned="2"><fo:block>Cell 3</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 5</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 7</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 5: no header, no footer, one body (1 row, 1 row-group of 3 rows, 1 row) -->
+      <fo:table border-separation="2pt" width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 3</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid" number-rows-spanned="2"><fo:block>Cell 4</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid" number-rows-spanned="2"><fo:block>Cell 5</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 8</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 9</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 10</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+      <!-- Table 6: one header (1 row-group of 2 rows), one footer (1 row, 1 row-group of 3 rows),
+           one body (1 row-group of 2 rows, 1 row, 1 row-group of 3 rows) -->
+      <fo:table border-separation="2pt" width="10cm" space-before="12pt" table-layout="fixed"
+       border-collapse="separate" border="1pt solid black">
+        <fo:table-column number-columns-repeated="2" column-width="proportional-column-width(1)"/>
+        <fo:table-header>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid" number-rows-spanned="2"><fo:block>Header 1</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid"><fo:block>Header 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Header 4</fo:block></fo:table-cell>
+         </fo:table-row>
+        </fo:table-header>
+        <fo:table-footer>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Footer 1</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid"><fo:block>Footer 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid" number-rows-spanned="2"><fo:block>Footer 3</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid"><fo:block>Footer 4</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid" number-rows-spanned="2"><fo:block>Footer 6</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Footer 7</fo:block></fo:table-cell>
+         </fo:table-row>
+        </fo:table-footer>
+       <fo:table-body>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 1</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid" number-rows-spanned="2"><fo:block>Cell 2</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 3</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 5</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 6</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 7</fo:block></fo:table-cell>
+           <fo:table-cell border="1pt solid" number-rows-spanned="2"><fo:block>Cell 8</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid" number-rows-spanned="2"><fo:block>Cell 9</fo:block></fo:table-cell>
+         </fo:table-row>
+         <fo:table-row>
+           <fo:table-cell border="1pt solid"><fo:block>Cell 10</fo:block></fo:table-cell>
+         </fo:table-row>
+       </fo:table-body>
+      </fo:table>
+
+    </fo:flow>
+  </fo:page-sequence>
+</fo:root>