Add .git as excluded dir for integration-tests and add a local test for XSSFBFileHandler to be able to manually test single files quickly

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808504 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2017-09-16 08:20:38 +00:00
parent 23c2850586
commit ee35ccda7f
2 changed files with 15 additions and 6 deletions

View File

@ -91,7 +91,7 @@ import org.junit.runners.Parameterized.Parameters;
public class TestAllFiles { public class TestAllFiles {
private static final File ROOT_DIR = new File("test-data"); private static final File ROOT_DIR = new File("test-data");
static final String[] SCAN_EXCLUDES = new String[] { "**/.svn/**", "lost+found" }; static final String[] SCAN_EXCLUDES = new String[] { "**/.svn/**", "lost+found", "**/.git/**" };
private static final Map<String,String> FILE_PASSWORD; private static final Map<String,String> FILE_PASSWORD;

View File

@ -16,11 +16,7 @@
==================================================================== */ ==================================================================== */
package org.apache.poi.stress; package org.apache.poi.stress;
import java.io.ByteArrayInputStream; import java.io.*;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import org.apache.poi.openxml4j.opc.OPCPackage; import org.apache.poi.openxml4j.opc.OPCPackage;
import org.apache.poi.openxml4j.opc.PackageAccess; import org.apache.poi.openxml4j.opc.PackageAccess;
@ -28,6 +24,7 @@ import org.apache.poi.util.IOUtils;
import org.apache.poi.xssf.XLSBUnsupportedException; import org.apache.poi.xssf.XLSBUnsupportedException;
import org.apache.poi.xssf.extractor.XSSFBEventBasedExcelExtractor; import org.apache.poi.xssf.extractor.XSSFBEventBasedExcelExtractor;
import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.junit.Test;
public class XSSFBFileHandler extends AbstractFileHandler { public class XSSFBFileHandler extends AbstractFileHandler {
@ -85,4 +82,16 @@ public class XSSFBFileHandler extends AbstractFileHandler {
throw new RuntimeException("Should have gotten some text."); throw new RuntimeException("Should have gotten some text.");
} }
} }
@Test
public void testLocal() throws Exception {
File file = new File("test-data/spreadsheet/Simple.xlsb");
FileInputStream stream = new FileInputStream(file);
try {
handleFile(stream, file.getPath());
} finally {
stream.close();
}
handleExtracting(file);
}
} }