donaldp 2002/09/20 03:01:47
Added: loader/src/test/org/apache/excalibur/policy/test
AbstractPolicyTestCase.java
Log:
Add in abstract test case for policy
Revision Changes Path
1.1
jakarta-avalon-excalibur/loader/src/test/org/apache/excalibur/policy/test/AbstractPolicyTestCase.java
Index: AbstractPolicyTestCase.java
===================================================================
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.excalibur.policy.test;
import java.io.InputStream;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import junit.framework.TestCase;
import org.apache.excalibur.policy.metadata.PolicyMetaData;
import org.apache.excalibur.policy.reader.PolicyReader;
import org.w3c.dom.Document;
/**
* An abstract testcase to test policys.
*
* @author <a href="mailto:peter at apache.org">Peter Donald</a>
* @version $Revision: 1.1 $ $Date: 2002/09/20 10:01:47 $
*/
public class AbstractPolicyTestCase
extends TestCase
{
protected PolicyMetaData buildFromStream( final InputStream stream )
throws Exception
{
try
{
final PolicyReader builder = new PolicyReader();
final Document config = load( stream );
return builder.build( config.getDocumentElement() );
}
catch( final Exception e )
{
fail( "Error building Policy: " + e );
return null;
}
}
protected Document load( final InputStream stream )
throws Exception
{
final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
//factory.setValidating(true);
//factory.setNamespaceAware(true);
final DocumentBuilder builder = factory.newDocumentBuilder();
return builder.parse( stream );
}
protected PolicyMetaData buildFromResource( final String resource )
throws Exception
{
final InputStream stream = getClass().getResourceAsStream( resource );
if( null == stream )
{
fail( "Missing resource " + resource );
}
return buildFromStream( stream );
}
public AbstractPolicyTestCase( String name )
{
super( name );
}
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>