/* * #! * Ontopia Engine * #- * Copyright (C) 2001 - 2013 The Ontopia Project * #- * Licensed 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 net.ontopia.topicmaps.utils.rdf; import com.hp.hpl.jena.rdf.model.Model; import com.hp.hpl.jena.rdf.model.ModelFactory; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import net.ontopia.utils.OntopiaRuntimeException; import net.ontopia.topicmaps.core.TopicMapIF; import net.ontopia.topicmaps.utils.deciders.TMDecider; import net.ontopia.topicmaps.utils.ImportExportUtils; import net.ontopia.utils.TestFileUtils; import net.ontopia.utils.StreamUtils; import java.util.List; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; @RunWith(Parameterized.class) public class RDFWriterFilterTestCase { private final static String testdataDirectory = "tm2rdf"; @Parameters public static List generateTests() { return TestFileUtils.getTestInputFiles(testdataDirectory, "filter-in", ".ltm|.rdf|.xtm"); } // --- Canonical test case class private String base; private String filename; public RDFWriterFilterTestCase(String root, String filename) { this.filename = filename; this.base = TestFileUtils.getTestdataOutputDirectory() + testdataDirectory; } @Test public void testFile() throws IOException { // setup TestFileUtils.verifyDirectory(base, "out"); TestFileUtils.verifyDirectory(base, "filter-tmp"); String in = TestFileUtils.getTestInputFile(testdataDirectory, "filter-in", filename); String tmp = base + File.separator + "filter-tmp" + File.separator + filename + ".rdf"; String bline = TestFileUtils.getTestInputFile(testdataDirectory, "filter-baseline", filename + ".rdf"); // Import TopicMapIF tm = ImportExportUtils.getReader(in).read(); // Export the topic map to rdf RDFTopicMapWriter rdfWriter = new RDFTopicMapWriter(new FileOutputStream( tmp)); rdfWriter.setFilter(new TMDecider()); try { rdfWriter.write(tm); } catch (Exception e) { throw new OntopiaRuntimeException("Exception in RDF file '" + tmp, e); } // read in base line and export Model baseline = ModelFactory.createDefaultModel().read(StreamUtils.getInputStream(bline), bline, "RDF/XML"); Model result = ModelFactory.createDefaultModel().read(new FileInputStream(tmp), "file:" + tmp, "RDF/XML"); // compare results Assert.assertTrue("test file " + filename + " produced non-isomorphic model", result.isIsomorphicWith(baseline)); } }