You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ki...@apache.org on 2020/12/30 22:56:37 UTC

svn commit: r1884962 - in /poi/trunk: ./ src/examples/src/org/apache/poi/examples/ss/ src/multimodule/ooxml-full/java9/ src/multimodule/ooxml-lite/java9/ src/ooxml/testcases/org/apache/poi/extractor/ooxml/ src/scratchpad/src/org/apache/poi/extractor/ol...

Author: kiwiwings
Date: Wed Dec 30 22:56:36 2020
New Revision: 1884962

URL: http://svn.apache.org/viewvc?rev=1884962&view=rev
Log:
add failing regression test files
fix ooxml-lite packaging
fix PP97 dual storage file handling in extractor

Added:
    poi/trunk/test-data/integration/
    poi/trunk/test-data/integration/stress001.docx   (with props)
    poi/trunk/test-data/integration/stress002.xlsx   (with props)
    poi/trunk/test-data/integration/stress003.docx   (with props)
    poi/trunk/test-data/integration/stress004.docx   (with props)
    poi/trunk/test-data/integration/stress005.docx   (with props)
    poi/trunk/test-data/integration/stress006.docx   (with props)
    poi/trunk/test-data/integration/stress007.docx   (with props)
    poi/trunk/test-data/integration/stress008.docx   (with props)
    poi/trunk/test-data/integration/stress009.docx   (with props)
    poi/trunk/test-data/integration/stress010.docx   (with props)
    poi/trunk/test-data/integration/stress011.docx   (with props)
    poi/trunk/test-data/integration/stress012.docx   (with props)
    poi/trunk/test-data/integration/stress013.pptx   (with props)
    poi/trunk/test-data/integration/stress014.docx   (with props)
    poi/trunk/test-data/integration/stress015.docx   (with props)
    poi/trunk/test-data/integration/stress016.docx   (with props)
    poi/trunk/test-data/integration/stress017.docx   (with props)
    poi/trunk/test-data/integration/stress018.docx   (with props)
    poi/trunk/test-data/integration/stress019.docx   (with props)
    poi/trunk/test-data/integration/stress020.xlsx   (with props)
Modified:
    poi/trunk/build.xml
    poi/trunk/src/examples/src/org/apache/poi/examples/ss/ExcelComparator.java
    poi/trunk/src/multimodule/ooxml-full/java9/module-info.java
    poi/trunk/src/multimodule/ooxml-lite/java9/module-info.class
    poi/trunk/src/multimodule/ooxml-lite/java9/module-info.java
    poi/trunk/src/ooxml/testcases/org/apache/poi/extractor/ooxml/TestExtractorFactory.java
    poi/trunk/src/scratchpad/src/org/apache/poi/extractor/ole2/OLE2ScratchpadExtractorFactory.java
    poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShow.java
    poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShowImpl.java

Modified: poi/trunk/build.xml
URL: http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1884962&r1=1884961&r2=1884962&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Wed Dec 30 22:56:36 2020
@@ -1753,16 +1753,23 @@ under the License.
             </modulepath>
         </javac>
 
+        <copy file="${ooxml.lite.report}.clazz" tofile="${ooxml.lite.report}.clazz1" overwrite="true">
+            <filterchain>
+                <sortfilter/>
+                <suffixlines suffix="$*.class"/>
+            </filterchain>
+        </copy>
+
         <copy file="${ooxml.lite.report}.clazz" tofile="${ooxml.lite.report}.clazz2" overwrite="true">
             <filterchain>
-                <tokenfilter>
-                    <replaceregex pattern="(.*)" replace="\1.class${line.separator}\1$*.class "/>
-                </tokenfilter>
+                <sortfilter/>
+                <suffixlines suffix=".class"/>
             </filterchain>
         </copy>
 
         <copy file="${ooxml.lite.report}.xsb" tofile="${ooxml.lite.report}.xsb2" overwrite="true">
             <filterchain>
+                <sortfilter/>
                 <prefixlines prefix="org/apache/poi/schemas/ooxml/system/ooxml/"/>
                 <suffixlines suffix=".xsb"/>
             </filterchain>
