blob: 6f6ed4e5335c7f7148c30771bdb3beccfe6d7612 [file] [log] [blame]
/************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
*
* Copyright 2008, 2010 Oracle and/or its affiliates. All rights reserved.
*
* Use is subject to license terms.
*
* 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. You can also
* obtain a copy of the License at http://odftoolkit.org/docs/license.txt
*
* 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.
*
************************************************************************/
package org.odftoolkit.odfdom.doc;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.junit.Assert;
import org.junit.Test;
import org.odftoolkit.odfdom.pkg.OdfFileDom;
import org.odftoolkit.odfdom.doc.table.OdfTable;
import org.odftoolkit.odfdom.doc.table.OdfTableCell;
import org.odftoolkit.odfdom.doc.table.OdfTableRow;
import org.odftoolkit.odfdom.dom.OdfDocumentNamespace;
import org.odftoolkit.odfdom.dom.element.table.TableTableCellElement;
import org.odftoolkit.odfdom.dom.element.table.TableTableElement;
import org.odftoolkit.odfdom.dom.element.table.TableTableRowElement;
import org.odftoolkit.odfdom.incubator.doc.style.OdfStyle;
import org.odftoolkit.odfdom.incubator.doc.text.OdfTextParagraph;
import org.odftoolkit.odfdom.utils.ResourceUtilities;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
public class TableTest {
private static final String TEST_FILE_SAVE_2TABLES_OUT = "TestSave2Tables.odt";
public TableTest() {
}
@Test
public void testTable() {
try {
OdfDocument odfdoc = OdfDocument.loadDocument(ResourceUtilities.getAbsolutePath("table.odt"));
NodeList lst = odfdoc.getContentDom().getElementsByTagNameNS(OdfDocumentNamespace.TABLE.getUri(), "table");
int tscount = 0;
for (int i = 0; i < lst.getLength(); i++) {
Node node = lst.item(i);
Assert.assertTrue(node instanceof TableTableElement);
TableTableElement te = (TableTableElement) lst.item(i);
OdfStyle ds = te.getDocumentStyle();
Assert.assertNull(ds);
if (te.hasAutomaticStyle()) {
te.getAutomaticStyle();
tscount++;
}
}
Assert.assertTrue(tscount > 0);
} catch (Exception e) {
Logger.getLogger(TableTest.class.getName()).log(Level.SEVERE, e.getMessage(), e);
Assert.fail(e.getMessage());
}
}
@Test
public void testCellsAndRows() {
try {
OdfDocument odfdoc = OdfDocument.loadDocument(ResourceUtilities.getAbsolutePath("table.odt"));
NodeList lst = odfdoc.getContentDom().getElementsByTagNameNS(OdfDocumentNamespace.TABLE.getUri(), "table-cell");
for (int i = 0; i < lst.getLength(); i++) {
Node node = lst.item(i);
Assert.assertTrue(node instanceof TableTableCellElement);
TableTableCellElement td = (TableTableCellElement) lst.item(i);
TableTableRowElement tr = (TableTableRowElement) td.getParentNode();
Assert.assertNotNull(tr);
OdfTable table = OdfTableRow.getInstance(tr).getTable();
Assert.assertNotNull(table);
Assert.assertTrue(table == OdfTableCell.getInstance(td).getTable());
}
} catch (Exception e) {
Logger.getLogger(TableTest.class.getName()).log(Level.SEVERE, e.getMessage(), e);
Assert.fail(e.getMessage());
}
}
@Test
public void create2ndTableTab() throws Exception {
OdfSpreadsheetDocument mysheet = OdfSpreadsheetDocument.newSpreadsheetDocument();
OdfFileDom odt = mysheet.getContentDom();
// find the first table in the sheet
NodeList lst =
odt.getElementsByTagNameNS(TableTableElement.ELEMENT_NAME.getUri(), TableTableElement.ELEMENT_NAME.getLocalName());
TableTableElement mytable = (TableTableElement) lst.item(0);
mytable.setTableNameAttribute("Cars Sheet");
// remove first empty row of table.
mytable.removeChild(mytable.getFirstChild().getNextSibling());
TableTableRowElement row = (TableTableRowElement) mytable.appendChild(new TableTableRowElement(odt));
TableTableCellElement cell = (TableTableCellElement) row.appendChild(new TableTableCellElement(odt));
OdfTextParagraph p = new OdfTextParagraph(odt);
p.appendChild(odt.createTextNode("Corvette"));
cell.appendChild(p);
// 2nd Table
TableTableElement my2table = new TableTableElement(odt);
Element spreadsheetElement = (Element) odt.getElementsByTagNameNS(OdfDocumentNamespace.OFFICE.getUri(), "spreadsheet").item(0);
my2table.setAttributeNS(OdfDocumentNamespace.TABLE.getUri(), "table:name", "BikesSheet");
spreadsheetElement.appendChild(my2table);
TableTableRowElement row2 = (TableTableRowElement) my2table.appendChild(new TableTableRowElement(odt));
TableTableCellElement cell2 = (TableTableCellElement) row2.appendChild(new TableTableCellElement(odt));
OdfTextParagraph p2 = new OdfTextParagraph(odt);
p2.appendChild(odt.createTextNode("Bandit 600"));
cell2.appendChild(p2);
mysheet.save(ResourceUtilities.getTestOutput(TEST_FILE_SAVE_2TABLES_OUT));
}
}