org.codehaus.xfire.plexus
Class PlexusXFireTest

java.lang.Object
  extended by junit.framework.Assert
      extended by junit.framework.TestCase
          extended by org.codehaus.plexus.PlexusTestCase
              extended by org.codehaus.xfire.plexus.PlexusXFireTest
All Implemented Interfaces:
junit.framework.Test

public class PlexusXFireTest
extends org.codehaus.plexus.PlexusTestCase

Contains helpful methods to test SOAP services.

Author:
Dan Diephouse

Field Summary
 
Fields inherited from class org.codehaus.plexus.PlexusTestCase
basedir, container
 
Constructor Summary
PlexusXFireTest()
           
 
Method Summary
 void addNamespace(java.lang.String ns, java.lang.String uri)
          Add a namespace that will be used for XPath expressions.
 void assertInvalid(java.lang.String xpath, org.dom4j.Node node)
          Assert that the following XPath query selects no nodes.
 void assertNoFault(org.dom4j.Node node)
           
 void assertValid(java.lang.String xpath, org.dom4j.Node node)
          Assert that the following XPath query selects one or more nodes.
 void assertXPathEquals(java.lang.String xpath, java.lang.String value, org.dom4j.Node node)
          Asser that the text of the xpath node retrieved is equal to the value specified.
protected  org.dom4j.XPath createXPath(java.lang.String xpathString)
          Create the specified XPath expression with the namespaces added via addNamespace().
protected  org.codehaus.xfire.service.ServiceRegistry getServiceRegistry()
           
protected  org.codehaus.xfire.wsdl.WSDLWriter getWSDL(java.lang.String service)
          Get the WSDL for a service.
protected  org.dom4j.Document getWSDLDocument(java.lang.String service)
           
protected  org.codehaus.xfire.XFire getXFire()
           
protected  org.dom4j.Document invokeService(java.lang.String service, java.lang.String document)
          Invoke a service with the specified document.
protected  void printNode(org.dom4j.Node node)
           
protected  void setUp()
           
 
Methods inherited from class org.codehaus.plexus.PlexusTestCase
createContainerInstance, customizeContext, customizeContext, getBasedir, getClassLoader, getConfiguration, getConfiguration, getContainer, getCustomConfiguration, getResourceAsStream, getTestFile, getTestFile, getTestPath, getTestPath, lookup, lookup, release, tearDown
 
Methods inherited from class junit.framework.TestCase
countTestCases, createResult, getName, run, run, runBare, runTest, setName, toString
 
Methods inherited from class junit.framework.Assert
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PlexusXFireTest

public PlexusXFireTest()
Method Detail

printNode

protected void printNode(org.dom4j.Node node)
                  throws java.lang.Exception
Throws:
java.lang.Exception

invokeService

protected org.dom4j.Document invokeService(java.lang.String service,
                                           java.lang.String document)
                                    throws java.lang.Exception
Invoke a service with the specified document.

Parameters:
service - The name of the service.
document - The request as an xml document in the classpath.
Returns:
Throws:
java.lang.Exception

getWSDLDocument

protected org.dom4j.Document getWSDLDocument(java.lang.String service)
                                      throws java.lang.Exception
Throws:
java.lang.Exception

setUp

protected void setUp()
              throws java.lang.Exception
Overrides:
setUp in class org.codehaus.plexus.PlexusTestCase
Throws:
java.lang.Exception
See Also:
TestCase.setUp()

assertValid

public void assertValid(java.lang.String xpath,
                        org.dom4j.Node node)
                 throws java.lang.Exception
Assert that the following XPath query selects one or more nodes.

Parameters:
xpath -
Throws:
java.lang.Exception

assertInvalid

public void assertInvalid(java.lang.String xpath,
                          org.dom4j.Node node)
                   throws java.lang.Exception
Assert that the following XPath query selects no nodes.

Parameters:
xpath -
Throws:
java.lang.Exception

assertXPathEquals

public void assertXPathEquals(java.lang.String xpath,
                              java.lang.String value,
                              org.dom4j.Node node)
                       throws java.lang.Exception
Asser that the text of the xpath node retrieved is equal to the value specified.

Parameters:
xpath -
value -
node -
Throws:
java.lang.Exception

assertNoFault

public void assertNoFault(org.dom4j.Node node)
                   throws java.lang.Exception
Throws:
java.lang.Exception

createXPath

protected org.dom4j.XPath createXPath(java.lang.String xpathString)
Create the specified XPath expression with the namespaces added via addNamespace().


addNamespace

public void addNamespace(java.lang.String ns,
                         java.lang.String uri)
Add a namespace that will be used for XPath expressions.

Parameters:
ns - Namespace name.
uri - The namespace uri.

getWSDL

protected org.codehaus.xfire.wsdl.WSDLWriter getWSDL(java.lang.String service)
                                              throws java.lang.Exception
Get the WSDL for a service.

Parameters:
string - The name of the service.
Returns:
Throws:
java.lang.Exception

getXFire

protected org.codehaus.xfire.XFire getXFire()
                                     throws java.lang.Exception
Throws:
java.lang.Exception

getServiceRegistry

protected org.codehaus.xfire.service.ServiceRegistry getServiceRegistry()
                                                                 throws java.lang.Exception
Throws:
java.lang.Exception


Copyright © 2004-2005 Codehaus. All Rights Reserved.