|
What this is
Other links
The source code
/*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License
* Version 1.0 (the "License"). You may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.sun.com/
*
* The Original Code is NetBeans. The Initial Developer of the Original
* Code is Sun Microsystems, Inc. Portions Copyright 1997-2004 Sun
* Microsystems, Inc. All Rights Reserved.
*/
package gui.action;
import org.netbeans.jellytools.ProjectsTabOperator;
import org.netbeans.jellytools.actions.MaximizeWindowAction;
import org.netbeans.jellytools.actions.RestoreWindowAction;
import org.netbeans.jellytools.nodes.Node;
import org.netbeans.jemmy.operators.ComponentOperator;
/**
* Test of expanding nodes/folders in the Explorer.
*
* @author mmirilovic@netbeans.org
*/
public class ExpandNodesWebProjectsView extends testUtilities.PerformanceTestCase {
/** Name of the folder which test creates and expands */
private static String project;
/** Path to the folder which test creates and expands */
private static String pathToFolderNode;
/** Node represantation of the folder which test creates and expands */
private static Node nodeToBeExpanded;
/** Projects tab */
private static ProjectsTabOperator projectTab;
/** Project with data for these tests */
private static String testDataProject = "PerformanceTestFolderWebApp";
/**
* Creates a new instance of ExpandNodesInExplorer
* @param testName the name of the test
*/
public ExpandNodesWebProjectsView(String testName) {
super(testName);
expectedTime = WINDOW_OPEN;
}
/**
* Creates a new instance of ExpandNodesInExplorer
* @param testName the name of the test
* @param performanceDataName measured values will be saved under this name
*/
public ExpandNodesWebProjectsView(String testName, String performanceDataName) {
super(testName, performanceDataName);
expectedTime = WINDOW_OPEN;
}
public void testExpandProjectNode(){
WAIT_AFTER_OPEN = 1000;
WAIT_AFTER_PREPARE = 2000;
project = testDataProject;
pathToFolderNode = "";
doMeasurement();
}
public void testExpandSourcePackagesNode(){
WAIT_AFTER_OPEN = 1000;
WAIT_AFTER_PREPARE = 2000;
project = testDataProject;
pathToFolderNode = "Source Packages";
doMeasurement();
}
public void testExpandFolderWith50JspFiles(){
WAIT_AFTER_OPEN = 1000;
WAIT_AFTER_PREPARE = 2000;
project = testDataProject;
pathToFolderNode = "Web Pages|jsp50";
doMeasurement();
}
public void testExpandFolderWith100JspFiles(){
WAIT_AFTER_OPEN = 1000;
WAIT_AFTER_PREPARE = 2000;
project = testDataProject;
pathToFolderNode = "Web Pages|jsp100";
doMeasurement();
}
public void initialize(){
projectTab = new ProjectsTabOperator();
new MaximizeWindowAction().performAPI(projectTab);
projectTab.getProjectRootNode("PerformanceTestData").collapse();
projectTab.getProjectRootNode("TestWebProject").collapse();
projectTab.getProjectRootNode("PerformanceTestFoldersData").collapse();
//projectTab.getProjectRootNode(testDataProject).collapse();
turnBadgesOff();
addClassNameToLookFor("explorer.view");
setPrintClassNames(true);
}
public void prepare() {
if(pathToFolderNode.equals(""))
nodeToBeExpanded = projectTab.getProjectRootNode(project);
else
nodeToBeExpanded = new Node(projectTab.getProjectRootNode(project), pathToFolderNode);
}
public ComponentOperator open(){
nodeToBeExpanded.tree().clickOnPath(nodeToBeExpanded.getTreePath(), 2);
// nodeToBeExpanded.tree().clickMouse(2);
// nodeToBeExpanded.waitExpanded();
nodeToBeExpanded.expand();
return null;
}
public void close(){
nodeToBeExpanded.collapse();
}
public void shutdown() {
turnBadgesOn();
projectTab.getProjectRootNode(testDataProject).collapse();
new RestoreWindowAction().performAPI(projectTab);
}
/**
* turn badges off
*/
protected void turnBadgesOff() {
System.setProperty("perf.dont.resolve.java.badges", "true");
}
/**
* turn badges on
*/
protected void turnBadgesOn() {
System.setProperty("perf.dont.resolve.java.badges", "false");
}
}
|
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.