blob: e8ee71ba2b29f0d3c65db8dc3e6e7fec90636a95 [file] [log] [blame]
/*
* Copyright (C) 2007 The Android Open Source 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 tests.api.org.xml.sax.ext;
import dalvik.annotation.TestLevel;
import dalvik.annotation.TestTargetClass;
import dalvik.annotation.TestTargetNew;
import junit.framework.TestCase;
import org.xml.sax.SAXException;
import org.xml.sax.ext.DefaultHandler2;
import java.io.IOException;
@TestTargetClass(DefaultHandler2.class)
public class DefaultHandler2Test extends TestCase {
private DefaultHandler2 h = new DefaultHandler2();
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "DefaultHandler2",
args = { }
)
public void testDefaultHandler2() {
new DefaultHandler2();
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "startCDATA",
args = { }
)
public void testStartCDATA() {
try {
h.startCDATA();
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "endCDATA",
args = { }
)
public void testEndCDATA() {
try {
h.endCDATA();
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "startDTD",
args = { String.class, String.class, String.class }
)
public void testStartDTD() {
try {
h.startDTD("name", "publicId", "systemId");
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "endDTD",
args = { }
)
public void testEndDTD() {
try {
h.endDTD();
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "startEntity",
args = { String.class }
)
public void testStartEntity() {
try {
h.startEntity("name");
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "endEntity",
args = { String.class }
)
public void testEndEntity() {
try {
h.endEntity("name");
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "comment",
args = { char[].class, int.class, int.class }
)
public void testComment() {
try {
h.comment("<!-- Comment -->".toCharArray(), 0, 15);
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "attributeDecl",
args = { String.class, String.class, String.class, String.class,
String.class }
)
public void testAttributeDecl() {
try {
h.attributeDecl("eName", "aName", "type", "mode", "value");
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "elementDecl",
args = { String.class, String.class }
)
public void testElementDecl() {
try {
h.elementDecl("name", "model");
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "externalEntityDecl",
args = { String.class, String.class, String.class }
)
public void testExternalEntityDecl() {
try {
h.externalEntityDecl("name", "publicId", "systemId");
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "internalEntityDecl",
args = { String.class, String.class }
)
public void testInternalEntityDecl() {
try {
h.internalEntityDecl("name", "value");
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "getExternalSubset",
args = { String.class, String.class }
)
public void testGetExternalSubset() {
try {
assertNull(h.getExternalSubset("name", "http://some.uri"));
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
} catch (IOException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "resolveEntity",
args = { String.class, String.class }
)
public void testResolveEntityStringString() {
try {
assertNull(h.resolveEntity("publicId", "systemId"));
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
} catch (IOException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "resolveEntity",
args = { String.class, String.class, String.class, String.class }
)
public void testResolveEntityStringStringStringString() {
try {
assertNull(h.resolveEntity("name", "publicId", "http://some.uri",
"systemId"));
} catch (SAXException e) {
throw new RuntimeException("Unexpected exception", e);
} catch (IOException e) {
throw new RuntimeException("Unexpected exception", e);
}
}
}