use of eu.europeana.metis.schema.jibx.TimeSpanType in project metis-framework by europeana.
the class LanguageClassifierTest method testCreateLanguageTagStatistics.
@Test
void testCreateLanguageTagStatistics() {
// Create the RDF
final RdfWrapper rdf = mock(RdfWrapper.class);
// Create the contextual classes
final PlaceType place1 = new PlaceType();
place1.setAbout("place about 1");
final PlaceType place2 = new PlaceType();
place2.setAbout("place about 2");
final TimeSpanType timeSpan = new TimeSpanType();
timeSpan.setAbout("time span about");
final Concept concept = new Concept();
concept.setAbout("concept about");
doReturn(Arrays.asList(place1, place2)).when(rdf).getPlaces();
doReturn(Collections.singletonList(timeSpan)).when(rdf).getTimeSpans();
doReturn(Collections.singletonList(concept)).when(rdf).getConcepts();
// Create proxies
final ProxyType providerProxy1 = new ProxyType();
providerProxy1.setEuropeanaProxy(new EuropeanaProxy());
providerProxy1.getEuropeanaProxy().setEuropeanaProxy(false);
final ProxyType providerProxy2 = new ProxyType();
providerProxy2.setEuropeanaProxy(new EuropeanaProxy());
providerProxy2.getEuropeanaProxy().setEuropeanaProxy(false);
doReturn(Arrays.asList(providerProxy1, providerProxy2, null)).when(rdf).getProviderProxies();
// Test the method.
final LanguageClassifier classifier = spy(new LanguageClassifier());
final LanguageTagStatistics result = classifier.createLanguageTagStatistics(rdf);
verify(classifier, times(1)).addProxyToStatistics(providerProxy1, result);
verify(classifier, times(1)).addProxyToStatistics(providerProxy2, result);
verify(classifier, times(2)).addProxyToStatistics(any(), any());
}
use of eu.europeana.metis.schema.jibx.TimeSpanType in project metis-framework by europeana.
the class ContextualClassesBreakdownClassifierTest method countQualifyingContextualClassTypes.
@Test
void countQualifyingContextualClassTypes() {
// Create mocks of the classifier and test empty object.
final ContextualClassesClassifier classifier = spy(new ContextualClassesClassifier());
final RdfWrapper entity = mock(RdfWrapper.class);
assertEquals(0, classifier.countQualifyingContextualClassTypes(entity).getCompleteContextualResources());
// Create the contextual objects.
final List<AgentType> agents = Collections.singletonList(new AgentType());
final List<Concept> concepts = Collections.singletonList(new Concept());
final List<PlaceType> places = Arrays.asList(new PlaceType(), new PlaceType());
final List<TimeSpanType> timeSpans = Collections.singletonList(new TimeSpanType());
doReturn(agents).when(entity).getAgents();
doReturn(concepts).when(entity).getConcepts();
doReturn(places).when(entity).getPlaces();
doReturn(timeSpans).when(entity).getTimeSpans();
// Set the about values in the contextual objects
final String agentAbout = "agentAbout";
final String conceptAbout = "conceptAbout";
final String linkedPlaceAbout = "linkedPlaceAbout";
final String unlinkedPlaceAbout = "unlinkedPlaceAbout";
final String existingTimespanAbout = "existingTimeSpanAbout";
final String absentTimespanAbout = "absentTimeSpanAbout";
agents.get(0).setAbout(agentAbout);
concepts.get(0).setAbout(conceptAbout);
places.get(0).setAbout(linkedPlaceAbout);
places.get(1).setAbout(unlinkedPlaceAbout);
timeSpans.get(0).setAbout(existingTimespanAbout);
// Create links to most objects and check that they are indeed obtainable.
final List<ProxyType> proxies = Arrays.asList(new ProxyType(), new ProxyType());
doReturn(proxies).when(entity).getProviderProxies();
proxies.get(0).setSameAList(Arrays.asList(new SameAs(), new SameAs(), new SameAs()));
proxies.get(1).setSameAList(Arrays.asList(new SameAs(), new SameAs(), new SameAs()));
proxies.get(0).getSameAList().get(0).setResource(agentAbout);
proxies.get(0).getSameAList().get(1).setResource(conceptAbout);
proxies.get(0).getSameAList().get(2).setResource(linkedPlaceAbout);
proxies.get(1).getSameAList().get(0).setResource(agentAbout);
proxies.get(1).getSameAList().get(1).setResource(existingTimespanAbout);
proxies.get(1).getSameAList().get(2).setResource(absentTimespanAbout);
assertEquals(new HashSet<>(Arrays.asList(agentAbout, conceptAbout, linkedPlaceAbout)), ResourceLinkFromProxy.SAME_AS.getLinkAndValueGetter().getLinks(proxies.get(0)).collect(Collectors.toSet()));
assertEquals(new HashSet<>(Arrays.asList(agentAbout, existingTimespanAbout, absentTimespanAbout)), ResourceLinkFromProxy.SAME_AS.getLinkAndValueGetter().getLinks(proxies.get(1)).collect(Collectors.toSet()));
// Do the tests for no qualifying entities (except the unlinked one).
doReturn(false).when(classifier).entityQualifies(agents.get(0));
doReturn(false).when(classifier).entityQualifies(concepts.get(0));
doReturn(false).when(classifier).entityQualifies(places.get(0));
doReturn(true).when(classifier).entityQualifies(places.get(1));
doReturn(false).when(classifier).entityQualifies(timeSpans.get(0));
assertEquals(0, classifier.countQualifyingContextualClassTypes(entity).getCompleteContextualResources());
// Make some of them qualifying and do the tests again.
doReturn(true).when(classifier).entityQualifies(agents.get(0));
assertEquals(1, classifier.countQualifyingContextualClassTypes(entity).getCompleteContextualResources());
doReturn(true).when(classifier).entityQualifies(concepts.get(0));
assertEquals(2, classifier.countQualifyingContextualClassTypes(entity).getCompleteContextualResources());
doReturn(true).when(classifier).entityQualifies(places.get(0));
assertEquals(3, classifier.countQualifyingContextualClassTypes(entity).getCompleteContextualResources());
doReturn(true).when(classifier).entityQualifies(timeSpans.get(0));
assertEquals(4, classifier.countQualifyingContextualClassTypes(entity).getCompleteContextualResources());
// Make some of them non-qualifying and do the tests again.
doReturn(false).when(classifier).entityQualifies(agents.get(0));
assertEquals(3, classifier.countQualifyingContextualClassTypes(entity).getCompleteContextualResources());
doReturn(false).when(classifier).entityQualifies(concepts.get(0));
assertEquals(2, classifier.countQualifyingContextualClassTypes(entity).getCompleteContextualResources());
doReturn(false).when(classifier).entityQualifies(places.get(0));
assertEquals(1, classifier.countQualifyingContextualClassTypes(entity).getCompleteContextualResources());
doReturn(false).when(classifier).entityQualifies(timeSpans.get(0));
assertEquals(0, classifier.countQualifyingContextualClassTypes(entity).getCompleteContextualResources());
}
use of eu.europeana.metis.schema.jibx.TimeSpanType in project metis-framework by europeana.
the class TimespanFieldInputTest method testTimespan.
@Test
void testTimespan() {
TimeSpanType timespan = new TimeSpanType();
timespan.setAbout("test about");
List<AltLabel> altLabelList = new ArrayList<>();
AltLabel altLabel = new AltLabel();
Lang lang = new Lang();
lang.setLang("en");
altLabel.setLang(lang);
altLabel.setString("test alt label");
assertNotNull(altLabel);
altLabelList.add(altLabel);
timespan.setAltLabelList(altLabelList);
Begin begin = new Begin();
begin.setString("test begin");
timespan.setBegin(begin);
End end = new End();
end.setString("test end");
timespan.setEnd(end);
List<Note> noteList = new ArrayList<>();
Note note = new Note();
note.setString("test note");
assertNotNull(note);
noteList.add(note);
timespan.setNoteList(noteList);
List<PrefLabel> prefLabelList = new ArrayList<>();
PrefLabel prefLabel = new PrefLabel();
prefLabel.setLang(lang);
prefLabel.setString("test pred label");
assertNotNull(prefLabel);
prefLabelList.add(prefLabel);
timespan.setPrefLabelList(prefLabelList);
List<HiddenLabel> hiddelLabelList = new ArrayList<>();
HiddenLabel hiddenLabel = new HiddenLabel();
hiddenLabel.setLang(lang);
hiddenLabel.setString("test hidden label");
assertNotNull(hiddenLabel);
hiddelLabelList.add(hiddenLabel);
timespan.setHiddenLabelList(hiddelLabelList);
List<IsPartOf> isPartOfList = new ArrayList<>();
IsPartOf isPartOf = new IsPartOf();
eu.europeana.metis.schema.jibx.ResourceOrLiteralType.Resource isPartOfResource = new eu.europeana.metis.schema.jibx.ResourceOrLiteralType.Resource();
isPartOfResource.setResource("test resource");
isPartOf.setResource(isPartOfResource);
isPartOfList.add(isPartOf);
timespan.setIsPartOfList(isPartOfList);
TimespanImpl timespanImpl = new TimespanImpl();
timespanImpl.setAbout(timespan.getAbout());
// create mongo
RecordDao mongoServerMock = mock(RecordDao.class);
Datastore datastoreMock = mock(Datastore.class);
@SuppressWarnings("unchecked") Query<TimespanImpl> queryMock = mock(Query.class);
when(mongoServerMock.getDatastore()).thenReturn(datastoreMock);
when(datastoreMock.find(TimespanImpl.class)).thenReturn(queryMock);
when(datastoreMock.save(timespanImpl)).thenReturn(timespanImpl);
when(queryMock.filter(Filters.eq("about", timespan.getAbout()))).thenReturn(queryMock);
TimespanImpl timespanMongo = new TimespanFieldInput().apply(timespan);
mongoServerMock.getDatastore().save(timespanMongo);
assertEquals(timespan.getAbout(), timespanMongo.getAbout());
assertEquals(timespan.getBegin().getString(), timespanMongo.getBegin().values().iterator().next().get(0));
assertEquals(timespan.getEnd().getString(), timespanMongo.getEnd().values().iterator().next().get(0));
assertEquals(timespan.getNoteList().get(0).getString(), timespanMongo.getNote().values().iterator().next().get(0));
assertTrue(timespanMongo.getAltLabel().containsKey(timespan.getAltLabelList().get(0).getLang().getLang()));
assertTrue(timespanMongo.getPrefLabel().containsKey(timespan.getPrefLabelList().get(0).getLang().getLang()));
assertTrue(timespanMongo.getHiddenLabel().containsKey(timespan.getHiddenLabelList().get(0).getLang().getLang()));
assertEquals(timespan.getAltLabelList().get(0).getString(), timespanMongo.getAltLabel().values().iterator().next().get(0));
assertEquals(timespan.getPrefLabelList().get(0).getString(), timespanMongo.getPrefLabel().values().iterator().next().get(0));
assertEquals(timespan.getIsPartOfList().get(0).getResource().getResource(), timespanMongo.getIsPartOf().values().iterator().next().get(0));
}
use of eu.europeana.metis.schema.jibx.TimeSpanType in project metis-framework by europeana.
the class LanguageTagStatisticsTest method testConstruction.
@Test
void testConstruction() {
// Define some about values
final String about1 = "about1";
final String about2 = "about2";
final String about3 = "about3";
final String about4 = "about4";
// Create contextual classes for later use. They are all valid to begin with.
final PlaceType place1 = new PlaceType();
place1.setPrefLabelList(Collections.singletonList(createPrefLabel("lang1", "value1")));
place1.setAbout(about1);
final PlaceType place2 = new PlaceType();
place2.setPrefLabelList(Collections.singletonList(createPrefLabel("lang2", "value2")));
place2.setAbout(about2);
final TimeSpanType timeSpan = new TimeSpanType();
timeSpan.setPrefLabelList(Collections.singletonList(createPrefLabel("lang3", "value3")));
timeSpan.setAbout(about3);
final Concept concept = new Concept();
final Concept.Choice choiceA = new Concept.Choice();
choiceA.setPrefLabel(createPrefLabel("lang4a", "value4a"));
final Concept.Choice choiceB = new Concept.Choice();
choiceB.setPrefLabel(createPrefLabel("lang4b", "value4b"));
concept.setChoiceList(Arrays.asList(choiceA, choiceB));
concept.setAbout(about4);
// Test that they are all represented.
final LanguageTagStatistics statistics1 = new LanguageTagStatistics(Arrays.asList(place1, place2), Collections.singletonList(timeSpan), Collections.singletonList(concept));
assertEquals(new HashSet<>(Arrays.asList(about1, about2, about3, about4)), statistics1.getContextualClassesWithLanguage());
assertTrue(statistics1.containsContextualClass(about1));
assertTrue(statistics1.containsContextualClass(about2));
assertTrue(statistics1.containsContextualClass(about3));
assertTrue(statistics1.containsContextualClass(about4));
// Now make some preflabels invalid.
place1.getPrefLabelList().get(0).setLang(new Lang());
place2.getPrefLabelList().get(0).setLang(null);
timeSpan.getPrefLabelList().get(0).setString(" ");
concept.getChoiceList().get(0).getPrefLabel().getLang().setLang(" ");
final LanguageTagStatistics statistics2 = new LanguageTagStatistics(Arrays.asList(place1, place2), Collections.singletonList(timeSpan), Collections.singletonList(concept));
assertEquals(Collections.singleton(about4), statistics2.getContextualClassesWithLanguage());
concept.getChoiceList().get(1).getPrefLabel().setString(null);
final LanguageTagStatistics statistics3 = new LanguageTagStatistics(Arrays.asList(place1, place2), Collections.singletonList(timeSpan), Collections.singletonList(concept));
assertEquals(Collections.emptySet(), statistics3.getContextualClassesWithLanguage());
// Now make some preflabel collections invalid
place1.setPrefLabelList(Collections.emptyList());
place2.setPrefLabelList(null);
concept.getChoiceList().forEach(Concept.Choice::clearChoiceListSelect);
concept.getChoiceList().get(0).setAltLabel(new AltLabel());
concept.getChoiceList().get(0).getAltLabel().setString("altLabelValue");
concept.getChoiceList().get(0).getAltLabel().setLang(createLang("altLabelLanguage"));
concept.getChoiceList().get(1).setAltLabel(null);
final LanguageTagStatistics statistics4 = new LanguageTagStatistics(Arrays.asList(place1, place2), Collections.singletonList(timeSpan), Collections.singletonList(concept));
assertEquals(Collections.emptySet(), statistics4.getContextualClassesWithLanguage());
concept.setChoiceList(null);
final LanguageTagStatistics statistics5 = new LanguageTagStatistics(Arrays.asList(place1, place2), Collections.singletonList(timeSpan), Collections.singletonList(concept));
assertEquals(Collections.emptySet(), statistics5.getContextualClassesWithLanguage());
}
use of eu.europeana.metis.schema.jibx.TimeSpanType in project metis-framework by europeana.
the class DereferenceUtilsTest method testTimeSpanListExtractedValues.
@Test
void testTimeSpanListExtractedValues() {
RDF rdf = new RDF();
ProxyType proxy = new ProxyType();
ArrayList<ProxyType> proxyList = new ArrayList<>();
proxyList.add(proxy);
rdf.setProxyList(proxyList);
TimeSpanType timeSpan = new TimeSpanType();
timeSpan.setAbout("http://dummy1.dum");
HasPart hasPart = new HasPart();
Resource resource3 = new Resource();
resource3.setResource("http://dummy2.dum");
hasPart.setResource(resource3);
ArrayList<HasPart> hasPartList = new ArrayList<>();
hasPartList.add(hasPart);
timeSpan.setHasPartList(hasPartList);
IsPartOf isPartOf = new IsPartOf();
ResourceOrLiteralType.Resource resource4 = new ResourceOrLiteralType.Resource();
resource4.setResource("http://dummy4.dum");
isPartOf.setResource(resource4);
ArrayList<IsPartOf> isPartOfList = new ArrayList<>();
isPartOfList.add(isPartOf);
timeSpan.setIsPartOfList(isPartOfList);
SameAs sameAs = new SameAs();
sameAs.setResource("http://dummy5.dum");
ArrayList<SameAs> sameAsList = new ArrayList<>();
sameAsList.add(sameAs);
timeSpan.setSameAList(sameAsList);
// Should be rejected
Note note = new Note();
note.setString("Note");
ArrayList<Note> noteList = new ArrayList<>();
noteList.add(note);
timeSpan.setNoteList(noteList);
ArrayList<TimeSpanType> timeSpanList = new ArrayList<>();
timeSpanList.add(timeSpan);
rdf.setTimeSpanList(timeSpanList);
Set<String> result = DereferenceUtils.extractReferencesForDereferencing(rdf);
assertNotNull(result);
assertEquals(1, result.size());
assertTrue(result.contains("http://dummy4.dum"));
}
Aggregations