thrown exception to test

master
Francesco Mangiacrapa 4 years ago
parent bfbf0e4c65
commit 81a0a81e1e

@ -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;
}
}

@ -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()) {
List<NamespaceCategory> categs = reader.getListOfNamespaceCategories();
for (NamespaceCategory namespaceCategory : categs) {
logger.trace("\n\n "+ ++i +".) Category: "+namespaceCategory);
}
if(mt==null)
continue;
i = 0;
for (MetadataProfile mt : reader.getListOfMetadataProfiles()) {
MetadataFormat metadataFormat = reader.getMetadataFormatForMetadataProfile(mt);
logger.trace("\n\n "+ ++i +".) Metadata source: "+metadataFormat.getMetadataSource().substring(0, 100));
}
if(mt==null)
continue;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
MetadataFormat metadataFormat = reader.getMetadataFormatForMetadataProfile(mt);
logger.trace("\n\n "+ ++i +".) Metadata source: "+metadataFormat.getMetadataSource().substring(0, 100));
}
}

Loading…
Cancel
Save