websvc.kit/test/qa-functional/src/org/netbeans/modules/ws/qaf/FullWsValidation.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun Nov 22 11:35:02 2009 +0100 (10 hours ago)
changeset 154033 fa8b12981306
parent 107554bf2f7f90d69f
permissions -rw-r--r--
Merge RP javadoc improvements
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.
     5  *
     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]"
    23  *
    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.
    34  *
    35  * Contributor(s):
    36  *
    37  * Portions Copyrighted 2008 Sun Microsystems, Inc.
    38  */
    39 
    40 package org.netbeans.modules.ws.qaf;
    41 
    42 import junit.framework.Test;
    43 import org.netbeans.jellytools.modules.j2ee.J2eeTestCase;
    44 import org.netbeans.junit.NbModuleSuite;
    45 
    46 /**
    47  *  Test suite for web services support in various project types in the IDE.
    48  *
    49  *  Duration of this test suite: aprox. 20min
    50  *
    51  * @author lukas.jungmann@sun.com
    52  */
    53 public class FullWsValidation extends J2eeTestCase {
    54 
    55     public FullWsValidation(String name) {
    56         super(name);
    57     }
    58 
    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,
    70                     "testCreateNewWs",
    71                     "testAddOperation",
    72                     "testSetSOAP",
    73                     "testStartServer",
    74                     "testWsHandlers",
    75                     "testDeployWsProject",
    76                     "testTestWS",
    77                     "testGenerateWrapper",
    78                     "testGenerateWSDL",
    79                     "testDeployWsProject",
    80                     "testCreateWsClient",
    81                     "testCallWsOperationInServlet",
    82                     "testCallWsOperationInJSP",
    83                     "testCallWsOperationInJavaClass",
    84                     "testWsClientHandlers",
    85                     "testRefreshClient",
    86                     "testDeployWsClientProject"
    87                     ), EjbWsValidation.class,
    88                     "testCreateNewWs",
    89                     "testAddOperation",
    90                     "testSetSOAP",
    91                     "testGenerateWSDL",
    92                     "testStartServer",
    93                     "testWsHandlers",
    94                     "testDeployWsProject",
    95                     "testTestWS",
    96                     "testCreateWsClient",
    97                     "testCallWsOperationInSessionEJB",
    98                     "testCallWsOperationInJavaClass",
    99                     "testWsFromEJBinClientProject",
   100                     "testWsClientHandlers",
   101                     "testRefreshClientAndReplaceWSDL",
   102                     "testDeployWsClientProject"
   103                     ), AppClientWsValidation.class,
   104                     "testCreateWsClient",
   105                     "testCallWsOperationInJavaMainClass",
   106                     "testCallWsOperationInJavaClass",
   107                     "testWsClientHandlers",
   108                     "testRefreshClient",
   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,
   123                     "testStopServer"
   124                     ).enableModules(".*").clusters(".*")
   125                 );
   126     }
   127 }