1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
/* ====================================================================
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.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.IOException;
import org.apache.poi.xwpf.XWPFTestDataSamples;
import org.junit.jupiter.api.Test;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.STHeightRule;
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 {
try (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 {
try (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);
}
}
@Test
public void testRemoveCell() throws IOException {
XWPFDocument doc = new XWPFDocument();
XWPFTableRow tr = doc.createTable(1, 1).createRow();
assertEquals(1, tr.getTableCells().size());
assertEquals(tr.getTableCells().size(), tr.getCtRow().sizeOfTcArray());
tr.removeCell(0);
assertEquals(0, tr.getTableCells().size());
assertEquals(tr.getTableCells().size(), tr.getCtRow().sizeOfTcArray());
doc.close();
}
@Test
public void testGetSetHeightRule() throws IOException {
XWPFDocument doc = new XWPFDocument();
XWPFTableRow tr = doc.createTable(1, 1).createRow();
assertEquals(TableRowHeightRule.AUTO, tr.getHeightRule());
tr.setHeightRule(TableRowHeightRule.AT_LEAST);
assertEquals(TableRowHeightRule.AT_LEAST, tr.getHeightRule());
tr.setHeightRule(TableRowHeightRule.EXACT);
assertEquals(TableRowHeightRule.EXACT, tr.getHeightRule());
doc.close();
}
@Test
public void testBug62174() throws IOException {
try (XWPFDocument doc = XWPFTestDataSamples
.openSampleDocument("Bug60337.docx")) {
XWPFTable table = doc.getTables().get(0);
XWPFTableRow tr = table.getRow(0);
int twipsPerInch = 1440;
tr.setHeight(twipsPerInch/10);
tr.getCtRow().getTrPr().getTrHeightArray(0).setHRule(STHeightRule.EXACT);
}
}
}
|