|
Axis 2 example source code file (SourceProviderTests.java)
The Axis 2 SourceProviderTests.java source code/* * 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.axis2.jaxws.provider; import org.apache.axis2.jaxws.TestLogger; import java.io.ByteArrayInputStream; import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import java.io.StringWriter; import javax.xml.namespace.QName; import javax.xml.soap.SOAPFault; import javax.xml.transform.Result; import javax.xml.transform.Source; import javax.xml.transform.Transformer; import javax.xml.transform.TransformerFactory; import javax.xml.transform.stream.StreamResult; import javax.xml.transform.stream.StreamSource; import javax.xml.ws.BindingProvider; import javax.xml.ws.Dispatch; import javax.xml.ws.Service; import javax.xml.ws.soap.SOAPFaultException; public class SourceProviderTests extends ProviderTestCase { private String endpointUrl = "http://localhost:8080/axis2/services/SourceProviderService"; private QName serviceName = new QName("http://ws.apache.org/axis2", "SourceProviderService"); private String xmlDir = "xml"; protected void setUp() throws Exception { super.setUp(); } protected void tearDown() throws Exception { super.tearDown(); } public SourceProviderTests(String name) { super(name); } private Dispatch<Source> getDispatch() { Service svc = Service.create(serviceName); svc.addPort(portName, null, endpointUrl); Dispatch<Source> dispatch = svc .createDispatch(portName, Source.class, Service.Mode.PAYLOAD); // Force soap action because we are passing junk over the wire dispatch.getRequestContext().put(BindingProvider.SOAPACTION_USE_PROPERTY, Boolean.TRUE); dispatch.getRequestContext().put(BindingProvider.SOAPACTION_URI_PROPERTY,"test"); return dispatch; } private Source getSource(String text) { if (text == null) { return null; } else { ByteArrayInputStream stream = new ByteArrayInputStream(text.getBytes()); return new StreamSource((InputStream) stream); } } private String getString(Source source) throws Exception { if (source == null) { return null; } StringWriter writer = new StringWriter(); Transformer t = TransformerFactory.newInstance().newTransformer(); Result result = new StreamResult(writer); t.transform(source, result); return writer.getBuffer().toString(); } public void testNormal() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<Source> dispatch = getDispatch(); String request = "<test>hello world"; Source requestSource = getSource(request); Source responseSource = dispatch.invoke(requestSource); String response = getString(responseSource); assertTrue(response.contains(request)); } public void testEmptyString() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<Source> dispatch = getDispatch(); String request = ""; Source requestSource = getSource(request); Source responseSource = dispatch.invoke(requestSource); String response = getString(responseSource); // The current belief is that this should return a null indicating // the nothing is echo'ed assertTrue(response == null); //assertTrue(request.equals(response)); } public void testNullSource() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<Source> dispatch = getDispatch(); Source responseSource = dispatch.invoke(null); String response = getString(responseSource); // The current belief is that this should return a null indicating // the nothing is echo'ed assertTrue(response == null); } public void testEmptySource() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<Source> dispatch = getDispatch(); Source responseSource = dispatch.invoke(new StreamSource()); String response = getString(responseSource); // The current belief is that this should return a null indicating // the nothing is echo'ed assertTrue(response == null); } public void testNonNullString() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<Source> dispatch = getDispatch(); String request = "mixedContent"; Source requestSource = getSource(request); Source responseSource = dispatch.invoke(requestSource); String response = getString(responseSource); // The current implementation does not send the mixedContent over the wire, so the // expectation is that the echo'd response is null assertTrue(response == null); } public void testCommentString() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<Source> dispatch = getDispatch(); String request = "<!--comment-->"; Source requestSource = getSource(request); Source responseSource = dispatch.invoke(requestSource); String response = getString(responseSource); // The current implementation does not send the comment over the wire, so the // expectation is that the echo'd response is null assertTrue(response == null); } public void testTwoElementsString() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<Source> dispatch = getDispatch(); String request = "<a>helloworld"; Source requestSource = getSource(request); Source responseSource = dispatch.invoke(requestSource); String response = getString(responseSource); // The current implementatin only sends the first element // So the echo'd response is just the first one. assertTrue(response.contains("<a>hello")); } public void testTwoElementsAndMixedContentString() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<Source> dispatch = getDispatch(); String request = "mixed1<a>hellomixed2worldmixed3"; Source requestSource = getSource(request); Source responseSource = dispatch.invoke(requestSource); String response = getString(responseSource); // The current implementation only sends the first element. // The mixed content (mixed1) interferes and thus nothing is sent. assertTrue(response == null); } public void testException() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<Source> dispatch = getDispatch(); String request = "<test>throwWebServiceException"; try { Source requestSource = getSource(request); Source responseSource = dispatch.invoke(requestSource); String response = getString(responseSource); fail("Expected Exception"); } catch (SOAPFaultException e) { SOAPFault sf = e.getFault(); assertTrue(sf.getFaultString().equals("provider")); } } public void testProviderSource(){ try{ String resourceDir = new File(providerResourceDir, xmlDir).getAbsolutePath(); String fileName = resourceDir+File.separator+"web.xml"; File file = new File(fileName); InputStream inputStream = new FileInputStream(file); StreamSource xmlStreamSource = new StreamSource(inputStream); Service svc = Service.create(serviceName); svc.addPort(portName,null, endpointUrl); Dispatch<Source> dispatch = svc.createDispatch(portName, Source.class, null); TestLogger.logger.debug(">> Invoking Source Provider Dispatch"); Source response = dispatch.invoke(xmlStreamSource); TestLogger.logger.debug(">> Response [" + response.toString() + "]"); }catch(Exception e){ e.printStackTrace(); fail("Caught exception " + e); } } } Other Axis 2 examples (source code examples)Here is a short list of links related to this Axis 2 SourceProviderTests.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.