/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.jena.reasoner.test; import junit.framework.TestCase; import junit.framework.TestSuite; import org.apache.jena.ontology.OntModel ; import org.apache.jena.ontology.OntModelSpec ; import org.apache.jena.rdf.model.* ; import org.apache.jena.reasoner.ReasonerRegistry ; import org.apache.jena.util.PrintUtil ; import org.apache.jena.vocabulary.RDFS ; /** * Test machinery in InfModel which is not associated with any * particular reasoner. */ public class TestInfModel extends TestCase { /** * Boilerplate for junit */ public TestInfModel( String name ) { super( name ); } /** * Boilerplate for junit. * This is its own test suite */ public static TestSuite suite() { return new TestSuite(TestInfModel.class); } /** * Check interface extensions which had an earlier bug with null handling */ public void testListWithPosits() { String NS = PrintUtil.egNS; Model data = ModelFactory.createDefaultModel(); Resource c1 = data.createResource(NS + "C1"); Resource c2 = data.createResource(NS + "C2"); Resource c3 = data.createResource(NS + "C3"); data.add(c2, RDFS.subClassOf, c3); Model premise = ModelFactory.createDefaultModel(); premise.add(c1, RDFS.subClassOf, c2); InfModel im = ModelFactory.createInfModel(ReasonerRegistry.getRDFSReasoner(), data); TestUtil.assertIteratorValues(this, im.listStatements(c1, RDFS.subClassOf, null, premise), new Object[] { data.createStatement(c1, RDFS.subClassOf, c2), data.createStatement(c1, RDFS.subClassOf, c3), data.createStatement(c1, RDFS.subClassOf, c1) }); OntModel om = ModelFactory.createOntologyModel(OntModelSpec.RDFS_MEM_RDFS_INF, data); TestUtil.assertIteratorValues(this, om.listStatements(c1, RDFS.subClassOf, null, premise), new Object[] { data.createStatement(c1, RDFS.subClassOf, c2), data.createStatement(c1, RDFS.subClassOf, c3), data.createStatement(c1, RDFS.subClassOf, c1) }); } }