001: /*
002: * The Apache Software License, Version 1.1
003: *
004: *
005: * Copyright (c) 2002 The Apache Software Foundation. All rights
006: * reserved.
007: *
008: * Redistribution and use in source and binary forms, with or without
009: * modification, are permitted provided that the following conditions
010: * are met:
011: *
012: * 1. Redistributions of source code must retain the above copyright
013: * notice, this list of conditions and the following disclaimer.
014: *
015: * 2. Redistributions in binary form must reproduce the above copyright
016: * notice, this list of conditions and the following disclaimer in
017: * the documentation and/or other materials provided with the
018: * distribution.
019: *
020: * 3. The end-user documentation included with the redistribution,
021: * if any, must include the following acknowledgment:
022: * "This product includes software developed by the
023: * Apache Software Foundation (http://www.apache.org/)."
024: * Alternately, this acknowledgment may appear in the software itself,
025: * if and wherever such third-party acknowledgments normally appear.
026: *
027: * 4. The names "WSIF" and "Apache Software Foundation" must
028: * not be used to endorse or promote products derived from this
029: * software without prior written permission. For written
030: * permission, please contact apache@apache.org.
031: *
032: * 5. Products derived from this software may not be called "Apache",
033: * nor may "Apache" appear in their name, without prior written
034: * permission of the Apache Software Foundation.
035: *
036: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
037: * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
038: * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
039: * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
040: * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
041: * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
042: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
043: * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
044: * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
045: * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
046: * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
047: * SUCH DAMAGE.
048: * ====================================================================
049: *
050: * This software consists of voluntary contributions made by many
051: * individuals on behalf of the Apache Software Foundation and was
052: * originally based on software copyright (c) 2001, 2002, International
053: * Business Machines, Inc., http://www.apache.org. For more
054: * information on the Apache Software Foundation, please see
055: * <http://www.apache.org/>.
056: */
057:
058: package soap;
059:
060: import junit.framework.Test;
061: import junit.framework.TestCase;
062: import junit.framework.TestSuite;
063:
064: import org.apache.wsif.WSIFException;
065: import org.apache.wsif.WSIFMessage;
066: import org.apache.wsif.WSIFOperation;
067: import org.apache.wsif.WSIFPort;
068: import org.apache.wsif.WSIFService;
069: import org.apache.wsif.WSIFServiceFactory;
070: import org.apache.wsif.providers.soap.apacheaxis.WSIFDynamicProvider_ApacheAxis;
071: import org.apache.wsif.util.WSIFPluggableProviders;
072: import util.TestUtilities;
073:
074: import addressbook.wsiftypes.Address;
075: import addressbook.wsiftypes.Phone;
076:
077: /**
078: * Junit test to test out input message parts using the AddressBook sample.
079: *
080: * The WSDL input message can define multiple parts, but the parts in the
081: * WSIFMessage passed to the WSIFOperation may not match what the WSDL defines.
082: * Its been decided the parts defined in the WSDL but not in the WSIFMessage
083: * should be sent as null, and parts in the WSIFMessage but not in the WSDL
084: * should be ignored.
085: *
086: * @author Ant Elder <ant.elder@uk.ibm.com>
087: */
088: public class InputPartsTest extends TestCase {
089: static final String WSDL_LOCATION = TestUtilities
090: .getWsdlPath("java\\test\\addressbook\\wsifservice")
091: + "AddressBook.wsdl";
092: static String server = TestUtilities.getSoapServer().toUpperCase();
093:
094: public InputPartsTest(String name) {
095: super (name);
096: }
097:
098: public static void main(String[] args) {
099: TestUtilities.startListeners(TestUtilities.ADDRESSBOOK_LISTENER
100: | TestUtilities.NATIVEJMS_LISTENER);
101:
102: junit.textui.TestRunner.run(suite());
103: TestUtilities.stopListeners();
104: }
105:
106: public static Test suite() {
107: return new TestSuite(InputPartsTest.class);
108: }
109:
110: public void setUp() {
111: TestUtilities.setUpExtensionsAndProviders();
112: }
113:
114: public void testSoap() {
115: doit(server + "Port", "soap");
116: }
117:
118: public void testJava() {
119: doit("JavaPort", "java");
120: }
121:
122: public void testSoapJms() {
123: doit("SOAPJMSPort", "soap");
124: }
125:
126: //TODO the SOAP service doesn't work with AXIS nulls
127: // public void testAxis() {
128: // doit(server+"Port", "axis");
129: // }
130: // public void testAxisJms() {
131: // doit("SOAPJMSPort", "axis");
132: // }
133: public void testNativeJms() {
134: doit("NativeJmsPort", "");
135: }
136:
137: private void doit(String portName, String protocol) {
138: if (portName.toUpperCase().indexOf("JMS") != -1
139: && !TestUtilities.areWeTesting("jms"))
140: return;
141:
142: TestUtilities.setProviderForProtocol(protocol);
143:
144: System.out.println("\n=== " + this .getClass().getName() + " "
145: + portName + " " + protocol);
146:
147: try {
148: WSIFServiceFactory factory = WSIFServiceFactory
149: .newInstance();
150: WSIFService service = factory.getService(WSDL_LOCATION,
151: null, // serviceNS
152: null, // serviceName
153: "http://wsifservice.addressbook/", // portTypeNS
154: "AddressBook"); // portTypeName
155:
156: service.mapType(new javax.xml.namespace.QName(
157: "http://wsiftypes.addressbook/", "address"), Class
158: .forName("addressbook.wsiftypes.Address"));
159:
160: service.mapType(new javax.xml.namespace.QName(
161: "http://wsiftypes.addressbook/", "phone"), Class
162: .forName("addressbook.wsiftypes.Phone"));
163:
164: WSIFPort port = service.getPort(portName);
165:
166: Address addr1 = new Address(1, "University Drive",
167: "West Lafayette", "IN", 47907, new Phone(765,
168: "494", "4900"));
169: Address addr2 = new Address(0, "Somewhere Else",
170: "No Where", "NO", 71983, new Phone(600, "391",
171: "5682"));
172: Address addr3 = new Address(0, "", "", "", 0, new Phone());
173:
174: addName(port, "ant", addr1);
175: Address addressFound = getAddress(port, "ant");
176: assertTrue("test 1 addresses are not equal!!", addressFound
177: .equals(addr1));
178:
179: addName(port, null, addr2);
180: addressFound = getAddress(port, null);
181: assertTrue("test 2 addresses are not equal!!", addressFound
182: .equals(addr2));
183:
184: addName(port, "petra", null);
185: addressFound = getAddress(port, "petra");
186: //TODO Address gets NPE on null address compare
187: // assertTrue( "test 3 addresses are not equal!!", addressFound.equals( addr3 ) );
188:
189: } catch (Exception e) {
190: e.printStackTrace();
191: assertTrue("got exception: " + e, false);
192: } finally {
193: if (protocol.equals("axis")) {
194: WSIFPluggableProviders.overrideDefaultProvider(
195: "http://schemas.xmlsoap.org/wsdl/soap/", null);
196: }
197: }
198:
199: }
200:
201: private void addName(WSIFPort port, String name, Address addr)
202: throws WSIFException {
203:
204: WSIFOperation operation = port.createOperation("addEntry",
205: "AddEntryWholeNameRequest", null);
206: WSIFMessage inputMessage = operation.createInputMessage();
207: WSIFMessage outputMessage = operation.createOutputMessage();
208: WSIFMessage faultMessage = operation.createFaultMessage();
209:
210: if (name != null) {
211: inputMessage.setObjectPart("name", name);
212: }
213: if (addr != null) {
214: inputMessage.setObjectPart("address", addr);
215: }
216: inputMessage.setObjectPart("extra", "junk");
217:
218: boolean ok = operation.executeRequestResponseOperation(
219: inputMessage, outputMessage, faultMessage);
220:
221: assertTrue("addEntry operation returned false!!", ok);
222:
223: }
224:
225: private Address getAddress(WSIFPort port, String name)
226: throws WSIFException {
227:
228: WSIFOperation operation = port
229: .createOperation("getAddressFromName");
230: WSIFMessage inputMessage = operation.createInputMessage();
231: WSIFMessage outputMessage = operation.createOutputMessage();
232: WSIFMessage faultMessage = operation.createFaultMessage();
233:
234: if (name != null) {
235: inputMessage.setObjectPart("name", name);
236: }
237: inputMessage.setObjectPart("extra", "junk");
238:
239: boolean ok = operation.executeRequestResponseOperation(
240: inputMessage, outputMessage, faultMessage);
241:
242: assertTrue("getAddressFromName operation returned false!!", ok);
243:
244: return (Address) outputMessage.getObjectPart("address");
245:
246: }
247:
248: }
|