Author: fanningpj
Date: Mon Jul 1 23:27:27 2024
New Revision: 1918806
URL: http://svn.apache.org/viewvc?rev=1918806&view=rev
Log:
try to stop poi-integration testing with corrupt file
Modified:
poi/trunk/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java
Modified:
poi/trunk/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java
URL:
http://svn.apache.org/viewvc/poi/trunk/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java?rev=1918806&r1=1918805&r2=1918806&view=diff
==============================================================================
---
poi/trunk/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java
(original)
+++
poi/trunk/poi-integration/src/test/java/org/apache/poi/stress/TestAllFiles.java
Mon Jul 1 23:27:27 2024
@@ -98,15 +98,12 @@ public class TestAllFiles {
"poifs/protected_sha512.xlsx",
// corrupt file
- "spreadsheet/duplicate-filename.xlsx"
+ "spreadsheet/duplicate-filename.xlsx",
+
"document/clusterfuzz-testcase-minimized-POIXWPFFuzzer-5166796835258368.docx",
};
// cheap workaround of skipping the few problematic files
- public static final String[] SCAN_EXCLUDES_NOSCRATCHPAD = {
- "**/.svn/**",
- "lost+found",
- "**/.git/**",
- "**/ExternalEntityInText.docx", //the DocType (DTD) declaration causes
this to fail
+ public static final String[] SCAN_EXCLUDES_NOSCRATCHPAD =
concat(SCAN_EXCLUDES, new String[] {
"**/right-to-left.xlsx", //the threaded comments in this file cause
XSSF clone to fail
"document/word2.doc",
"document/cpansearch.perl.org_src_tobyink_acme-rundoc-0.001_word-lib_hello_world.docm",
@@ -141,17 +138,7 @@ public class TestAllFiles {
"spreadsheet/clusterfuzz-testcase-minimized-POIXSSFFuzzer-5089447305609216.xlsx",
"spreadsheet/clusterfuzz-testcase-minimized-POIXSSFFuzzer-5089447305609216.xlsx",
"spreadsheet/clusterfuzz-testcase-minimized-POIXSSFFuzzer-5089447305609216.xlsx",
-
- // exclude files failing on windows nodes, because of limited JCE
policies
- "document/bug53475-password-is-pass.docx",
- "poifs/60320-protected.xlsx",
- "poifs/protected_sha512.xlsx",
- "poifs/60320-protected.xlsx",
- "poifs/protected_sha512.xlsx",
-
- // corrupt file
- "spreadsheet/duplicate-filename.xlsx"
- };
+ });
private static final Set<String> EXPECTED_FAILURES =
StressTestUtils.unmodifiableHashSet(
"document/truncated62886.docx"
@@ -344,4 +331,11 @@ public class TestAllFiles {
private static boolean isJava8() {
return System.getProperty("java.version").startsWith("1.8");
}
+
+ private static String[] concat(String[] a, String[] b) {
+ String[] result = new String[a.length + b.length];
+ System.arraycopy(a, 0, result, 0, a.length);
+ System.arraycopy(b, 0, result, a.length, b.length);
+ return result;
+ }
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]