Skip to content

Commit e074111

Browse files
committed
add DefaultReportPageFactory tests
1 parent 36d7b8c commit e074111

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

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

+16
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,22 @@ void create_namedSheetForCsvByInputStream_ok(String fileName) {
129129
assertNotNull(factory.create(is, "SheetB"));
130130
}
131131

132+
// Test unexpected type sheet id
133+
134+
@ParameterizedTest
135+
@ValueSource(strings = {"test.xls", "test.xlsx", "test.xml", "test.txt", "test.bin"})
136+
void create_unknownTypeSheetId_exception(String fileName) {
137+
Path path = getPath(fileName);
138+
assertThrows(ReportPageInstantiationException.class, () -> factory.doCreate(path, new Object()));
139+
}
140+
141+
@ParameterizedTest
142+
@ValueSource(strings = {"test.csv"})
143+
void create_csvWithUnknownTypeSheetId_ok(String fileName) {
144+
Path path = getPath(fileName);
145+
assertNotNull(factory.doCreate(path, new Object()));
146+
}
147+
132148
// test InputStream closing
133149

134150
@Test

0 commit comments

Comments
 (0)