mirror of https://github.com/apache/poi.git
Assert that deleting test-files and entries works in tests
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1912709 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a5b4a3504a
commit
e8e6f671ef
|
@ -18,6 +18,7 @@
|
||||||
package org.apache.poi.xssf.streaming;
|
package org.apache.poi.xssf.streaming;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
import org.apache.poi.ss.usermodel.Cell;
|
import org.apache.poi.ss.usermodel.Cell;
|
||||||
import org.apache.poi.ss.usermodel.Row;
|
import org.apache.poi.ss.usermodel.Row;
|
||||||
|
@ -62,7 +63,7 @@ class TestSXSSFUnicodeSurrogates {
|
||||||
assertEquals(unicodeText, cell2.getStringCellValue());
|
assertEquals(unicodeText, cell2.getStringCellValue());
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
tf.delete();
|
assertTrue(tf.delete());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
package org.apache.poi.xssf.usermodel;
|
package org.apache.poi.xssf.usermodel;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
import org.apache.poi.ss.usermodel.Cell;
|
import org.apache.poi.ss.usermodel.Cell;
|
||||||
import org.apache.poi.ss.usermodel.Row;
|
import org.apache.poi.ss.usermodel.Row;
|
||||||
|
@ -61,7 +62,7 @@ class TestXSSFUnicodeSurrogates {
|
||||||
assertEquals(unicodeText, cell2.getStringCellValue());
|
assertEquals(unicodeText, cell2.getStringCellValue());
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
tf.delete();
|
assertTrue(tf.delete());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1479,7 +1479,7 @@ public final class TestXSSFWorkbook extends BaseTestXWorkbook {
|
||||||
}
|
}
|
||||||
assertEquals(2, count);
|
assertEquals(2, count);
|
||||||
} finally {
|
} finally {
|
||||||
tempFile.delete();
|
assertTrue(tempFile.delete());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@ package org.apache.poi.hssf.usermodel;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -89,7 +90,7 @@ class TestPOIFSProperties {
|
||||||
|
|
||||||
summary1.setTitle(title);
|
summary1.setTitle(title);
|
||||||
//write the modified property back to POIFS
|
//write the modified property back to POIFS
|
||||||
fs.getRoot().getEntryCaseInsensitive(SummaryInformation.DEFAULT_STREAM_NAME).delete();
|
assertTrue(fs.getRoot().getEntryCaseInsensitive(SummaryInformation.DEFAULT_STREAM_NAME).delete());
|
||||||
fs.createDocument(summary1.toInputStream(), SummaryInformation.DEFAULT_STREAM_NAME);
|
fs.createDocument(summary1.toInputStream(), SummaryInformation.DEFAULT_STREAM_NAME);
|
||||||
|
|
||||||
// check that the information was added successfully to the filesystem object
|
// check that the information was added successfully to the filesystem object
|
||||||
|
|
|
@ -1817,7 +1817,7 @@ final class TestPOIFSStream {
|
||||||
main4096[4095] = -11;
|
main4096[4095] = -11;
|
||||||
testDir.createDocument("Normal4096", new ByteArrayInputStream(main4096));
|
testDir.createDocument("Normal4096", new ByteArrayInputStream(main4096));
|
||||||
|
|
||||||
root.getEntryCaseInsensitive("Tags").delete();
|
assertTrue(root.getEntryCaseInsensitive("Tags").delete());
|
||||||
|
|
||||||
|
|
||||||
// Write out, re-load
|
// Write out, re-load
|
||||||
|
@ -1848,7 +1848,7 @@ final class TestPOIFSStream {
|
||||||
|
|
||||||
|
|
||||||
// Delete a directory, and add one more
|
// Delete a directory, and add one more
|
||||||
testDir.getEntryCaseInsensitive("Testing 456").delete();
|
assertTrue(testDir.getEntryCaseInsensitive("Testing 456").delete());
|
||||||
testDir.createDirectory("Testing ABC");
|
testDir.createDirectory("Testing ABC");
|
||||||
|
|
||||||
|
|
||||||
|
@ -1903,7 +1903,7 @@ final class TestPOIFSStream {
|
||||||
|
|
||||||
|
|
||||||
// Delete a mini stream, add one more
|
// Delete a mini stream, add one more
|
||||||
testDir.getEntryCaseInsensitive("Mini").delete();
|
assertTrue(testDir.getEntryCaseInsensitive("Mini").delete());
|
||||||
|
|
||||||
byte[] mini3 = new byte[]{42, 0, 42, 0, 42, 0, 42};
|
byte[] mini3 = new byte[]{42, 0, 42, 0, 42, 0, 42};
|
||||||
testDir.createDocument("Mini3", new ByteArrayInputStream(mini3));
|
testDir.createDocument("Mini3", new ByteArrayInputStream(mini3));
|
||||||
|
@ -2179,8 +2179,8 @@ final class TestPOIFSStream {
|
||||||
|
|
||||||
|
|
||||||
// Delete a couple of streams
|
// Delete a couple of streams
|
||||||
miniDoc.delete();
|
assertTrue(miniDoc.delete());
|
||||||
normDoc.delete();
|
assertTrue(normDoc.delete());
|
||||||
|
|
||||||
|
|
||||||
// Check - will have un-used sectors now
|
// Check - will have un-used sectors now
|
||||||
|
|
Loading…
Reference in New Issue