diff options
author | Javen O'Neal <onealj@apache.org> | 2017-07-13 04:19:20 +0000 |
---|---|---|
committer | Javen O'Neal <onealj@apache.org> | 2017-07-13 04:19:20 +0000 |
commit | 5c2267081d3fbdd5ee3cad9b1ebc2bf5db711975 (patch) | |
tree | f30712b6300d6f1d815d7039b31295a2b8b8fdf2 /src/ooxml | |
parent | 4364dd5d022a621fd65f51e5cdb0e554af6bfb9d (diff) | |
download | poi-5c2267081d3fbdd5ee3cad9b1ebc2bf5db711975.tar.gz poi-5c2267081d3fbdd5ee3cad9b1ebc2bf5db711975.zip |
replace commented-out throw-away code that writes workbook to C:\temp\xxxxx.xlsx for manual review with XSSFTestDataSamples.writeOut(wb, "bug xxxxx for manual review")
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1801801 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/ooxml')
-rw-r--r-- | src/ooxml/testcases/org/apache/poi/xssf/XSSFTestDataSamples.java | 7 | ||||
-rw-r--r-- | src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestUnfixedBugs.java | 24 |
2 files changed, 10 insertions, 21 deletions
diff --git a/src/ooxml/testcases/org/apache/poi/xssf/XSSFTestDataSamples.java b/src/ooxml/testcases/org/apache/poi/xssf/XSSFTestDataSamples.java index b1a0c40fc7..048e44a8e3 100644 --- a/src/ooxml/testcases/org/apache/poi/xssf/XSSFTestDataSamples.java +++ b/src/ooxml/testcases/org/apache/poi/xssf/XSSFTestDataSamples.java @@ -88,11 +88,16 @@ public class XSSFTestDataSamples { // with unique names. Subsequent calls with the same argument may return a different file. // Gets a test data sample file, deleting the file if it exists. // This is used in preparation for writing a workbook out to the returned output file. + // testName is a filename fragment and should not include the extension private static File getOutputFile(String testName) throws IOException { final String testOutputDir = System.getProperty(TEST_OUTPUT_DIR); final File file; if (testOutputDir != null) { - file = new File(testOutputDir, testName + ".xlsx"); + // In case user provided testName with a file extension, don't repeat the file extension a second time + final String testNameWithExtension = testName.endsWith(".xlsx") ? testName : testName + ".xlsx"; + // FIXME: may want to defer to the TempFile with a persistent file creation strategy to the test output dir + // This would add the random value in the middle of the filename so that test runs wouldn't overwrite files + file = new File(testOutputDir, testNameWithExtension); } else { file = TempFile.createTempFile(testName, ".xlsx"); diff --git a/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestUnfixedBugs.java b/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestUnfixedBugs.java index 0c2643a528..de70066f12 100644 --- a/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestUnfixedBugs.java +++ b/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestUnfixedBugs.java @@ -66,12 +66,7 @@ public final class TestUnfixedBugs { verifyBug54084Unicode(wb); -// OutputStream baos = new FileOutputStream("/tmp/test.xlsx"); -// try { -// wb.write(baos); -// } finally { -// baos.close(); -// } + //XSSFTestDataSamples.writeOut(wb, "bug 54084 for manual review"); // now write the file and read it back in XSSFWorkbook wbWritten = XSSFTestDataSamples.writeOutAndReadBack(wb); @@ -254,13 +249,8 @@ public final class TestUnfixedBugs { RegionUtil.setBorderBottom(BorderStyle.THIN, range4, sheet); - // write to file - OutputStream stream = new FileOutputStream(new File("C:/temp/55752.xlsx")); - try { - wb.write(stream); - } finally { - stream.close(); - } + // write to file for manual inspection + XSSFTestDataSamples.writeOut(wb, "bug 55752 for review"); } finally { wb.close(); } @@ -288,13 +278,7 @@ public final class TestUnfixedBugs { checkRows57423(testSheet); Workbook wbBack = XSSFTestDataSamples.writeOutAndReadBack(wb); - - /*FileOutputStream stream = new FileOutputStream("C:\\temp\\57423.xlsx"); - try { - wb.write(stream); - } finally { - stream.close(); - }*/ + /* XSSFTestDataSamples.writeOut(wb, "bug 57423 for manual review"); */ wb.close(); |