a .NET library that can read/write Office formats without Microsoft Office installed. No COM+, no interop.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

453 lines
18 KiB

/* ====================================================================
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.
==================================================================== */
namespace TestCases.XWPF.Extractor
{
using NPOI.Util;
using NPOI.XWPF.Extractor;
using NPOI.XWPF.UserModel;
using NUnit.Framework;
using NUnit.Framework.Legacy;
using System;
using System.Diagnostics;
using System.Linq;
using System.Text.RegularExpressions;
/**
* Tests for HXFWordExtractor
*/
[TestFixture]
public class TestXWPFWordExtractor
{
/**
* Get text out of the simple file
* @throws IOException
*/
[Test]
public void TestGetSimpleText()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("sample.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
String text = extractor.Text;
ClassicAssert.IsTrue(text.Length > 0);
// Check contents
POITestCase.AssertStartsWith(text,
"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nunc at risus vel erat tempus posuere. Aenean non ante. Suspendisse vehicula dolor sit amet odio."
);
POITestCase.AssertEndsWith(text,
"Phasellus ultricies mi nec leo. Sed tempus. In sit amet lorem at velit faucibus vestibulum.\n"
);
// Check number of paragraphs
// Check number of paragraphs by counting number of newlines
int numberOfParagraphs = StringUtil.CountMatches(text, '\n');
ClassicAssert.AreEqual(3, numberOfParagraphs);
}
/**
* Tests Getting the text out of a complex file
* @throws IOException
*/
[Test]
public void TestGetComplexText()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("IllustrativeCases.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
String text = extractor.Text;
ClassicAssert.IsTrue(text.Length > 0);
char euro = '\u20ac';
Debug.WriteLine("'" + text.Substring(text.Length - 40) + "'");
//Check contents
POITestCase.AssertStartsWith(text,
" \n(V) ILLUSTRATIVE CASES\n\n"
);
POITestCase.AssertContains(text,
"As well as gaining " + euro + "90 from child benefit increases, he will also receive the early childhood supplement of " + euro + "250 per quarter for Vincent for the full four quarters of the year.\n\n\n\n"// \n\n\n"
);
POITestCase.AssertEndsWith(text,
"11.4%\t\t90\t\t\t\t\t250\t\t1,310\t\n\n \n\n\n"
);
// Check number of paragraphs
int ps = 0;
char[] t = text.ToCharArray();
for (int i = 0; i < t.Length; i++)
{
if (t[i] == '\n')
{
ps++;
}
}
ClassicAssert.AreEqual(134, ps);
}
[Test]
public void TestGetWithHyperlinks()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("TestDocument.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
// Now check contents
extractor.SetFetchHyperlinks(false);
ClassicAssert.AreEqual(
"This is a test document.\nThis bit is in bold and italic\n" +
"Back to normal\n" +
"This contains BOLD, ITALIC and BOTH, as well as RED and YELLOW text.\n" +
"We have a hyperlink here, and another.\n",
extractor.Text
);
// One hyperlink is a real one, one is just to the top of page
extractor.SetFetchHyperlinks(true);
ClassicAssert.AreEqual(
"This is a test document.\nThis bit is in bold and italic\n" +
"Back to normal\n" +
"This contains BOLD, ITALIC and BOTH, as well as RED and YELLOW text.\n" +
"We have a hyperlink <http://poi.apache.org/> here, and another.\n",
extractor.Text
);
}
[Test]
public void TestHeadersFooters()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("ThreeColHeadFoot.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
ClassicAssert.AreEqual(
"First header column!\tMid header\tRight header!\n" +
"This is a sample word document. It has two pages. It has a three column heading, and a three column footer\n" +
"\n" +
"HEADING TEXT\n" +
"\n" +
"More on page one\n" +
"\n\n" +
"End of page 1\n\n\n" +
"This is page two. It also has a three column heading, and a three column footer.\n" +
"Footer Left\tFooter Middle\tFooter Right\n",
extractor.Text
);
// Now another file, expect multiple headers
// and multiple footers
doc = XWPFTestDataSamples.OpenSampleDocument("DiffFirstPageHeadFoot.docx");
extractor = new XWPFWordExtractor(doc);
extractor =
new XWPFWordExtractor(doc);
//extractor.Text;
ClassicAssert.AreEqual(
"I am the header on the first page, and I" + '\u2019' + "m nice and simple\n" +
"First header column!\tMid header\tRight header!\n" +
"This is a sample word document. It has two pages. It has a simple header and footer, which is different to all the other pages.\n" +
"\n" +
"HEADING TEXT\n" +
"\n" +
"More on page one\n" +
"\n\n" +
"End of page 1\n\n\n" +
"This is page two. It also has a three column heading, and a three column footer.\n" +
"The footer of the first page\n" +
"Footer Left\tFooter Middle\tFooter Right\n",
extractor.Text
);
}
[Test]
public void TestFootnotes()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("footnotes.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
String text = extractor.Text;
POITestCase.AssertContains(text, "snoska");
POITestCase.AssertContains(text, "Eto ochen prostoy[footnoteRef:1] text so snoskoy");
}
[Test]
public void TestTableFootnotes()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("table_footnotes.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
POITestCase.AssertContains(extractor.Text, "snoska");
}
[Test]
public void TestFormFootnotes()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("form_footnotes.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
String text = extractor.Text;
POITestCase.AssertContains("Unable to find expected word in text\n" + text, text, "testdoc");
POITestCase.AssertContains("Unable to find expected word in text\n" + text, text, "test phrase");
}
[Test]
public void TestEndnotes()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("endnotes.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
string text = extractor.Text;
POITestCase.AssertContains(text, "XXX");
POITestCase.AssertContains(text, "tilaka [endnoteRef:2]or 'tika'");
}
[Test]
public void TestInsertedDeletedText()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("delins.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
string text = extractor.Text;
POITestCase.AssertContains(text, "pendant worn");
POITestCase.AssertContains(text, "extremely well");
}
[Test]
public void TestParagraphHeader()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("Headers.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
string text = extractor.Text;
POITestCase.AssertContains(text, "Section 1");
POITestCase.AssertContains(text, "Section 2");
POITestCase.AssertContains(text, "Section 3");
}
/**
* Test that we can open and process .docm
* (macro enabled) docx files (bug #45690)
* @throws IOException
*/
[Test]
public void TestDOCMFiles()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("45690.docm");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
string text = extractor.Text;
POITestCase.AssertContains(text, "2004");
POITestCase.AssertContains(text, "2008");
POITestCase.AssertContains(text, "(120 ");
}
/**
* Test that we handle things like tabs and
* carriage returns properly in the text that
* we're extracting (bug #49189)
* @throws IOException
*/
[Test]
public void TestDocTabs()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("WithTabs.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
string text = extractor.Text;
// Check bits
POITestCase.AssertContains(text, "a");
POITestCase.AssertContains(text, "\t");
POITestCase.AssertContains(text, "b");
// Now check the first paragraph in total
POITestCase.AssertContains(text, "a\tb\n");
}
/**
* The output should not contain field codes, e.g. those specified in the
* w:instrText tag (spec sec. 17.16.23)
* @throws IOException
*/
[Test]
public void TestNoFieldCodes()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("FieldCodes.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
String text = extractor.Text;
ClassicAssert.IsTrue(text.Length > 0);
ClassicAssert.IsFalse(text.Contains("AUTHOR"));
ClassicAssert.IsFalse(text.Contains("CREATEDATE"));
extractor.Close();
}
/**
* The output should contain the values of simple fields, those specified
* with the fldSimple element (spec sec. 17.16.19)
* @throws IOException
*/
[Test]
public void TestFldSimpleContent()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("FldSimple.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
String text = extractor.Text;
ClassicAssert.IsTrue(text.Length > 0);
POITestCase.AssertContains(text, "FldSimple.docx");
}
/**
* Test for parsing document with Drawings to prevent
* NoClassDefFoundError for CTAnchor in XWPFRun
*/
[Test]
public void TestDrawings()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("drawing.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
String text = extractor.Text;
ClassicAssert.IsTrue(text.Length > 0);
}
/**
* Test for basic extraction of SDT content
* @throws IOException
*/
[Test]
public void TestSimpleControlContent()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("Bug54849.docx");
String[] targs = new String[]{
"header_rich_text",
"rich_text",
"rich_text_pre_table\nrich_text_cell1\t\t\t\n\t\t\t\n\t\t\t\n\nrich_text_post_table",
"plain_text_no_newlines",
"plain_text_with_newlines1\nplain_text_with_newlines2\n",
"watermelon\n",
"dirt\n",
"4/16/2013\n",
"rich_text_in_cell",
"abc",
"rich_text_in_paragraph_in_cell",
"footer_rich_text",
"footnote_sdt",
"endnote_sdt"
};
XWPFWordExtractor ex = new XWPFWordExtractor(doc);
String s = ex.Text.ToLower();
int hits = 0;
foreach (String targ in targs)
{
bool hitted = false;
if (s.Contains(targ))
{
hitted = true;
hits++;
}
ClassicAssert.AreEqual(true, hitted, "controlled content loading-" + targ);
}
ClassicAssert.AreEqual(targs.Length, hits, "controlled content loading hit count");
ex.Close();
doc = XWPFTestDataSamples.OpenSampleDocument("Bug54771a.docx");
targs = new String[]{
"bb",
"test subtitle\n",
"test user\n",
};
ex = new XWPFWordExtractor(doc);
s = ex.Text.ToLower();
//At one point in development there were three copies of the text.
//This ensures that there is only one copy.
MatchCollection mc;
int hit;
foreach (String targ in targs)
{
mc = Regex.Matches(s, targ);
hit = 0;
foreach (Match m in mc)
{
if (m.Success)
hit++;
}
ClassicAssert.AreEqual(1, hit, "controlled content loading-" + targ);
}
//"test\n" appears twice: once as the "title" and once in the text.
//This also happens when you save this document as text from MSWord.
mc = Regex.Matches(s, "test\n");
hit = 0;
foreach (Match m in mc)
{
if (m.Success)
hit++;
}
ClassicAssert.AreEqual(2, hit, "test<N>");
ex.Close();
}
/** No Header or Footer in document */
[Test]
public void TestBug55733()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("55733.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
// Check it gives text without error
string text = extractor.Text;
extractor.Close();
}
[Test]
public void TestCheckboxes()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("checkboxes.docx");
Console.WriteLine(doc);
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
ClassicAssert.AreEqual("This is a small test for checkboxes \nunchecked: |_| \n" +
"Or checked: |X|\n\n\n\n\n" +
"Test a checkbox within a textbox: |_| -> |X|\n\n\n" +
"In Table:\n|_|\t|X|\n\n\n" +
"In Sequence:\n|X||_||X|\n", extractor.Text);
extractor.Close();
}
[Test]
public void TestMultipleBodyBug()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("MultipleBodyBug.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
ClassicAssert.AreEqual("START BODY 1 The quick, brown fox jumps over a lazy dog. END BODY 1.\n"
+ "START BODY 2 The quick, brown fox jumps over a lazy dog. END BODY 2.\n"
+ "START BODY 3 The quick, brown fox jumps over a lazy dog. END BODY 3.\n",
extractor.Text);
extractor.Close();
}
[Test]
public void TestPhonetic()
{
XWPFDocument doc = XWPFTestDataSamples.OpenSampleDocument("61470.docx");
XWPFWordExtractor extractor = new XWPFWordExtractor(doc);
//expect: baseText (phoneticText)
ClassicAssert.AreEqual("\u6771\u4EAC (\u3068\u3046\u304D\u3087\u3046)", extractor.Text.Trim());
extractor.Close();
extractor = new XWPFWordExtractor(doc);
extractor.SetConcatenatePhoneticRuns(false);
ClassicAssert.AreEqual("\u6771\u4EAC", extractor.Text.Trim());
}
}
}