mirror of https://github.com/apache/poi.git
bug 57843: add failing unit test: Word 6.0 (1993) fails with ArrayIndexOutOfBoundsException
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1761873 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b4c20232b0
commit
4405fb4ffe
|
@ -232,6 +232,7 @@ public class TestAllFiles {
|
||||||
EXPECTED_FAILURES.add("spreadsheet/43493.xls");
|
EXPECTED_FAILURES.add("spreadsheet/43493.xls");
|
||||||
EXPECTED_FAILURES.add("spreadsheet/46904.xls");
|
EXPECTED_FAILURES.add("spreadsheet/46904.xls");
|
||||||
EXPECTED_FAILURES.add("document/Bug50955.doc");
|
EXPECTED_FAILURES.add("document/Bug50955.doc");
|
||||||
|
EXPECTED_FAILURES.add("document/57843.doc");
|
||||||
EXPECTED_FAILURES.add("slideshow/PPT95.ppt");
|
EXPECTED_FAILURES.add("slideshow/PPT95.ppt");
|
||||||
EXPECTED_FAILURES.add("openxml4j/OPCCompliance_CoreProperties_DCTermsNamespaceLimitedUseFAIL.docx");
|
EXPECTED_FAILURES.add("openxml4j/OPCCompliance_CoreProperties_DCTermsNamespaceLimitedUseFAIL.docx");
|
||||||
EXPECTED_FAILURES.add("openxml4j/OPCCompliance_CoreProperties_DoNotUseCompatibilityMarkupFAIL.docx");
|
EXPECTED_FAILURES.add("openxml4j/OPCCompliance_CoreProperties_DoNotUseCompatibilityMarkupFAIL.docx");
|
||||||
|
|
|
@ -32,11 +32,13 @@ import org.apache.poi.hwpf.model.PlexOfField;
|
||||||
import org.apache.poi.hwpf.model.SubdocumentType;
|
import org.apache.poi.hwpf.model.SubdocumentType;
|
||||||
import org.apache.poi.hwpf.model.io.HWPFOutputStream;
|
import org.apache.poi.hwpf.model.io.HWPFOutputStream;
|
||||||
import org.apache.poi.poifs.filesystem.NPOIFSFileSystem;
|
import org.apache.poi.poifs.filesystem.NPOIFSFileSystem;
|
||||||
|
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
|
||||||
import org.apache.poi.util.IOUtils;
|
import org.apache.poi.util.IOUtils;
|
||||||
import org.apache.poi.util.POILogFactory;
|
import org.apache.poi.util.POILogFactory;
|
||||||
import org.apache.poi.util.POILogger;
|
import org.apache.poi.util.POILogger;
|
||||||
|
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.io.File;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
|
@ -901,4 +903,19 @@ public class TestBugs extends TestCase
|
||||||
HWPFDocument hwpfDocument2 = HWPFTestDataSamples.writeOutAndReadBack(hwpfDocument);
|
HWPFDocument hwpfDocument2 = HWPFTestDataSamples.writeOutAndReadBack(hwpfDocument);
|
||||||
assertNotNull(hwpfDocument2);
|
assertNotNull(hwpfDocument2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void test57843() throws IOException {
|
||||||
|
try {
|
||||||
|
File f = POIDataSamples.getDocumentInstance().getFile("57843.doc");
|
||||||
|
boolean readOnly = true;
|
||||||
|
POIFSFileSystem fs = new POIFSFileSystem(f, readOnly);
|
||||||
|
HWPFOldDocument doc = new HWPFOldDocument(fs);
|
||||||
|
assertNotNull(doc);
|
||||||
|
doc.close();
|
||||||
|
fs.close();
|
||||||
|
fixed("57843");
|
||||||
|
} catch (ArrayIndexOutOfBoundsException e) {
|
||||||
|
// expected until this bug is fixed
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue