Basic JUnit tests

git-svn-id: https://svn.apache.org/repos/asf/xml/commons/trunk@226198 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ndw 2005-04-13 13:29:02 +00:00
parent 0de975f15b
commit 166c71a317
4 changed files with 173 additions and 0 deletions

View File

@ -0,0 +1,125 @@
package org.apache.xml.resolver.tests;
import junit.framework.TestCase;
import java.net.URL;
import org.apache.xml.resolver.Catalog;
import org.apache.xml.resolver.CatalogManager;
import org.apache.xml.resolver.tools.CatalogResolver;
public class BasicResolverTests extends TestCase {
protected Catalog catalog;
public static void main(String args[]) {
junit.textui.TestRunner.run(BasicResolverTests.class);
}
protected void setUp() throws Exception {
super.setUp();
CatalogManager manager = new CatalogManager();
// Just do this to make sure that the debug level gets set.
// I could set the value explicitly, but I know that the
// ant build file is going to set the system property, so just
// make sure that that gets used.
int verbosity = manager.getVerbosity();
catalog = new Catalog(manager);
catalog.setupReaders();
catalog.loadSystemCatalogs();
}
public void testResolveSystem() {
String resolved = null;
String local = "file:/local/system-resolver.dtd";
try {
resolved = catalog.resolveSystem("http://example.org/resolver.dtd");
} catch (Exception e) {
e.printStackTrace();
}
assertTrue(local.equals(resolved));
}
public void testResolvePublic() {
String resolved = null;
String local = "file:/local/public-resolver.dtd";
try {
resolved = catalog.resolvePublic("-//Apache//DTD Resolver Test//EN",
"some-broken-system-identifier");
} catch (Exception e) {
e.printStackTrace();
}
assertTrue(local.equals(resolved));
}
public void testRewriteSystem() {
String resolved = null;
String local = "file:/longest/path";
try {
resolved = catalog.resolveSystem("http://rewrite.example.org/longest/path");
} catch (Exception e) {
e.printStackTrace();
}
assertTrue(local.equals(resolved));
}
public void testResolveURI() {
String resolved = null;
String local = "file:/local/uri";
try {
resolved = catalog.resolveURI("http://example.org/someURI");
} catch (Exception e) {
e.printStackTrace();
}
assertTrue(local.equals(resolved));
}
public void testGroup() {
String resolved = null;
String local = "file:/local/other/uri";
try {
resolved = catalog.resolveURI("http://example.org/someOtherURI");
} catch (Exception e) {
e.printStackTrace();
}
assertTrue(local.equals(resolved));
}
public void testDelegateSystem() {
String resolved = null;
String local = "file:/local/delegated/system-resolver.dtd";
try {
resolved = catalog.resolveSystem("http://delegate.example.org/resolver.dtd");
} catch (Exception e) {
e.printStackTrace();
}
assertTrue(local.equals(resolved));
}
public void testDocument() {
String resolved = null;
String local = "file:/default-document";
try {
resolved = catalog.resolveDocument();
} catch (Exception e) {
e.printStackTrace();
}
assertTrue(local.equals(resolved));
}
}

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
<public publicId="-//Apache//DTD Resolver Test//EN"
uri="file:///local/public-resolver.dtd"/>
<system systemId="http://example.org/resolver.dtd"
uri="file:///local/system-resolver.dtd"/>
<rewriteSystem systemIdStartString="http://rewrite.example.org/"
rewritePrefix="/short/"/>
<rewriteSystem systemIdStartString="http://rewrite.example.org/longest/"
rewritePrefix="/longest/"/>
<rewriteSystem systemIdStartString="http://rewrite.example.org/long"
rewritePrefix="/long/"/>
<uri name="http://example.org/someURI"
uri="file:///local/uri"/>
<group xml:base="http://www.example.org/">
<uri name="http://example.org/someOtherURI"
uri="file:///local/other/uri"/>
</group>
<delegateSystem systemIdStartString="http://delegate.example.org/"
catalog="delegate-system.xml"/>
<nextCatalog catalog="tr9401.xml"/>
</catalog>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
<system systemId="http://delegate.example.org/resolver.dtd"
uri="file:///local/delegated/system-resolver.dtd"/>
</catalog>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<x:catalog xmlns:x="urn:oasis:names:tc:entity:xmlns:xml:catalog"
xmlns="urn:oasis:names:tc:entity:xmlns:tr9401:catalog">
<document name="http://example.org/default-document"
uri="file:///default-document"/>
</x:catalog>