This commit is contained in:
Miriam Baglioni 2021-05-20 15:54:44 +02:00
parent dc0ad8d2e0
commit 052c837843
2 changed files with 6 additions and 4 deletions

View File

@ -32,7 +32,7 @@ public class EXCELParser {
XSSFSheet sheet = wb.getSheet(sheetName); XSSFSheet sheet = wb.getSheet(sheetName);
if(sheetName == null){ if (sheetName == null) {
throw new RuntimeException("Sheet name " + sheetName + " not present in current file"); throw new RuntimeException("Sheet name " + sheetName + " not present in current file");
} }

View File

@ -21,7 +21,7 @@ public class EXCELParserTest {
private static Path workingDir; private static Path workingDir;
private HttpConnector httpConnector = new HttpConnector(); private HttpConnector httpConnector = new HttpConnector();
private static final String URL = "http://cordis.europa.eu/data/reference/cordisref-H2020topics.xlsx"; private static final String URL = "https://cordis.europa.eu/data/reference/cordisref-h2020topics.xlsx";
@BeforeAll @BeforeAll
public static void beforeAll() throws IOException { public static void beforeAll() throws IOException {
@ -36,9 +36,11 @@ public class EXCELParserTest {
EXCELParser excelParser = new EXCELParser(); EXCELParser excelParser = new EXCELParser();
List<Object> pl = excelParser List<Object> pl = excelParser
.parse(httpConnector.getInputSourceAsStream(URL), "eu.dnetlib.dhp.actionmanager.project.utils.ExcelTopic"); .parse(
httpConnector.getInputSourceAsStream(URL), "eu.dnetlib.dhp.actionmanager.project.utils.EXCELTopic",
"Topics");
Assertions.assertEquals(3837, pl.size()); Assertions.assertEquals(3878, pl.size());
} }
} }