From ac92165d20b95fee5e78ed93e861857606f515b4 Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Wed, 11 Mar 2015 19:08:59 +0000 Subject: [PATCH] No support as yet for the OOXML visio files, so have these ignored git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1665971 13f79535-47bb-0310-9956-ffa450edef68 --- src/integrationtest/org/apache/poi/TestAllFiles.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/integrationtest/org/apache/poi/TestAllFiles.java b/src/integrationtest/org/apache/poi/TestAllFiles.java index f9782400d6..25e837b927 100644 --- a/src/integrationtest/org/apache/poi/TestAllFiles.java +++ b/src/integrationtest/org/apache/poi/TestAllFiles.java @@ -98,8 +98,16 @@ public class TestAllFiles { // Publisher HANDLERS.put(".pub", new HPBFFileHandler()); - // Visio + // Visio - binary HANDLERS.put(".vsd", new HDGFFileHandler()); + + // Visio - ooxml (currently unsupported) + HANDLERS.put(".vsdm", new NullFileHandler()); + HANDLERS.put(".vsdx", new NullFileHandler()); + HANDLERS.put(".vssm", new NullFileHandler()); + HANDLERS.put(".vssx", new NullFileHandler()); + HANDLERS.put(".vstm", new NullFileHandler()); + HANDLERS.put(".vstx", new NullFileHandler()); // POIFS HANDLERS.put(".ole2", new POIFSFileHandler()); -- 2.39.5