Skip to content

Commit 36d7b8c

Browse files
committed
fix DefaultReportPageFactory
1 parent 9808163 commit 36d7b8c

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

src/main/java/org/spacious_team/table_wrapper/autoconfigure/DefaultReportPageFactory.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public ReportPage doCreate(InputStream is, Object sheetId) {
205205
*/
206206
public static ByteArrayInputStream convertToByteArrayInputStream(InputStream inputStream) throws IOException {
207207
if (inputStream.getClass() == ByteArrayInputStream.class) {
208-
return (ByteArrayInputStream) inputStream; // close() do nothing
208+
return (ByteArrayInputStream) inputStream; // close() does nothing
209209
} else {
210210
byte[] bytes = inputStream.readAllBytes();
211211
return new ByteArrayInputStream(bytes);
@@ -214,6 +214,9 @@ public static ByteArrayInputStream convertToByteArrayInputStream(InputStream inp
214214

215215
@SuppressWarnings("DataFlowIssue")
216216
private static boolean isEmptyCsvReportPage(CsvReportPage reportPage) {
217+
if (reportPage.getLastRowNum() == -1) {
218+
return true;
219+
}
217220
// has only one Cell with NULL value
218221
return reportPage.getLastRowNum() == 0 &&
219222
reportPage.getCell(TableCellAddress.of(0, 0)) != null &&

src/test/java/org/spacious_team/table_wrapper/autoconfigure/DefaultReportPageFactoryTest.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ void create_firstSheetByInputStream_ok(String fileName) throws IOException {
7171

7272
@ParameterizedTest
7373
@ValueSource(strings = {"test.txt", "test.bin"})
74-
void create_firstSheetByPath_exception(String fileName) {
74+
void create_byPathWithUnknownFilenameExt_exception(String fileName) {
7575
Path path = getPath(fileName);
7676
assertThrows(ReportPageInstantiationException.class, () -> factory.create(path));
7777
}
7878

7979
@ParameterizedTest
8080
@ValueSource(strings = {"test.bin"})
81-
void create_firstSheetByInputStream_exception(String fileName) {
81+
void create_byInputStreamOfBinaryFile_exception(String fileName) {
8282
InputStream is = getInputStream(fileName);
8383
assertThrows(ReportPageInstantiationException.class, () -> factory.create(is));
8484
}
@@ -129,6 +129,8 @@ void create_namedSheetForCsvByInputStream_ok(String fileName) {
129129
assertNotNull(factory.create(is, "SheetB"));
130130
}
131131

132+
// test InputStream closing
133+
132134
@Test
133135
void create_byteArrayInputStream_closed() throws IOException {
134136
InputStream is = spy(new ByteArrayInputStream(new byte[0]));
@@ -137,7 +139,7 @@ void create_byteArrayInputStream_closed() throws IOException {
137139
}
138140

139141
@Test
140-
void create_instanceOfByteArrayInputStream_closed() throws IOException {
142+
void create_instanceOfByteArrayInputStream_notClosed() throws IOException {
141143
InputStream is = spy(new ByteArrayInputStream(new byte[0]) {
142144
// own class impl extending ByteArrayInputStream
143145
});
@@ -156,4 +158,4 @@ public int read() {
156158
assertNotNull(factory.create(is));
157159
verify(is, never()).close();
158160
}
159-
}
161+
}

src/test/java/org/spacious_team/table_wrapper/autoconfigure/ReportPageFactoryTestFileCreator.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,12 @@ static void creteFiles() {
4949
createCsvFile("test.csv");
5050
createCsvFile("test.txt");
5151
createXmlFile("test.xml");
52-
createExcelFile("test.xls", new HSSFWorkbook());
53-
createExcelFile("test.xlsx", new XSSFWorkbook());
52+
try (HSSFWorkbook workbook = new HSSFWorkbook()) {
53+
createExcelFile("test.xls", workbook);
54+
}
55+
try (XSSFWorkbook workbook = new XSSFWorkbook()) {
56+
createExcelFile("test.xlsx", workbook);
57+
}
5458
}
5559

5660
@SneakyThrows
@@ -68,7 +72,7 @@ static Path getPath(String fileName) {
6872
}
6973

7074
@SneakyThrows
71-
static InputStream getInputStream(String fileName) {
75+
static ByteArrayInputStream getInputStream(String fileName) {
7276
Path path = getPath(fileName);
7377
try (InputStream is = Files.newInputStream(path)) {
7478
return new ByteArrayInputStream(is.readAllBytes()); // read all bytes here for release file's InputStream
@@ -132,7 +136,6 @@ static void createExcelFile(String fileName, org.apache.poi.ss.usermodel.Workboo
132136
row.createCell(1).setCellValue("b5");
133137
row.createCell(2).setCellValue("c6");
134138

135-
136139
workbook.write(fos);
137140
}
138141
}

0 commit comments

Comments
 (0)