thrown exception to test

This commit is contained in:
Francesco Mangiacrapa 2020-10-15 13:34:38 +02:00
parent bfbf0e4c65
commit 81a0a81e1e
2 changed files with 27 additions and 28 deletions

View File

@ -118,8 +118,9 @@ public class MetadataProfileReader implements MetadataProfileDiscovery {
/**
* Read namespaces.
* @throws Exception
*/
private void readNamespaces() {
private void readNamespaces() throws Exception {
try {
if (namespaceCategories == null || namespaceCategories.isEmpty()) {
@ -132,6 +133,7 @@ public class MetadataProfileReader implements MetadataProfileDiscovery {
}
} catch (Exception e) {
logger.debug("An error occurred during read namespaces for categories: ", e);
throw e;
}
}

View File

@ -27,40 +27,37 @@ public class TestDataCatalogueMetadataFormatReader {
/**
* Test.
* @throws Exception
*/
@Test
public void test() {
try {
public void test() throws Exception {
// String scopeString = "/gcube/devsec/devVRE";
// String grMetadataProfileSecondaryType = "DataCatalogueMetadata";
String scopeString = "/gcube/devsec/devVRE";
String grMetadataProfileSecondaryType = "GeoNaMetadata";
ScopeProvider.instance.set(scopeString);
MetadataProfileReader reader = new MetadataProfileReader(grMetadataProfileSecondaryType);
int i = 0;
String scopeString = "/gcube/devsec/devVRE";
String grMetadataProfileSecondaryType = "GeoNaMetadata";
ScopeProvider.instance.set(scopeString);
MetadataProfileReader reader = new MetadataProfileReader(grMetadataProfileSecondaryType);
int i = 0;
List<NamespaceCategory> categs = reader.getListOfNamespaceCategories();
for (NamespaceCategory namespaceCategory : categs) {
logger.trace("\n\n "+ ++i +".) Category: "+namespaceCategory);
}
i = 0;
for (MetadataProfile mt : reader.getListOfMetadataProfiles()) {
if(mt==null)
continue;
MetadataFormat metadataFormat = reader.getMetadataFormatForMetadataProfile(mt);
logger.trace("\n\n "+ ++i +".) Metadata source: "+metadataFormat.getMetadataSource().substring(0, 100));
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
List<NamespaceCategory> categs = reader.getListOfNamespaceCategories();
for (NamespaceCategory namespaceCategory : categs) {
logger.trace("\n\n "+ ++i +".) Category: "+namespaceCategory);
}
i = 0;
for (MetadataProfile mt : reader.getListOfMetadataProfiles()) {
if(mt==null)
continue;
MetadataFormat metadataFormat = reader.getMetadataFormatForMetadataProfile(mt);
logger.trace("\n\n "+ ++i +".) Metadata source: "+metadataFormat.getMetadataSource().substring(0, 100));
}
}