|
Axis 2 example source code file (StringProviderTests.java)
The Axis 2 StringProviderTests.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 javax.xml.namespace.QName; import javax.xml.soap.SOAPFault; import javax.xml.ws.BindingProvider; import javax.xml.ws.Dispatch; import javax.xml.ws.Service; import javax.xml.ws.soap.SOAPFaultException; public class StringProviderTests extends ProviderTestCase { String endpointUrl = "http://localhost:8080/axis2/services/StringProviderService"; String xmlString = "<invoke>test input"; private QName serviceName = new QName("http://ws.apache.org/axis2", "StringProviderService"); protected void setUp() throws Exception { super.setUp(); } protected void tearDown() throws Exception { super.tearDown(); } public StringProviderTests(String name) { super(name); } private Dispatch<String> getDispatch() { Service svc = Service.create(serviceName); svc.addPort(portName, null, endpointUrl); Dispatch<String> dispatch = svc .createDispatch(portName, String.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,"http://stringprovider.sample.test.org/echoString"); return dispatch; } public void testNormal() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<String> dispatch = getDispatch(); String request = "<invoke>hello world"; String response = dispatch.invoke(request); assertTrue(request.equals(response)); } public void testEmptyString() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<String> dispatch = getDispatch(); String request = ""; String response = dispatch.invoke(request); // 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 testNullString() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<String> dispatch = getDispatch(); String request = null; String response = dispatch.invoke(request); // 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<String> dispatch = getDispatch(); String request = "mixedContent"; String response = dispatch.invoke(request); // 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<String> dispatch = getDispatch(); String request = "<!--comment-->"; String response = dispatch.invoke(request); // 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<String> dispatch = getDispatch(); String request = "<a>helloworld"; String response = dispatch.invoke(request); // The current implementatin only sends the first element // So the echo'd response is just the first one. assertTrue("<a>hello".equals(response)); } public void testTwoElementsAndMixedContentString() throws Exception { TestLogger.logger.debug("---------------------------------------"); TestLogger.logger.debug("test: " + getName()); Dispatch<String> dispatch = getDispatch(); String request = "mixed1<a>hellomixed2worldmixed3"; String response = dispatch.invoke(request); // 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<String> dispatch = getDispatch(); String request = "<invoke>throwWebServiceException"; try { String response = dispatch.invoke(request); fail("Expected Exception"); } catch (SOAPFaultException e) { SOAPFault sf = e.getFault(); assertTrue(sf.getFaultString().equals("provider")); } } } Other Axis 2 examples (source code examples)Here is a short list of links related to this Axis 2 StringProviderTests.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.