org.eclipse.rdf4j.query.parser.serql.SeRQLQueryTestCase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdf4j-serql-testsuite Show documentation
Show all versions of rdf4j-serql-testsuite Show documentation
Test suite for the SeRQL query language
/*******************************************************************************
* Copyright (c) 2015 Eclipse RDF4J contributors, Aduna, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Distribution License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*******************************************************************************/
package org.eclipse.rdf4j.query.parser.serql;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import org.eclipse.rdf4j.common.io.FileUtil;
import org.eclipse.rdf4j.common.io.IOUtil;
import org.eclipse.rdf4j.common.iteration.Iterations;
import org.eclipse.rdf4j.model.Literal;
import org.eclipse.rdf4j.model.Statement;
import org.eclipse.rdf4j.model.util.Models;
import org.eclipse.rdf4j.query.BindingSet;
import org.eclipse.rdf4j.query.GraphQueryResult;
import org.eclipse.rdf4j.query.QueryLanguage;
import org.eclipse.rdf4j.query.TupleQueryResult;
import org.eclipse.rdf4j.repository.Repository;
import org.eclipse.rdf4j.repository.RepositoryConnection;
import org.eclipse.rdf4j.repository.sail.SailRepository;
import org.eclipse.rdf4j.repository.util.RepositoryUtil;
import org.eclipse.rdf4j.rio.RDFFormat;
import org.eclipse.rdf4j.rio.Rio;
import org.eclipse.rdf4j.sail.NotifyingSail;
import org.eclipse.rdf4j.sail.inferencer.fc.DirectTypeHierarchyInferencer;
import org.eclipse.rdf4j.sail.inferencer.fc.ForwardChainingRDFSInferencer;
import org.eclipse.rdf4j.sail.memory.MemoryStore;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
public abstract class SeRQLQueryTestCase extends TestCase {
static final Logger logger = LoggerFactory.getLogger(SeRQLQueryTestCase.class);
/*-----------*
* Constants *
*-----------*/
private static final String MANIFEST_FILE = "/testcases/SeRQL/construct/manifest.ttl";
/*-----------*
* Variables *
*-----------*/
private String dataFile;
private String queryFile;
private String resultFile;
private List graphNames;
private String entailment;
/*--------------*
* Constructors *
*--------------*/
public interface Factory {
Test createTest(String name, String dataFile, List graphNames, String queryFile, String resultFile,
String entailment);
}
/**
* Creates a new SeRQL Query test.
*/
public SeRQLQueryTestCase(String name, String dataFile, List graphNames, String queryFile,
String resultFile, String entailment) {
super(name);
this.dataFile = dataFile;
this.queryFile = queryFile;
this.resultFile = resultFile;
this.graphNames = graphNames;
this.entailment = entailment;
}
/*---------*
* Methods *
*---------*/
@Override
protected void runTest() throws Exception {
String query = readQuery();
Repository dataRep = createRepository(entailment);
RepositoryConnection dataCon = dataRep.getConnection();
// Add unnamed graph
dataCon.add(url(dataFile), base(dataFile),
Rio.getParserFormatForFileName(dataFile).orElseThrow(Rio.unsupportedFormat(dataFile)));
// add named graphs
for (String graphName : graphNames) {
dataCon.add(url(graphName), base(graphName),
Rio.getParserFormatForFileName(graphName).orElseThrow(Rio.unsupportedFormat(graphName)),
dataCon.getValueFactory().createIRI(graphName));
}
// Evaluate the query on the query data
GraphQueryResult result = dataCon.prepareGraphQuery(getQueryLanguage(), query).evaluate();
Collection actualStatements = Iterations.addAll(result, new ArrayList<>(1));
result.close();
dataCon.close();
dataRep.shutDown();
discardRepository(dataRep);
// Create a repository with the expected result data
Repository expectedResultRep = new SailRepository(newSail());
expectedResultRep.initialize();
RepositoryConnection erCon = expectedResultRep.getConnection();
erCon.add(url(resultFile), base(resultFile),
Rio.getParserFormatForFileName(resultFile).orElseThrow(Rio.unsupportedFormat(resultFile)));
Collection expectedStatements = Iterations.addAll(erCon.getStatements(null, null, null, false),
new ArrayList<>(1));
erCon.close();
expectedResultRep.shutDown();
discardRepository(expectedResultRep);
// Compare query result to expected data
if (!Models.isomorphic(actualStatements, expectedStatements)) {
// Found differences between expected and actual results
StringBuilder message = new StringBuilder(128);
Collection extends Statement> diff = RepositoryUtil.difference(actualStatements, expectedStatements);
message.append("\n=======Diff: ");
message.append(getName());
message.append("========================\n");
if (!diff.isEmpty()) {
message.append("Unexpected statements in result: \n");
for (Statement st : diff) {
message.append(st.toString());
message.append("\n");
}
message.append("=============");
for (int i = 0; i < getName().length(); i++) {
message.append("=");
}
message.append("========================\n");
}
diff = RepositoryUtil.difference(expectedStatements, actualStatements);
if (!diff.isEmpty()) {
message.append("Statements missing in result: \n");
for (Statement st : diff) {
message.append(st.toString());
message.append("\n");
}
message.append("=============");
for (int i = 0; i < getName().length(); i++) {
message.append("=");
}
message.append("========================\n");
}
logger.error(message.toString());
fail(message.toString());
}
}
protected Repository createRepository(String entailment) throws Exception {
Repository dataRep;
if ("RDF".equals(entailment)) {
dataRep = newRepository();
} else {
dataRep = newRepository(entailment);
}
dataRep.initialize();
RepositoryConnection con = dataRep.getConnection();
try {
con.clear();
con.clearNamespaces();
} finally {
con.close();
}
return dataRep;
}
protected Repository newRepository() throws Exception {
return new SailRepository(newSail());
}
protected Repository newRepository(String entailment) throws Exception {
return new SailRepository(createSail(entailment));
}
protected NotifyingSail createSail(String entailment) throws Exception {
NotifyingSail sail = newSail();
if ("RDF".equals(entailment)) {
// do not add inferencers
} else if ("RDFS".equals(entailment)) {
sail = new ForwardChainingRDFSInferencer(sail);
} else if ("RDFS-VP".equals(entailment)) {
sail = new ForwardChainingRDFSInferencer(sail);
sail = new DirectTypeHierarchyInferencer(sail);
} else {
sail.shutDown();
fail("Invalid value for entailment level:" + entailment);
}
return sail;
}
protected abstract NotifyingSail newSail() throws Exception;
protected void discardRepository(Repository rep) {
File dataDir = rep.getDataDir();
if (dataDir != null && dataDir.isDirectory()) {
try {
FileUtil.deleteDir(dataDir);
} catch (IOException e) {
}
}
}
private String readQuery() throws IOException {
InputStream stream = url(queryFile).openStream();
try {
return IOUtil.readString(new InputStreamReader(stream, StandardCharsets.UTF_8));
} finally {
stream.close();
}
}
/*--------------*
* Test methods *
*--------------*/
public static Test suite(Factory factory) throws Exception {
TestSuite suite = new TestSuite(factory.getClass().getName());
// Read manifest and create declared test cases
Repository manifestRep = new SailRepository(new MemoryStore());
manifestRep.initialize();
RepositoryConnection con = manifestRep.getConnection();
URL manifestURL = SeRQLQueryTestCase.class.getResource(MANIFEST_FILE);
RDFFormat format = Rio.getParserFormatForFileName(MANIFEST_FILE).orElse(RDFFormat.TURTLE);
con.add(manifestURL, base(manifestURL.toExternalForm()), format);
String query = "SELECT testName, entailment, input, query, result " + "FROM {} mf:name {testName};"
+ " mf:result {result}; " + " tck:entailment {entailment}; "
+ " mf:action {} qt:query {query}; " + " qt:data {input} "
+ "USING NAMESPACE " + " mf = , "
+ " qt = , "
+ " tck = ";
TupleQueryResult tests = con.prepareTupleQuery(QueryLanguage.SERQL, query).evaluate();
while (tests.hasNext()) {
BindingSet testBindings = tests.next();
String testName = ((Literal) testBindings.getValue("testName")).getLabel();
String inputFile = testBindings.getValue("input").toString();
String queryFile = testBindings.getValue("query").toString();
String resultFile = testBindings.getValue("result").toString();
String entailment = ((Literal) testBindings.getValue("entailment")).getLabel();
query = "SELECT graph " + "FROM {} mf:name {testName}; " + " mf:action {} qt:graphData {graph} "
+ "WHERE testName = \"" + SeRQLUtil.encodeString(testName) + "\" " + "USING NAMESPACE"
+ " mf = ,"
+ " qt = ";
List graphNames = new ArrayList<>();
TupleQueryResult graphs = con.prepareTupleQuery(QueryLanguage.SERQL, query).evaluate();
while (graphs.hasNext()) {
BindingSet graphBindings = graphs.next();
graphNames.add(graphBindings.getValue("graph").toString());
}
graphs.close();
if (testName.startsWith("test-029:")) {
logger.error("test-029 SKIPPED in {}", SeRQLQueryTestCase.class.getName());
continue;
}
suite.addTest(factory.createTest(testName, inputFile, graphNames, queryFile, resultFile, entailment));
}
tests.close();
con.close();
manifestRep.shutDown();
return suite;
}
private static URL url(String uri) throws MalformedURLException {
return new URL(uri);
}
private static String base(String uri) {
return uri;
}
protected abstract QueryLanguage getQueryLanguage();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy