blob: c3505d42fb885978c8bae23e93902175a74a6ed0 [file] [log] [blame]
/* ====================================================================
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.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.math.BigInteger;
import org.apache.poi.util.Units;
import org.apache.poi.xwpf.XWPFTestDataSamples;
import org.apache.poi.xwpf.usermodel.XWPFRun.FontCharRange;
import org.junit.jupiter.api.Test;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTAbstractNum;
class TestXWPFBugs {
@Test
void bug55802() throws Exception {
String blabla =
"Bir, iki, \u00fc\u00e7, d\u00f6rt, be\u015f,\n" +
"\nalt\u0131, yedi, sekiz, dokuz, on.\n" +
"\nK\u0131rm\u0131z\u0131 don,\n" +
"\ngel bizim bah\u00e7eye kon,\n" +
"\nsar\u0131 limon";
try (XWPFDocument doc = new XWPFDocument()) {
XWPFRun run = doc.createParagraph().createRun();
for (String str : blabla.split("\n")) {
run.setText(str);
run.addBreak();
}
run.setFontFamily("Times New Roman");
run.setFontSize(20);
assertEquals(run.getFontFamily(), "Times New Roman");
assertEquals(run.getFontFamily(FontCharRange.cs), "Times New Roman");
assertEquals(run.getFontFamily(FontCharRange.eastAsia), "Times New Roman");
assertEquals(run.getFontFamily(FontCharRange.hAnsi), "Times New Roman");
run.setFontFamily("Arial", FontCharRange.hAnsi);
assertEquals(run.getFontFamily(FontCharRange.hAnsi), "Arial");
}
}
@Test
void bug57312_NullPointException() throws IOException {
try (XWPFDocument doc = XWPFTestDataSamples.openSampleDocument("57312.docx")) {
assertNotNull(doc);
for (IBodyElement bodyElement : doc.getBodyElements()) {
BodyElementType elementType = bodyElement.getElementType();
if (elementType == BodyElementType.PARAGRAPH) {
XWPFParagraph paragraph = (XWPFParagraph) bodyElement;
for (IRunElement iRunElem : paragraph.getIRuns()) {
if (iRunElem instanceof XWPFRun) {
XWPFRun runElement = (XWPFRun) iRunElem;
UnderlinePatterns underline = runElement.getUnderline();
assertNotNull(underline);
//System.out.println("Found: " + underline + ": " + runElement.getText(0));
}
}
}
}
}
}
@Test
void bug57495_getTableArrayInDoc() throws IOException {
try (XWPFDocument doc = new XWPFDocument()) {
//let's create a few tables for the test
for (int i = 0; i < 3; i++) {
doc.createTable(2, 2);
}
XWPFTable table = doc.getTableArray(0);
assertNotNull(table);
//let's check also that returns the correct table
XWPFTable same = doc.getTables().get(0);
assertEquals(table, same);
}
}
@Test
void bug57495_getParagraphArrayInTableCell() throws IOException {
try (XWPFDocument doc = new XWPFDocument()) {
//let's create a table for the test
XWPFTable table = doc.createTable(2, 2);
assertNotNull(table);
XWPFParagraph p = table.getRow(0).getCell(0).getParagraphArray(0);
assertNotNull(p);
//let's check also that returns the correct paragraph
XWPFParagraph same = table.getRow(0).getCell(0).getParagraphs().get(0);
assertEquals(p, same);
}
}
@Test
void bug57495_convertPixelsToEMUs() {
int pixels = 100;
int expectedEMU = 952500;
int result = Units.pixelToEMU(pixels);
assertEquals(expectedEMU, result);
}
@Test
void test56392() throws IOException {
try (XWPFDocument doc = XWPFTestDataSamples.openSampleDocument("56392.docx")) {
assertNotNull(doc);
}
}
/**
* Removing a run needs to remove it from both Runs and IRuns
*/
@Test
void test57829() throws IOException {
try (XWPFDocument doc = XWPFTestDataSamples.openSampleDocument("sample.docx")) {
assertNotNull(doc);
assertEquals(3, doc.getParagraphs().size());
for (XWPFParagraph paragraph : doc.getParagraphs()) {
paragraph.removeRun(0);
assertNotNull(paragraph.getText());
}
}
}
/**
* Removing a run needs to take into account position of run if paragraph contains hyperlink runs
*/
@Test
void test58618() throws IOException {
try (XWPFDocument doc = XWPFTestDataSamples.openSampleDocument("58618.docx")) {
XWPFParagraph para = (XWPFParagraph) doc.getBodyElements().get(0);
assertNotNull(para);
assertEquals("Some text some hyper links link link and some text.....", para.getText());
XWPFRun run = para.insertNewRun(para.getRuns().size());
run.setText("New Text");
assertEquals("Some text some hyper links link link and some text.....New Text", para.getText());
para.removeRun(para.getRuns().size() - 2);
assertEquals("Some text some hyper links link linkNew Text", para.getText());
}
}
@Test
void test59378() throws IOException {
try (XWPFDocument doc = XWPFTestDataSamples.openSampleDocument("59378.docx")) {
ByteArrayOutputStream out = new ByteArrayOutputStream();
doc.write(out);
out.close();
XWPFDocument doc2 = new XWPFDocument(new ByteArrayInputStream(out.toByteArray()));
doc2.close();
XWPFDocument docBack = XWPFTestDataSamples.writeOutAndReadBack(doc);
docBack.close();
}
}
@Test
void test63788() throws IOException {
try (XWPFDocument doc = new XWPFDocument()) {
XWPFNumbering numbering = doc.createNumbering();
for (int i = 10; i >= 0; i--) {
addNumberingWithAbstractId(numbering, i); //add numbers in reverse order
}
for (int i = 0; i <= 10; i++) {
assertEquals(i, numbering.getAbstractNum(BigInteger.valueOf(i)).getAbstractNum().getAbstractNumId().longValue());
}
//attempt to remove item with numId 2
assertTrue(numbering.removeAbstractNum(BigInteger.valueOf(2)));
for (int i = 0; i <= 10; i++) {
XWPFAbstractNum abstractNum = numbering.getAbstractNum(BigInteger.valueOf(i));
// we removed id "2", so this one should be empty, all others not
if (i == 2) {
assertNull(abstractNum, "Failed for " + i);
} else {
assertNotNull(abstractNum, "Failed for " + i);
assertEquals(i, abstractNum.getAbstractNum().getAbstractNumId().longValue());
}
}
// removing the same again fails
assertFalse(numbering.removeAbstractNum(BigInteger.valueOf(2)));
// removing another one works
assertTrue(numbering.removeAbstractNum(BigInteger.valueOf(4)));
}
}
private static void addNumberingWithAbstractId(XWPFNumbering documentNumbering, int id){
// create a numbering scheme
CTAbstractNum cTAbstractNum = CTAbstractNum.Factory.newInstance();
// give the scheme an ID
cTAbstractNum.setAbstractNumId(BigInteger.valueOf(id));
XWPFAbstractNum abstractNum = new XWPFAbstractNum(cTAbstractNum);
BigInteger abstractNumID = documentNumbering.addAbstractNum(abstractNum);
documentNumbering.addNum(abstractNumID);
}
}