@@ -1770,15 +1777,17 @@ under the License.
 
         <mkdir dir="build/dist/maven/poi-ooxml-lite"/>
 
-        <jar destfile="${ooxml.lite.jar}" duplicate="preserve">
+        <jar destfile="${ooxml.lite.jar}" duplicate="fail">
             <zipfileset dir="${basedir}/src/multimodule/ooxml-lite/java9" prefix="META-INF/versions/9" excludes="*.java"/>
             <zipfileset src="${ooxml.xsds.jar}">
-                <patternset includesfile="${ooxml.lite.report}.clazz2">
+                <patternset>
+                    <includesfile name="${ooxml.lite.report}.clazz1"/>
+                    <includesfile name="${ooxml.lite.report}.clazz2"/>
+                    <includesfile name="${ooxml.lite.report}.xsb2"/>
+<!--                    <include name="org/apache/poi/schemas/ooxml/system/ooxml/*.xsb"/>-->
                     <include name="org/apache/poi/schemas/ooxml/element/**/*.xsb"/>
                 </patternset>
-                <patternset includesfile="${ooxml.lite.report}.xsb2"/>
             </zipfileset>
-            <zipfileset dir="src/multimodule/ooxml-full/java9" prefix="META-INF/versions/9" excludes="*.java"/>
             <manifest>
                 <attribute name="Multi-Release" value="true"/>
                 <attribute name="Automatic-Module-Name" value="org.apache.poi.ooxml.schemas"/>

Modified: poi/trunk/src/examples/src/org/apache/poi/examples/ss/ExcelComparator.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/examples/src/org/apache/poi/examples/ss/ExcelComparator.java?rev=1884962&r1=1884961&r2=1884962&view=diff
==============================================================================
--- poi/trunk/src/examples/src/org/apache/poi/examples/ss/ExcelComparator.java (original)
+++ poi/trunk/src/examples/src/org/apache/poi/examples/ss/ExcelComparator.java Wed Dec 30 22:56:36 2020
@@ -24,6 +24,7 @@ import java.util.Date;
 import java.util.Iterator;
 import java.util.List;
 import java.util.Locale;
+import java.util.Objects;
 
 import org.apache.poi.ss.usermodel.BorderStyle;
 import org.apache.poi.ss.usermodel.Cell;
