Browse Source

ignore keystore files on integration test

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1848975 13f79535-47bb-0310-9956-ffa450edef68
pull/133/head^2
Andreas Beeker 5 years ago
parent
commit
5384cfbe8a
1 changed files with 7 additions and 1 deletions
  1. 7
    1
      src/integrationtest/org/apache/poi/TestAllFiles.java

+ 7
- 1
src/integrationtest/org/apache/poi/TestAllFiles.java View File

@@ -211,7 +211,13 @@ public class TestAllFiles {
HANDLERS.put("spreadsheet/BigSSTRecord2CR7", new NullFileHandler());
HANDLERS.put("spreadsheet/BigSSTRecordCR", new NullFileHandler());
HANDLERS.put("spreadsheet/test_properties1", new NullFileHandler());

// keystore files
HANDLERS.put(".pfx", new NullFileHandler());
HANDLERS.put(".pem", new NullFileHandler());
HANDLERS.put(".jks", new NullFileHandler());
HANDLERS.put(".pkcs12", new NullFileHandler());

Map<String,String> passmap = new HashMap<>();
passmap.put("slideshow/Password_Protected-hello.ppt", "hello");
passmap.put("slideshow/Password_Protected-56-hello.ppt", "hello");

Loading…
Cancel
Save