test for ads 1
This commit is contained in:
parent
ae13edb870
commit
d0f763f33e
|
@ -185,7 +185,7 @@ WHERE {
|
||||||
?native_period skos:prefLabel ?native_label .
|
?native_period skos:prefLabel ?native_label .
|
||||||
GRAPH <https://ariadne-infrastructure.eu/ariadneplus::ads::periodo> {
|
GRAPH <https://ariadne-infrastructure.eu/ariadneplus::ads::periodo> {
|
||||||
?periodO skos:altLabel ?lowercase_native_label .
|
?periodO skos:altLabel ?lowercase_native_label .
|
||||||
?periodO skos:inScheme <http://n2t.net/ark:/99152/p0kh9ds> .
|
?periodO skos:inScheme <http://n2t.net/ark:/99152/p0xxt6t> .
|
||||||
?periodO time:intervalStartedBy ?intervalStartedBy .
|
?periodO time:intervalStartedBy ?intervalStartedBy .
|
||||||
?intervalStartedBy skos:prefLabel ?temporalFrom .
|
?intervalStartedBy skos:prefLabel ?temporalFrom .
|
||||||
?periodO time:intervalFinishedBy ?intervalFinishedBy .
|
?periodO time:intervalFinishedBy ?intervalFinishedBy .
|
||||||
|
@ -193,4 +193,46 @@ WHERE {
|
||||||
BIND(ucase(?lowercase_native_label) as ?native_label)
|
BIND(ucase(?lowercase_native_label) as ?native_label)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
|
||||||
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
||||||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
INSERT {
|
||||||
|
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::ads::1> {
|
||||||
|
?c aocat:has_name ?l .
|
||||||
|
}
|
||||||
|
}
|
||||||
|
WHERE {
|
||||||
|
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::ads::1> {
|
||||||
|
?s rdf:type aocat:AO_Individual_Data_Resource .
|
||||||
|
?s aocat:has_owner ?c .
|
||||||
|
?c rdfs:label ?l .
|
||||||
|
MINUS {
|
||||||
|
?s rdf:type aocat:AO_Individual_Data_Resource .
|
||||||
|
?s aocat:has_owner ?c .
|
||||||
|
?c aocat:has_name ?n .
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
|
||||||
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
||||||
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
|
INSERT {
|
||||||
|
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::ads::1> {
|
||||||
|
?c aocat:has_name ?l .
|
||||||
|
}
|
||||||
|
}
|
||||||
|
WHERE {
|
||||||
|
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::ads::1> {
|
||||||
|
?s rdf:type aocat:AO_Individual_Data_Resource .
|
||||||
|
?s aocat:has_publisher ?c .
|
||||||
|
?c rdfs:label ?l .
|
||||||
|
MINUS {
|
||||||
|
?s rdf:type aocat:AO_Individual_Data_Resource .
|
||||||
|
?s aocat:has_publisher ?c .
|
||||||
|
?c aocat:has_name ?n .
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
|
@ -393,6 +393,15 @@ public class GraphDbReaderAndESIndexTest {
|
||||||
readAndIndexTest(isRecord, recordId, datasource, collectionId);
|
readAndIndexTest(isRecord, recordId, datasource, collectionId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void uploadAdsScotlandAATTest() throws Exception {
|
||||||
|
boolean isRecord = true;
|
||||||
|
String recordId = "https://ariadne-infrastructure.eu/aocat/Resource/1039819E-583F-3856-8463-BB58523DB0F9";
|
||||||
|
String datasource = "ads";
|
||||||
|
String collectionId = "1";
|
||||||
|
readAndIndexTest(isRecord, recordId, datasource, collectionId);
|
||||||
|
}
|
||||||
|
|
||||||
private void readAndIndexTest(boolean isRecord, String recordId, String datasource, String collectionId) throws Exception {
|
private void readAndIndexTest(boolean isRecord, String recordId, String datasource, String collectionId) throws Exception {
|
||||||
final ClassPathResource resource = new ClassPathResource("application.properties");
|
final ClassPathResource resource = new ClassPathResource("application.properties");
|
||||||
Properties appProps = new Properties();
|
Properties appProps = new Properties();
|
||||||
|
|
Loading…
Reference in New Issue