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 wsdl;
059:
060: /**
061: * Junit test to test out different ways to load WSDL
062: * @author Mark Whitlock
063: */
064:
065: import java.io.PrintWriter;
066: import java.io.StringWriter;
067:
068: import junit.framework.Test;
069: import junit.framework.TestCase;
070: import junit.framework.TestSuite;
071: import junit.textui.TestRunner;
072: import org.apache.wsif.WSIFService;
073: import org.apache.wsif.WSIFServiceFactory;
074: import util.AddressUtility;
075: import util.TestUtilities;
076:
077: import addressbook.wsifservice.AddressBook;
078: import addressbook.wsiftypes.Address;
079: import addressbook.wsiftypes.Phone;
080:
081: public class WsdlLoadingTest extends TestCase {
082: String urlWsdl = "http://localhost:8080/wsdl/AddressBook.wsdl";
083: String fileWsdl = TestUtilities
084: .getWsdlPath("java\\test\\addressbook\\wsifservice")
085: + "AddressBook.wsdl";
086: static String server = TestUtilities.getSoapServer().toUpperCase();
087:
088: static String name1 = "Purdue Boilermaker";
089: static Address addr1 = new Address(1, "University Drive",
090: "West Lafayette", "IN", 47907,
091: new Phone(765, "494", "4900"));
092:
093: public WsdlLoadingTest(String name) {
094: super (name);
095: }
096:
097: public static void main(String[] args) {
098: junit.textui.TestRunner.run(suite());
099: }
100:
101: public static Test suite() {
102: return new TestSuite(WsdlLoadingTest.class);
103: }
104:
105: public void setUp() {
106: TestUtilities.setUpExtensionsAndProviders();
107: }
108:
109: public void testUrl() {
110: if (TestUtilities.areWeTesting("remotewsdl"))
111: doit("http://localhost:8080/wsdl/AddressBook.wsdl", null);
112: }
113:
114: public void testFile() {
115: doit(TestUtilities
116: .getWsdlPath("java\\test\\addressbook\\wsifservice")
117: + "AddressBook.wsdl", null);
118: }
119:
120: public void testBadUrl() {
121: if (TestUtilities.areWeTesting("remotewsdl"))
122: doit("http://localhost:8080/wsdl/AddressBok.wsdl",
123: "MalformedURLException");
124: }
125:
126: public void testBadFile() {
127: doit(TestUtilities
128: .getWsdlPath("java\\test\\addressbook\\wsifservice")
129: + "AddressBok.wsdl", "MalformedURLException");
130: }
131:
132: public void testImport() {
133: if (TestUtilities.areWeTesting("remotewsdl"))
134: doit(
135: "http://localhost:8080/wsdl/ImportingAddressBook.wsdl",
136: null);
137: }
138:
139: private void doit(String wsdl, String expectedException) {
140: try {
141: WSIFServiceFactory factory = WSIFServiceFactory
142: .newInstance();
143: WSIFService service = factory.getService(wsdl, null, // serviceNS
144: null, // serviceName
145: "http://wsifservice.addressbook/", // portTypeNS
146: "AddressBook"); // portTypeName
147:
148: AddressBook stub = (AddressBook) service.getStub(server
149: + "Port", AddressBook.class);
150:
151: stub.addEntry(name1, addr1);
152: Address resp1 = stub.getAddressFromName(name1);
153: assertTrue(new AddressUtility(addr1).equals(resp1));
154: assertTrue(expectedException == null);
155:
156: } catch (Exception e) {
157: if (expectedException == null) {
158: System.err.println("WsdlLoadingTest(" + wsdl
159: + ") caught exception " + e);
160: e.printStackTrace();
161: assertTrue(false);
162: } else {
163: StringWriter sw = new StringWriter();
164: PrintWriter pw = new PrintWriter(sw);
165: e.printStackTrace(pw);
166: String stack = sw.getBuffer().toString();
167: assertTrue(stack.indexOf(expectedException) > 0);
168: }
169: }
170: }
171:
172: }
|