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: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package org.netbeans.modules.visualweb.gravy.designer;
043:
044: import org.netbeans.jemmy.operators.JPopupMenuOperator;
045: import org.netbeans.jemmy.operators.JLabelOperator;
046: import org.netbeans.jemmy.operators.JButtonOperator;
047: import org.netbeans.jemmy.operators.JTreeOperator;
048: import org.netbeans.jemmy.TimeoutExpiredException;
049: import java.awt.*;
050: import org.netbeans.modules.visualweb.gravy.RaveWindowOperator;
051: import org.netbeans.modules.visualweb.gravy.DocumentOutlineOperator;
052: import org.netbeans.modules.visualweb.gravy.TestUtils;
053: import org.netbeans.modules.visualweb.gravy.Util;
054: import org.netbeans.modules.visualweb.gravy.nodes.Node;
055:
056: /**
057: * This class implements test functionality for the window "Tray".
058: */
059: public class TrayOperator extends DocumentOutlineOperator {
060: /**
061: * Creates an instance of this class.
062: */
063: public TrayOperator() {
064: super (RaveWindowOperator.getDefaultRave());
065: }
066:
067: private JTreeOperator rowsetTreeOperator = null;
068:
069: /**
070: * Initializes (if necessary) and returns an object JTreeOperator
071: * for the rowset tree.
072: * @return the appropriate object JTreeOperator
073: */
074: public JTreeOperator getRowsetTreeOperator() {
075: if (rowsetTreeOperator == null) {
076: rowsetTreeOperator = new JTreeOperator(this , 1);
077: }
078: return rowsetTreeOperator;
079: }
080:
081: private void clickSessionBean() {
082: JTreeOperator tree = getStructTreeOperator();
083: tree.expandPath(tree.findPath("SessionBean1"));
084: }
085:
086: private void pushRowSetPopup_(String rowSetName, String menu) {
087: getRowsetTreeOperator().callPopupOnPath(
088: getRowsetTreeOperator().findPath(
089: new String[] { rowSetName }, false, false));
090: new JPopupMenuOperator().pushMenuNoBlock(menu);
091: }
092:
093: private void selectRowSet_(String rowSetName) {
094: getRowsetTreeOperator().selectPath(
095: getRowsetTreeOperator().findPath(
096: new String[] { rowSetName }, false, false));
097: }
098:
099: private void openRowSet_(String rowSetName) {
100: DocumentOutlineOperator doo = new DocumentOutlineOperator(Util
101: .getMainWindow());
102: doo.makeComponentVisible();
103: Node node = new Node(doo.getStructTreeOperator(),
104: "SessionBean1|" + rowSetName);
105: node.callPopup().pushMenu("Edit SQL Statement");
106: Util.wait(3000);
107:
108: //getRowsetTreeOperator().clickOnPath(getRowsetTreeOperator().findPath(new String[]{rowSetName},false,false),2);
109: }
110:
111: /**
112: * Clicks an item of a popup menu, related to a row set.
113: * @param rowSetName a name of row set
114: * @param menu a name of popup menu item
115: */
116: public void pushRowSetPopup(String rowSetName, String menu) {
117: TestUtils.printComponentList(this );
118: try {
119: pushRowSetPopup_(rowSetName, menu);
120: return;
121: } catch (TimeoutExpiredException ex) {
122: }
123: clickSessionBean();
124: pushRowSetPopup_(rowSetName, menu);
125: }
126:
127: /**
128: * Selects a row set.
129: * @param rowSetName a name of row set
130: */
131: public void selectRowSet(String rowSetName) {
132: try {
133: selectRowSet_(rowSetName);
134: return;
135: } catch (TimeoutExpiredException ex) {
136: }
137: clickSessionBean();
138: selectRowSet_(rowSetName);
139: }
140:
141: /**
142: * Opens a row set.
143: * @param rowSetName a name of row set
144: */
145: public void openRowSet(String rowSetName) {
146: try {
147: openRowSet_(rowSetName);
148: return;
149: } catch (TimeoutExpiredException ex) {
150: }
151: clickSessionBean();
152: openRowSet_(rowSetName);
153: }
154: }
|