001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * If you wish your version of this file to be governed by only the CDDL
025: * or only the GPL Version 2, indicate your decision by adding
026: * "[Contributor] elects to include this software in this distribution
027: * under the [CDDL or GPL Version 2] license." If you do not indicate a
028: * single choice of license, a recipient has the option to distribute
029: * your version of this file under either the CDDL, the GPL Version 2 or
030: * to extend the choice of license to its licensees as provided above.
031: * However, if you add GPL Version 2 code and therefore, elected the GPL
032: * Version 2 license, then the option applies only if the new code is
033: * made subject to such option by the copyright holder.
034: *
035: * Contributor(s):
036: *
037: * Portions Copyrighted 2007 Sun Microsystems, Inc.
038: */
039: package org.netbeans.modules.ws.qaf;
040:
041: import java.io.IOException;
042: import junit.framework.Test;
043: import junit.framework.TestSuite;
044: import junit.textui.TestRunner;
045: import org.netbeans.jellytools.EditorOperator;
046: import org.netbeans.jellytools.OutputTabOperator;
047: import org.netbeans.junit.NbTestSuite;
048: import org.netbeans.modules.ws.qaf.WebServicesTestBase.ProjectType;
049:
050: /**
051: *
052: * @author jp154641
053: */
054: public class AppClientWsValidation extends EjbWsValidation {
055:
056: public AppClientWsValidation(String name) {
057: super (name);
058: }
059:
060: @Override
061: protected ProjectType getProjectType() {
062: return ProjectType.APPCLIENT;
063: }
064:
065: @Override
066: protected String getWsClientProjectName() {
067: return "WsClientInAppClient"; //NOI18N
068: }
069:
070: @Override
071: protected String getWsClientPackage() {
072: return "o.n.m.ws.qaf.client.appclient"; //NOI18N
073: }
074:
075: /** Creates suite from particular test cases. You can define order of testcases here.
076: * Since it's currently impossible to create web service in Java Application,
077: * this suite uses web service created previously by EjbWSValidation suite.
078: */
079: public static TestSuite suite() {
080: TestSuite suite = new NbTestSuite();
081: suite.addTest(new AppClientWsValidation("testCreateWsClient")); //NOI18N
082: suite.addTest(new AppClientWsValidation(
083: "testCallWsOperationInJavaMainClass")); //NOI18N
084: suite.addTest(new AppClientWsValidation(
085: "testCallWsOperationInJavaClass")); //NOI18N
086: suite
087: .addTest(new AppClientWsValidation(
088: "testWsClientHandlers")); //NOI18N
089: suite.addTest(new AppClientWsValidation(
090: "testRunWsClientProject")); //NOI18N
091: suite.addTest(new AppClientWsValidation(
092: "testUndeployClientProject")); //NOI18N
093: return suite;
094: }
095:
096: /* Method allowing test execution directly from the IDE. */
097: public static void main(java.lang.String[] args) {
098: TestRunner.run(suite());
099: }
100:
101: /**
102: * Tests Call Web Service Operation action in a servlet
103: */
104:
105: public void testCallWsOperationInJavaMainClass() {
106: final EditorOperator eo = new EditorOperator("Main.java"); //NOI18N
107: eo.select("// TODO code application logic here"); //NOI18N
108: callWsOperation(eo, "myIntMethod", 18); //NOI18N
109: assertTrue("@WebServiceRef has not been found", eo
110: .contains("@WebServiceRef")); //NOI18N
111: assertFalse("Lookup found", eo
112: .contains(getWsClientLookupCall())); //NOI18N
113: }
114:
115: /**
116: * Run project
117: * @throws java.io.IOException
118: */
119: public void testRunWsClientProject() throws IOException {
120: runProject(getProjectName());
121: OutputTabOperator oto = new OutputTabOperator(getProjectName());
122: assertTrue(oto.getText().indexOf("Result = []") > -1); //NOI18N
123: assertTrue(oto.getText().indexOf("BUILD SUCCESSFUL") > -1); //NOI18N
124: }
125:
126: public void testUndeployClientProject() throws IOException {
127: undeployProject(getProjectName());
128: }
129: }
|