websvc.kit/test/qa-functional/src/org/netbeans/modules/ws/qaf/JavaSEWsValidation.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 package org.netbeans.modules.ws.qaf;
    40 
    41 import java.io.IOException;
    42 import junit.framework.Test;
    43 import org.netbeans.jellytools.EditorOperator;
    44 import org.netbeans.jellytools.OutputTabOperator;
    45 import org.netbeans.junit.NbModuleSuite;
    46 import org.netbeans.modules.ws.qaf.WebServicesTestBase.ProjectType;
    47 
    48 /**
    49  *
    50  * @author jp154641
    51  */
    52 public class JavaSEWsValidation extends WsValidation {
    53 
    54     /** Default constructor.
    55      * @param testName name of particular test case
    56      */
    57     public JavaSEWsValidation(String name) {
    58         super(name);
    59     }
    60 
    61     @Override
    62     public void setUp() throws Exception {
    63         super.setUp();
    64         assertServerRunning();
    65     }
    66 
    67     @Override
    68     protected ProjectType getProjectType() {
    69         return ProjectType.JAVASE_APPLICATION;
    70     }
    71 
    72     @Override
    73     protected String getWsClientProjectName() {
    74         return "WsClientInJavaSE"; //NOI18N
    75     }
    76 
    77     public static Test suite() {
    78         return NbModuleSuite.create(addServerTests(NbModuleSuite.createConfiguration(JavaSEWsValidation.class),
    79                 "testCreateWsClient",
    80                 "testCallWsOperationInJavaMainClass",
    81                 "testWsClientHandlers",
    82                 //"testRefreshClient",
    83                 "testRunWsClientProject"
    84                 ).enableModules(".*").clusters(".*"));
    85     }
    86 
    87     public void testCallWsOperationInJavaMainClass() {
    88         final EditorOperator eo = new EditorOperator("Main.java"); //NOI18N
    89         eo.select("// TODO code application logic here"); //NOI18N
    90         callWsOperation(eo, "myIntMethod", 18); //NOI18N
    91         assertTrue("Web service lookup class has not been found", eo.contains(getWsClientLookupCall())); //NOI18N
    92         assertFalse("@WebServiceRef present", eo.contains("@WebServiceRef")); //NOI18N
    93     }
    94 
    95     /**
    96      * Since there's not Deploy action for Java Projects, it's Run insteda and output checked
    97      * @throws java.io.IOException
    98      */
    99     public void testRunWsClientProject() throws IOException {
   100         runProject(getProjectName());
   101         OutputTabOperator oto = new OutputTabOperator(getProjectName());
   102         assertTrue(oto.getText().indexOf("Result = []") > -1); //NOI18N
   103         assertTrue(oto.getText().indexOf("BUILD SUCCESSFUL") > -1); //NOI18N
   104     }
   105 }