[VIVO-1270] Update JSON-LD serialisations

This commit is contained in:
Graham Triggs 2016-09-09 19:56:50 +01:00
parent b8ef1046e2
commit 1a809c258d

View file

@ -168,10 +168,20 @@ public class SparqlQueryApiExecutorTest extends AbstractTestClass {
+ " <j.0:predicate rdf:resource=\"http://here.edu/object\"/>\n" + " <j.0:predicate rdf:resource=\"http://here.edu/object\"/>\n"
+ " </rdf:Description>\n" // + " </rdf:Description>\n" //
+ "</rdf:RDF>\n"; + "</rdf:RDF>\n";
private static final String CONSTRUCT_RESULT_JSONLD = "[" private static final String CONSTRUCT_RESULT_JSONLD = "{\n" +
+ "{\"@id\":\"http://here.edu/object\"}," " \"@id\" : \"http://here.edu/subject\",\n" +
+ "{\"@id\":\"http://here.edu/subject\",\"http://here.edu/predicate\":[{\"@id\":\"http://here.edu/object\"}]}" " \"predicate\" : \"http://here.edu/object\",\n" +
+ "]"; " \"@context\" : {\n" +
" \"predicate\" : {\n" +
" \"@id\" : \"http://here.edu/predicate\",\n" +
" \"@type\" : \"@id\"\n" +
" },\n" +
" \"rdf\" : \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n" +
" \"owl\" : \"http://www.w3.org/2002/07/owl#\",\n" +
" \"xsd\" : \"http://www.w3.org/2001/XMLSchema#\",\n" +
" \"rdfs\" : \"http://www.w3.org/2000/01/rdf-schema#\"\n" +
" }\n" +
"}\n";
private static final String DESCRIBE_ALL_QUERY = "DESCRIBE <http://here.edu/subject>"; private static final String DESCRIBE_ALL_QUERY = "DESCRIBE <http://here.edu/subject>";
private static final String DESCRIBE_RESULT_TEXT = "<http://here.edu/subject> " private static final String DESCRIBE_RESULT_TEXT = "<http://here.edu/subject> "
@ -202,10 +212,20 @@ public class SparqlQueryApiExecutorTest extends AbstractTestClass {
+ "<http://here.edu/subject>\n" // + "<http://here.edu/subject>\n" //
+ " <http://here.edu/predicate>\n" // + " <http://here.edu/predicate>\n" //
+ " <http://here.edu/object> .\n"; + " <http://here.edu/object> .\n";
private static final String DESCRIBE_RESULT_JSONLD = "[" private static final String DESCRIBE_RESULT_JSONLD = "{\n" +
+ "{\"@id\":\"http://here.edu/object\"}," " \"@id\" : \"http://here.edu/subject\",\n" +
+ "{\"@id\":\"http://here.edu/subject\",\"http://here.edu/predicate\":[{\"@id\":\"http://here.edu/object\"}]}" " \"predicate\" : \"http://here.edu/object\",\n" +
+ "]"; " \"@context\" : {\n" +
" \"predicate\" : {\n" +
" \"@id\" : \"http://here.edu/predicate\",\n" +
" \"@type\" : \"@id\"\n" +
" },\n" +
" \"rdf\" : \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n" +
" \"owl\" : \"http://www.w3.org/2002/07/owl#\",\n" +
" \"xsd\" : \"http://www.w3.org/2001/XMLSchema#\",\n" +
" \"rdfs\" : \"http://www.w3.org/2000/01/rdf-schema#\"\n" +
" }\n" +
"}\n";
private OntModel model; private OntModel model;
private RDFService rdfService; private RDFService rdfService;