@@ -477,7 +478,7 @@ public class ExcelComparator {
 
         String col1 = getCellFillBackground(loc1);
         String col2 = getCellFillBackground(loc2);
-        if (!col1.equals(col2)) {
+        if (!Objects.equals(col1, col2)) {
             addMessage(loc1, loc2, "Cell Fill Color does not Match ::", col1, col2);
         }
     }

Modified: poi/trunk/src/multimodule/ooxml-full/java9/module-info.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/multimodule/ooxml-full/java9/module-info.java?rev=1884962&r1=1884961&r2=1884962&view=diff
==============================================================================
--- poi/trunk/src/multimodule/ooxml-full/java9/module-info.java (original)
+++ poi/trunk/src/multimodule/ooxml-full/java9/module-info.java Wed Dec 30 22:56:36 2020
@@ -21,6 +21,9 @@ open module org.apache.poi.ooxml.schemas
     // see https://bugs.openjdk.java.net/browse/JDK-8240847
     requires transitive org.apache.xmlbeans;
     requires java.xml;
+
+    exports org.apache.poi.schemas.ooxml.system.ooxml;
+
     exports com.microsoft.schemas.compatibility;
     exports com.microsoft.schemas.office.excel;
     exports com.microsoft.schemas.office.office;

Modified: poi/trunk/src/multimodule/ooxml-lite/java9/module-info.class
URL: http://svn.apache.org/viewvc/poi/trunk/src/multimodule/ooxml-lite/java9/module-info.class?rev=1884962&r1=1884961&r2=1884962&view=diff
==============================================================================
Binary files - no diff available.

Modified: poi/trunk/src/multimodule/ooxml-lite/java9/module-info.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/multimodule/ooxml-lite/java9/module-info.java?rev=1884962&r1=1884961&r2=1884962&view=diff
==============================================================================
--- poi/trunk/src/multimodule/ooxml-lite/java9/module-info.java (original)
+++ poi/trunk/src/multimodule/ooxml-lite/java9/module-info.java Wed Dec 30 22:56:36 2020
@@ -23,6 +23,8 @@ open module org.apache.poi.ooxml.schemas
     requires java.xml;
 
 
+
+
     exports com.microsoft.schemas.compatibility;
     exports com.microsoft.schemas.office.excel;
     exports com.microsoft.schemas.office.office;
@@ -40,6 +42,7 @@ open module org.apache.poi.ooxml.schemas
     exports org.openxmlformats.schemas.officeDocument.x2006.customProperties;
     exports org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes;
     exports org.openxmlformats.schemas.officeDocument.x2006.extendedProperties;
+    exports org.openxmlformats.schemas.officeDocument.x2006.math;
     exports org.openxmlformats.schemas.officeDocument.x2006.relationships;
     exports org.openxmlformats.schemas.officeDocument.x2006.sharedTypes;
     exports org.openxmlformats.schemas.presentationml.x2006.main;

Modified: poi/trunk/src/ooxml/testcases/org/apache/poi/extractor/ooxml/TestExtractorFactory.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/extractor/ooxml/TestExtractorFactory.java?rev=1884962&r1=1884961&r2=1884962&view=diff
==============================================================================
--- poi/trunk/src/ooxml/testcases/org/apache/poi/extractor/ooxml/TestExtractorFactory.java (original)
+++ poi/trunk/src/ooxml/testcases/org/apache/poi/extractor/ooxml/TestExtractorFactory.java Wed Dec 30 22:56:36 2020
@@ -81,6 +81,7 @@ public class TestExtractorFactory {
     private static final POIDataSamples slTests = POIDataSamples.getSlideShowInstance();
     private static final File ppt = getFileAndCheck(slTests, "SampleShow.ppt");
     private static final File pptx = getFileAndCheck(slTests, "SampleShow.pptx");
+    private static final File ppt97 = getFileAndCheck(slTests, "bug56240.ppt");
     private static final File txt = getFileAndCheck(slTests, "SampleShow.txt");
 
     private static final POIDataSamples olTests = POIDataSamples.getHSMFInstance();
@@ -126,6 +127,7 @@ public class TestExtractorFactory {
             Arguments.of("Word 6", doc6, "Word6Extractor", 20),
             Arguments.of("Word 95", doc95, "Word6Extractor", 120),
             Arguments.of("PowerPoint", ppt, "SlideShowExtractor", 120),
+            Arguments.of("PowerPoint 97 Dual", ppt97, "SlideShowExtractor", 120),
             Arguments.of("Visio", vsd, "VisioTextExtractor", 50),
             Arguments.of("Publisher", pub, "PublisherTextExtractor", 50),
             Arguments.of("Outlook msg", msg, "OutlookTextExtractor", 50)

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/extractor/ole2/OLE2ScratchpadExtractorFactory.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/extractor/ole2/OLE2ScratchpadExtractorFactory.java?rev=1884962&r1=1884961&r2=1884962&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/extractor/ole2/OLE2ScratchpadExtractorFactory.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/extractor/ole2/OLE2ScratchpadExtractorFactory.java Wed Dec 30 22:56:36 2020
@@ -100,7 +100,7 @@ public class OLE2ScratchpadExtractorFact
                 }
             }
 
-            if (poifsDir.hasEntry(HSLFSlideShow.POWERPOINT_DOCUMENT)) {
+            if (poifsDir.hasEntry(HSLFSlideShow.POWERPOINT_DOCUMENT) || poifsDir.hasEntry(HSLFSlideShow.PP97_DOCUMENT)) {
                 return new SlideShowExtractor<>((HSLFSlideShow)SlideShowFactory.create(poifsDir));
             }
 

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShow.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShow.java?rev=1884962&r1=1884961&r2=1884962&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShow.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShow.java Wed Dec 30 22:56:36 2020
@@ -78,6 +78,7 @@ public final class HSLFSlideShow extends
 
 	/** Powerpoint document entry/stream name */
     public static final String POWERPOINT_DOCUMENT = "PowerPoint Document";
+	public static final String PP97_DOCUMENT = "PP97_DUALSTORAGE";
 	public static final String PP95_DOCUMENT = "PP40";
 
     enum LoadSavePhase {

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShowImpl.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShowImpl.java?rev=1884962&r1=1884961&r2=1884962&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShowImpl.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFSlideShowImpl.java Wed Dec 30 22:56:36 2020
@@ -19,6 +19,7 @@ package org.apache.poi.hslf.usermodel;
 
 import static org.apache.poi.hslf.usermodel.HSLFSlideShow.POWERPOINT_DOCUMENT;
 import static org.apache.poi.hslf.usermodel.HSLFSlideShow.PP95_DOCUMENT;
+import static org.apache.poi.hslf.usermodel.HSLFSlideShow.PP97_DOCUMENT;
 
 import java.io.ByteArrayInputStream;
 import java.io.ByteArrayOutputStream;
@@ -74,8 +75,6 @@ public final class HSLFSlideShowImpl ext
     //arbitrarily selected; may need to increase
     private static final int MAX_RECORD_LENGTH = 200_000_000;
 
-    private static final String DUAL_STORAGE_NAME = "PP97_DUALSTORAGE";
-
     // Holds metadata on where things are in our document
     private CurrentUserAtom currentUser;
 
@@ -163,10 +162,10 @@ public final class HSLFSlideShowImpl ext
 
     private static DirectoryNode handleDualStorage(DirectoryNode dir) throws IOException {
         // when there's a dual storage entry, use it, as the outer document can't be read quite probably ...
-        if (!dir.hasEntry(DUAL_STORAGE_NAME)) {
+        if (!dir.hasEntry(PP97_DOCUMENT)) {
             return dir;
         }
-        return (DirectoryNode) dir.getEntry(DUAL_STORAGE_NAME);
+        return (DirectoryNode) dir.getEntry(PP97_DOCUMENT);
     }
 
     /**
@@ -831,7 +830,7 @@ public final class HSLFSlideShowImpl ext
         // only close the filesystem, if we are based on the root node.
         // embedded documents/slideshows shouldn't close the parent container
         if (getDirectory().getParent() == null ||
-                getDirectory().getName().equals(DUAL_STORAGE_NAME)) {
+            PP97_DOCUMENT.equals(getDirectory().getName())) {
             POIFSFileSystem fs = getDirectory().getFileSystem();
             if (fs != null) {
                 fs.close();

Added: poi/trunk/test-data/integration/stress001.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress001.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress001.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress002.xlsx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress002.xlsx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress002.xlsx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

Added: poi/trunk/test-data/integration/stress003.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress003.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress003.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress004.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress004.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress004.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress005.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress005.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress005.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress006.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress006.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress006.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress007.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress007.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress007.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress008.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress008.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress008.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress009.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress009.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress009.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress010.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress010.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress010.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress011.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress011.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress011.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress012.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress012.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress012.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress013.pptx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress013.pptx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress013.pptx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.presentationml.presentation

Added: poi/trunk/test-data/integration/stress014.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress014.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress014.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress015.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress015.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress015.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress016.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress016.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress016.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress017.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress017.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress017.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress018.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress018.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress018.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress019.docx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress019.docx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress019.docx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.wordprocessingml.document

Added: poi/trunk/test-data/integration/stress020.xlsx
URL: http://svn.apache.org/viewvc/poi/trunk/test-data/integration/stress020.xlsx?rev=1884962&view=auto
==============================================================================
Binary file - no diff available.

Propchange: poi/trunk/test-data/integration/stress020.xlsx
------------------------------------------------------------------------------
--- svn:mime-type (added)
+++ svn:mime-type Wed Dec 30 22:56:36 2020
@@ -0,0 +1 @@
+application/vnd.openxmlformats-officedocument.spreadsheetml.sheet



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org