blob: e29468a54f37516477a4a0407c5833898ca9da5a [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.commons.jelly;
import junit.framework.TestCase;
import java.net.URL;
/**
* A test class to validate doctype definitions' declaration of external
* calls using custom xml tags. Specifically we test some changes in {@link JellyContext}
* along with {@link org.apache.commons.jelly.parser.XMLParser}.
*
* @author chotmpki
*/
public class TestDoctypeDefinitionXXE extends TestCase
{
public TestDoctypeDefinitionXXE( String s )
{
super( s );
}
public void testDoctypeDefinitionXXEDefaultMode() throws JellyException
{
JellyContext context = new JellyContext();
URL url = this.getClass().getResource("doctypeDefinitionXXE.jelly");
try
{
context.runScript(url, null);
} catch (JellyException e) {
Throwable cause = e.getCause();
if (cause instanceof java.net.ConnectException) {
fail("doctypeDefinitionXXE.jelly attempted to connect to http://127.0.0.1:4444");
} else if (cause instanceof org.xml.sax.SAXParseException) {
// Success.
} else {
fail("Unknown exception: " + e.getMessage());
}
}
}
public void testDoctypeDefinitionXXEAllowDTDCalls() throws JellyException
{
JellyContext context = new JellyContext();
context.setAllowDtdToCallExternalEntities(true);
URL url = this.getClass().getResource("doctypeDefinitionXXE.jelly");
try
{
context.runScript(url, null);
} catch (JellyException e) {
Throwable cause = e.getCause();
if (cause instanceof java.net.ConnectException) {
//success
} else if (cause instanceof org.xml.sax.SAXParseException) {
fail("doctypeDefinitionXXE.jelly did not attempt to connect to http://127.0.0.1:4444");
} else {
fail("Unknown exception: " + e.getMessage());
}
}
}
}