aboutsummaryrefslogtreecommitdiffstats
path: root/poi-integration/src/test/java/org/apache/poi/stress/AbstractFileHandler.java
blob: c413fb07337a518a895352fd05b7c99f19d0ce9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */
package org.apache.poi.stress;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assumptions.assumeFalse;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;

import org.apache.poi.EncryptedDocumentException;
import org.apache.poi.extractor.ExtractorFactory;
import org.apache.poi.extractor.POIOLE2TextExtractor;
import org.apache.poi.extractor.POITextExtractor;
import org.apache.poi.hpsf.extractor.HPSFPropertiesExtractor;
import org.apache.poi.hssf.extractor.EventBasedExcelExtractor;
import org.apache.poi.ooxml.POIXMLException;
import org.apache.poi.ss.extractor.ExcelExtractor;

/**
 * Base class with things that can be run for any supported file handler
 * in the integration tests, mostly text-extraction related at the moment.
 */
public abstract class AbstractFileHandler implements FileHandler {
    // some FileHandlers extend this list!?!
    protected static final Set<String> EXPECTED_EXTRACTOR_FAILURES = new HashSet<>(Arrays.asList(
        // password protected files without password
        // ... currently none ...

        // unsupported file-types, no supported OLE2 parts
        "hmef/quick-winmail.dat",
        "hmef/winmail-sample1.dat",
        "hmef/bug52400-winmail-simple.dat",
        "hmef/bug52400-winmail-with-attachments.dat",
        "hmef/bug63955-winmail.dat",
        "hpsf/Test0313rur.adm",
        "poifs/Notes.ole2",
        "poifs/64322.ole2",
        //commons-compress 1.21 no longer supports truncated files
        "document/truncated62886.docx"
    ));

    @Override
    public void handleExtracting(File file) throws Exception {
        boolean before = ExtractorFactory.getThreadPrefersEventExtractors();
        try {
            ExtractorFactory.setThreadPrefersEventExtractors(true);
            handleExtractingInternal(file);

            ExtractorFactory.setThreadPrefersEventExtractors(false);
            handleExtractingInternal(file);
        } finally {
            ExtractorFactory.setThreadPrefersEventExtractors(before);
        }

        /* Did fail for some documents with special XML contents...
        try {
            OOXMLPrettyPrint.main(new String[] { file.getAbsolutePath(),
                    "/tmp/pretty-" + file.getName() });
        } catch (ZipException e) {
            // ignore, not a Zip/OOXML file
        }*/
    }

    private void handleExtractingInternal(File file) throws Exception {
        long length = file.length();
        long modified = file.lastModified();

        String fileAndParentName = file.getParentFile().getName() + "/" + file.getName();
        try {
            handleExtractingAsStream(file);

            // fix windows absolute paths for exception message tracking
            String relPath = file.getPath().replaceAll(".*test-data", "test-data").replace('\\', '/');
            try (POITextExtractor extractor = ExtractorFactory.createExtractor(file)) {
                assertNotNull(extractor, "Should get a POITextExtractor but had none for file " + relPath);

                assertNotNull(extractor.getText(), "Should get some text but had none for file " + relPath);

                // also try metadata
                POITextExtractor metadataExtractor = extractor.getMetadataTextExtractor();
                assertNotNull(metadataExtractor.getText());

                assertFalse(EXPECTED_EXTRACTOR_FAILURES.contains(fileAndParentName),
                        "Expected Extraction to fail for file " + relPath + " and handler " + this + ", but did not fail!");

                assertEquals(length, file.length(), "File should not be modified by extractor");
                assertEquals(modified, file.lastModified(), "File should not be modified by extractor");

                if (extractor instanceof POIOLE2TextExtractor) {
                    try (HPSFPropertiesExtractor hpsfExtractor = new HPSFPropertiesExtractor((POIOLE2TextExtractor) extractor)) {
                        assertNotNull(hpsfExtractor.getDocumentSummaryInformationText());
                        assertNotNull(hpsfExtractor.getSummaryInformationText());
                        String text = hpsfExtractor.getText();
                        //System.out.println(text);
                        assertNotNull(text);
                    }
                }

                // test again with including formulas and cell-comments as this caused some bugs
                if (extractor instanceof ExcelExtractor &&
                        // comment-extraction and formula extraction are not well supported in event based extraction
                        !(extractor instanceof EventBasedExcelExtractor)) {
                    ((ExcelExtractor) extractor).setFormulasNotResults(true);

                    String text = extractor.getText();
                    assertNotNull(text);
                    // */

                    ((ExcelExtractor) extractor).setIncludeCellComments(true);

                    text = extractor.getText();
                    assertNotNull(text);
                }
            }
        } catch (IOException | POIXMLException e) {
            Exception prevE = e;
            Throwable cause;
            while ((cause = prevE.getCause()) instanceof Exception) {
                if (cause instanceof IOException || cause instanceof POIXMLException) {
                    prevE = (Exception)cause;
                } else {
                    throw (Exception)cause;
                }
            }
            throw e;
        } catch (IllegalArgumentException e) {
            if(!EXPECTED_EXTRACTOR_FAILURES.contains(fileAndParentName)) {
                throw e;
            }
        } catch (EncryptedDocumentException e) {
            String msg = "org.apache.poi.EncryptedDocumentException: Export Restrictions in place - please install JCE Unlimited Strength Jurisdiction Policy files";
            assumeFalse(msg.equals(e.getMessage()));
            throw e;
        } catch (IllegalStateException e) {
            if (!e.getMessage().contains("POI Scratchpad jar missing") || !Boolean.getBoolean("scratchpad.ignore")) {
                throw e;
            }
        }
    }

    private void handleExtractingAsStream(File file) throws IOException {
        try (InputStream stream = new FileInputStream(file)) {
            try (POITextExtractor streamExtractor = ExtractorFactory.createExtractor(stream)) {
                assertNotNull(streamExtractor);

                assertNotNull(streamExtractor.getText());
            }
        }
    }

    @Override
    public void handleAdditional(File file) throws Exception {
        // by default we do nothing here
    }
}