blob: eedb3865b3f0900e2273b78ef4590e6fd51b9ac5 [file] [log] [blame]
/*
* 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.util;
import java.util.Iterator;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.apache.jena.rdf.model.Model ;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** TestLocationMapper
*/
@SuppressWarnings("deprecation")
public class TestLocationMapper extends TestCase
{
static Logger log = LoggerFactory.getLogger(TestLocationMapper.class) ;
static final String testingDir = TestFileManager.testingDir ;
static final String filename1 = "file:test" ;
static final String notFilename = "zzzz" ;
static final String filename2 = "file:"+testingDir+"/location-mapping-test-file" ;
static final String mapping = "location-mapping-test.n3;"+
testingDir+"/location-mapping-test.n3" ;
public TestLocationMapper( String name )
{
super(name);
}
public static TestSuite suite()
{
return new TestSuite( TestLocationMapper.class );
}
public void testLocationMapper()
{
LocationMapper locMap = new LocationMapper(mapping) ;
String alt = locMap.altMapping(filename1) ;
assertNotNull(alt) ;
assertEquals(alt, filename2) ;
}
public void testLocationMapperMiss()
{
LocationMapper locMap = new LocationMapper(mapping) ;
String alt = locMap.altMapping(notFilename) ;
assertNotNull(alt) ;
assertEquals(alt, notFilename) ;
}
public void testLocationMapperURLtoFile()
{
LocationMapper locMap = new LocationMapper(mapping) ;
String alt = locMap.altMapping("http://example.org/file") ;
assertNotNull(alt) ;
assertEquals(alt, "file:"+testingDir+"/location-mapping-test-file") ;
}
public void testLocationMapperFromModel()
{
Model model = FileManager.getInternal().loadModelInternal(testingDir+"/location-mapping-test.n3") ;
LocationMapper loc = new LocationMapper(model) ;
// Light test that the two location mappers are "the same"
LocationMapper locMap = new LocationMapper(mapping) ;
for ( Iterator<String> iter = loc.listAltEntries() ; iter.hasNext() ; )
{
String e = iter.next() ;
String v1 = locMap.getAltEntry(e) ;
String v2 = loc.getAltEntry(e) ;
assertEquals("Different entries", v1, v2) ;
}
for ( Iterator<String> iter = loc.listAltPrefixes() ; iter.hasNext() ; )
{
String e = iter.next() ;
String v1 = locMap.getAltPrefix(e) ;
String v2 = loc.getAltPrefix(e) ;
assertEquals("Different entries", v1, v2) ;
}
}
public void testLocationMapperClone1()
{
LocationMapper locMap1 = new LocationMapper(mapping) ;
// See testLocationMapperURLtoFile
// String alt = locMap.altMapping("http://example.org/file") ;
// assertNotNull(alt) ;
// assertEquals(alt, "file:"+testingDir+"/location-mapping-test-file") ;
LocationMapper locMap2 = new LocationMapper(locMap1) ;
// Remove from original
locMap1.removeAltEntry("http://example.org/file") ;
String alt = locMap2.altMapping("http://example.org/file") ;
assertNotNull(alt) ;
assertEquals(alt, "file:"+testingDir+"/location-mapping-test-file") ;
}
public void testLocationMapperClone2()
{
LocationMapper locMap1 = new LocationMapper(mapping) ;
// See testLocationMapperURLtoFile
// String alt = locMap.altMapping("http://example.org/file") ;
// assertNotNull(alt) ;
// assertEquals(alt, "file:"+testingDir+"/location-mapping-test-file") ;
LocationMapper locMap2 = new LocationMapper(locMap1) ;
// Change this one
locMap2.addAltPrefix("http://example.org/OTHER", "file:OTHER") ;
{
String alt = locMap2.altMapping("http://example.org/OTHER/f") ;
assertNotNull(alt) ;
assertEquals(alt, "file:OTHER/f") ;
}
// Not the other
{
String alt = locMap1.altMapping("http://example.org/OTHER/f") ;
assertNotNull(alt) ;
// Did not change
assertEquals(alt, "http://example.org/OTHER/f") ;
}
}
public void testLocationMapperEquals1()
{
LocationMapper locMap1 = new LocationMapper(mapping) ;
LocationMapper locMap2 = new LocationMapper(mapping) ;
assertEquals(locMap1, locMap2) ;
assertEquals(locMap1.hashCode(), locMap2.hashCode()) ;
}
public void testLocationMapperEquals2()
{
LocationMapper locMap1 = new LocationMapper(mapping) ;
LocationMapper locMap2 = new LocationMapper(mapping) ;
locMap2.addAltEntry("file:nowhere", "file:somewhere") ;
assertFalse(locMap1.equals(locMap2)) ;
assertFalse(locMap2.equals(locMap1)) ;
}
public void testLocationMapperToModel1()
{
LocationMapper locMap1 = new LocationMapper(mapping) ;
LocationMapper locMap2 = new LocationMapper(locMap1.toModel()) ;
assertEquals(locMap1, locMap2) ;
assertEquals(locMap1.hashCode(), locMap2.hashCode()) ;
}
public void testLocationMapperToModel2()
{
LocationMapper locMap1 = new LocationMapper(mapping) ;
LocationMapper locMap2 = new LocationMapper(mapping) ;
locMap1 = new LocationMapper(locMap1.toModel()) ;
locMap2.addAltEntry("file:nowhere", "file:somewhere") ;
assertFalse(locMap1.equals(locMap2)) ;
assertFalse(locMap2.equals(locMap1)) ;
}
}