diff options
author | Dominik Stadler <centic@apache.org> | 2023-10-13 09:25:13 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2023-10-13 09:25:13 +0000 |
commit | a227fa944383878432655dab2260f8a464a62d59 (patch) | |
tree | 395da8a0162effeac16f32cdba37a12a9aa3308e | |
parent | 638a9be903dd75f58ab3a260102f4687619784c7 (diff) | |
download | poi-a227fa944383878432655dab2260f8a464a62d59.tar.gz poi-a227fa944383878432655dab2260f8a464a62d59.zip |
integration-tests: Enable testing extracting for OPCFileHandler and fix single test
Enable running "extract" also for OPCFileHandler
Add additional expected failures in stress.xls
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1912933 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | poi-integration/src/test/java/org/apache/poi/stress/OPCFileHandler.java | 11 | ||||
-rw-r--r-- | test-data/spreadsheet/stress.xls | bin | 58368 -> 99840 bytes |
2 files changed, 4 insertions, 7 deletions
diff --git a/poi-integration/src/test/java/org/apache/poi/stress/OPCFileHandler.java b/poi-integration/src/test/java/org/apache/poi/stress/OPCFileHandler.java index 7ad6e44488..68234bc030 100644 --- a/poi-integration/src/test/java/org/apache/poi/stress/OPCFileHandler.java +++ b/poi-integration/src/test/java/org/apache/poi/stress/OPCFileHandler.java @@ -19,10 +19,11 @@ package org.apache.poi.stress; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; +import java.io.BufferedInputStream; import java.io.File; -import java.io.FileInputStream; import java.io.InputStream; import java.io.PushbackInputStream; +import java.nio.file.Files; import java.util.Set; import org.apache.poi.openxml4j.opc.ContentTypes; @@ -61,17 +62,13 @@ public class OPCFileHandler extends AbstractFileHandler { } } - @Override - public void handleExtracting(File file) { - // text-extraction is not possible currently for these types of files - } - // a test-case to test this locally without executing the full TestAllFiles @Test void test() throws Exception { File file = new File("test-data/diagram/test.vsdx"); - try (InputStream stream = new PushbackInputStream(new FileInputStream(file), 100000)) { + try (InputStream stream = new BufferedInputStream( + new PushbackInputStream(Files.newInputStream(file.toPath()), 100000))) { handleFile(stream, file.getPath()); } diff --git a/test-data/spreadsheet/stress.xls b/test-data/spreadsheet/stress.xls Binary files differindex 709bc401f0..203dae720a 100644 --- a/test-data/spreadsheet/stress.xls +++ b/test-data/spreadsheet/stress.xls |