Browse Source

bug 60158: add failing test cases for AIOOBE on VBAMacroReader

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1761652 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_16_BETA1
Javen O'Neal 7 years ago
parent
commit
3d953b0065

+ 17
- 1
src/testcases/org/apache/poi/poifs/macros/TestVBAMacroReader.java View File

@@ -262,6 +262,10 @@ public class TestVBAMacroReader {
reader.close();
}
private void skipTest(Throwable e) {
assumeTrue("This test currently fails." + e.getLocalizedMessage(), false);
}
// This test is written as expected-to-fail and should be rewritten
// as expected-to-pass when the bug is fixed.
@Test
@@ -273,11 +277,23 @@ public class TestVBAMacroReader {
if (e.getMessage().matches("Module offset for '.+' was never read.")) {
//e.printStackTrace();
// NPE when reading module.offset in VBAMacroReader.readMacros (approx line 258)
assumeTrue("This test currently fails. See stdout.", false);
skipTest(e);
} else {
// something unexpected failed
throw e;
}
}
}
// This test is written as expected-to-fail and should be rewritten
// as expected-to-pass when the bug is fixed.
@Test
public void bug60158() throws IOException {
try {
fromFile(POIDataSamples.getDocumentInstance(), "60158.docm");
fail("This test passes now. Please update the unit test and bug 59858.");
} catch (ArrayIndexOutOfBoundsException e) {
skipTest(e);
}
}
}

BIN
test-data/document/60158.docm View File


Loading…
Cancel
Save