/* ==================================================================== 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. ==================================================================== */ package org.apache.poi.xwpf.usermodel; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import java.io.IOException; import org.apache.poi.xwpf.XWPFTestDataSamples; import org.junit.Test; public class TestXWPFTableRow { @Test public void testCreateRow() throws IOException { XWPFDocument doc = new XWPFDocument(); XWPFTable table = doc.createTable(1, 1); XWPFTableRow tr = table.createRow(); assertNotNull(tr); doc.close(); } @Test public void testSetGetCantSplitRow() throws IOException { // create a table XWPFDocument doc = new XWPFDocument(); XWPFTable table = doc.createTable(1, 1); // table has a single row by default; grab it XWPFTableRow tr = table.getRow(0); assertNotNull(tr); // Assert the repeat header is false by default boolean isCantSplit = tr.isCantSplitRow(); assertFalse(isCantSplit); // Repeat the header tr.setCantSplitRow(true); isCantSplit = tr.isCantSplitRow(); assertTrue(isCantSplit); // Make the header no longer repeating tr.setCantSplitRow(false); isCantSplit = tr.isCantSplitRow(); assertFalse(isCantSplit); doc.close(); } @Test public void testSetGetRepeatHeader() throws IOException { // create a table XWPFDocument doc = new XWPFDocument(); XWPFTable table = doc.createTable(3, 1); // table has a single row by default; grab it XWPFTableRow tr = table.getRow(0); assertNotNull(tr); // Assert the repeat header is false by default boolean isRpt = tr.isRepeatHeader(); assertFalse(isRpt); // Repeat the header tr.setRepeatHeader(true); isRpt = tr.isRepeatHeader(); assertTrue(isRpt); // Make the header no longer repeating tr.setRepeatHeader(false); isRpt = tr.isRepeatHeader(); assertFalse(isRpt); // If the third row is set to repeat, but not the second, // isRepeatHeader should report false because Word will // ignore it. tr = table.getRow(2); tr.setRepeatHeader(true); isRpt = tr.isRepeatHeader(); assertFalse(isRpt); doc.close(); } // Test that validates the table header value can be parsed from a document // generated in Word @Test public void testIsRepeatHeader() throws Exception { XWPFDocument doc = XWPFTestDataSamples .openSampleDocument("Bug60337.docx"); XWPFTable table = doc.getTables().get(0); XWPFTableRow tr = table.getRow(0); boolean isRpt = tr.isRepeatHeader(); assertTrue(isRpt); tr = table.getRow(1); isRpt = tr.isRepeatHeader(); assertFalse(isRpt); tr = table.getRow(2); isRpt = tr.isRepeatHeader(); assertFalse(isRpt); } // Test that validates the table header value can be parsed from a document // generated in Word @Test public void testIsCantSplit() throws Exception { XWPFDocument doc = XWPFTestDataSamples .openSampleDocument("Bug60337.docx"); XWPFTable table = doc.getTables().get(0); XWPFTableRow tr = table.getRow(0); boolean isCantSplit = tr.isCantSplitRow(); assertFalse(isCantSplit); tr = table.getRow(1); isCantSplit = tr.isCantSplitRow(); assertFalse(isCantSplit); tr = table.getRow(2); isCantSplit = tr.isCantSplitRow(); assertTrue(isCantSplit); } }