websvc.kit/test/qa-functional/src/org/netbeans/modules/ws/qaf/FullWsValidation.java
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4 * Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.
6 * The contents of this file are subject to the terms of either the GNU
7 * General Public License Version 2 only ("GPL") or the Common
8 * Development and Distribution License("CDDL") (collectively, the
9 * "License"). You may not use this file except in compliance with the
10 * License. You can obtain a copy of the License at
11 * http://www.netbeans.org/cddl-gplv2.html
12 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
13 * specific language governing permissions and limitations under the
14 * License. When distributing the software, include this License Header
15 * Notice in each file and include the License file at
16 * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
17 * particular file as subject to the "Classpath" exception as provided
18 * by Sun in the GPL Version 2 section of the License file that
19 * accompanied this code. If applicable, add the following below the
20 * License Header, with the fields enclosed by brackets [] replaced by
21 * your own identifying information:
22 * "Portions Copyrighted [year] [name of copyright owner]"
24 * If you wish your version of this file to be governed by only the CDDL
25 * or only the GPL Version 2, indicate your decision by adding
26 * "[Contributor] elects to include this software in this distribution
27 * under the [CDDL or GPL Version 2] license." If you do not indicate a
28 * single choice of license, a recipient has the option to distribute
29 * your version of this file under either the CDDL, the GPL Version 2 or
30 * to extend the choice of license to its licensees as provided above.
31 * However, if you add GPL Version 2 code and therefore, elected the GPL
32 * Version 2 license, then the option applies only if the new code is
33 * made subject to such option by the copyright holder.
37 * Portions Copyrighted 2008 Sun Microsystems, Inc.
40 package org.netbeans.modules.ws.qaf;
42 import junit.framework.Test;
43 import org.netbeans.jellytools.modules.j2ee.J2eeTestCase;
44 import org.netbeans.junit.NbModuleSuite;
47 * Test suite for web services support in various project types in the IDE.
49 * Duration of this test suite: aprox. 20min
51 * @author lukas.jungmann@sun.com
53 public class FullWsValidation extends J2eeTestCase {
55 public FullWsValidation(String name) {
59 public static Test suite() {
60 // This "nicely recursive" implementation is due to limitations in J2eeTestCase API
61 return NbModuleSuite.create(
62 addServerTests(Server.GLASSFISH,
63 addServerTests(Server.GLASSFISH,
64 addServerTests(Server.GLASSFISH,
65 addServerTests(Server.GLASSFISH,
66 addServerTests(Server.GLASSFISH,
67 addServerTests(Server.GLASSFISH,
68 addServerTests(Server.GLASSFISH,
69 addServerTests(Server.GLASSFISH, NbModuleSuite.emptyConfiguration(), WsValidation.class,
75 "testDeployWsProject",
77 "testGenerateWrapper",
79 "testDeployWsProject",
81 "testCallWsOperationInServlet",
82 "testCallWsOperationInJSP",
83 "testCallWsOperationInJavaClass",
84 "testWsClientHandlers",
86 "testDeployWsClientProject"
87 ), EjbWsValidation.class,
94 "testDeployWsProject",
97 "testCallWsOperationInSessionEJB",
98 "testCallWsOperationInJavaClass",
99 "testWsFromEJBinClientProject",
100 "testWsClientHandlers",
101 "testRefreshClientAndReplaceWSDL",
102 "testDeployWsClientProject"
103 ), AppClientWsValidation.class,
104 "testCreateWsClient",
105 "testCallWsOperationInJavaMainClass",
106 "testCallWsOperationInJavaClass",
107 "testWsClientHandlers",
109 "testRunWsClientProject"
110 ), JavaSEWsValidation.class,
111 "testCreateWsClient",
112 "testCallWsOperationInJavaMainClass",
113 "testWsClientHandlers",
114 "testRefreshClientAndReplaceWSDL",
115 "testRunWsClientProject"
116 ), WsValidation.class,
117 "testUndeployProjects"
118 ), EjbWsValidation.class,
119 "testUndeployProjects"
120 ), AppClientWsValidation.class,
121 "testUndeployClientProject"
122 ), WsValidation.class,
124 ).enableModules(".*").clusters(".*")