blob: 6fba13fbc0679db212f4bd977d0602c3879102d1 [file] [log] [blame]
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.tools.idea.tests.gui.framework.fixture;
import com.google.common.collect.Lists;
import com.intellij.openapi.externalSystem.view.TaskNode;
import com.intellij.openapi.project.Project;
import com.intellij.ui.content.Content;
import com.intellij.ui.treeStructure.Tree;
import org.fest.swing.core.Robot;
import org.fest.swing.edt.GuiTask;
import org.fest.swing.timing.Condition;
import org.jetbrains.annotations.NotNull;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.TreePath;
import java.awt.*;
import java.util.List;
import static com.intellij.util.ui.UIUtil.findComponentOfType;
import static com.intellij.util.ui.tree.TreeUtil.expandAll;
import static org.fest.reflect.core.Reflection.field;
import static org.fest.swing.core.MouseButton.LEFT_BUTTON;
import static org.fest.swing.edt.GuiActionRunner.execute;
import static org.fest.swing.timing.Pause.pause;
import static org.fest.util.Strings.quote;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
public class GradleToolWindowFixture extends ToolWindowFixture {
public GradleToolWindowFixture(@NotNull Project project, @NotNull Robot robot) {
super("Gradle", project, robot);
}
public void runTask(@NotNull final String taskName) {
Content content = getContent("projects");
assertNotNull(content);
final Tree tasksTree = findComponentOfType(content.getComponent(), Tree.class);
assertNotNull(tasksTree);
pause(new Condition("tree gets populated") {
@Override
public boolean test() {
//noinspection ConstantConditions
return !tasksTree.isEmpty() && !field("myBusy").ofType(boolean.class).in(tasksTree).get();
}
});
execute(new GuiTask() {
@Override
protected void executeInEDT() throws Throwable {
expandAll(tasksTree);
}
});
Object root = tasksTree.getModel().getRoot();
final TreePath treePath = findTaskPath((DefaultMutableTreeNode)root, taskName);
final Point locationOnScreen = new Point();
execute(new GuiTask() {
@Override
protected void executeInEDT() throws Throwable {
// We store screen location here because it shows weird (negative) values after 'scrollPathToVisible()' is called.
locationOnScreen.setLocation(tasksTree.getLocationOnScreen());
tasksTree.expandPath(treePath.getParentPath());
tasksTree.scrollPathToVisible(treePath);
}
});
Rectangle bounds = tasksTree.getPathBounds(treePath);
assertNotNull(bounds);
Rectangle visibleRect = tasksTree.getVisibleRect();
Point clickLocation = new Point(locationOnScreen.x + bounds.x + bounds.width / 2 - visibleRect.x,
locationOnScreen.y + bounds.y + bounds.height / 2 - visibleRect.y);
myRobot.click(clickLocation, LEFT_BUTTON, 2);
}
@NotNull
private static TreePath findTaskPath(@NotNull DefaultMutableTreeNode root, @NotNull String taskName) {
List<DefaultMutableTreeNode> path = Lists.newArrayList();
boolean found = fillTaskPath(root, taskName, path);
assertTrue("Failed to find task " + quote(taskName), found);
return new TreePath(path.toArray());
}
private static boolean fillTaskPath(@NotNull DefaultMutableTreeNode node,
@NotNull String taskName,
@NotNull List<DefaultMutableTreeNode> path) {
path.add(node);
Object userObject = node.getUserObject();
if (userObject instanceof TaskNode) {
TaskNode taskNode = (TaskNode)userObject;
if (taskName.equals(taskNode.getName())) {
return true;
}
}
for (int i = 0; i < node.getChildCount(); i++) {
boolean found = fillTaskPath((DefaultMutableTreeNode)node.getChildAt(i), taskName, path);
if (found) {
return true;
}
}
if (!path.isEmpty()) {
path.remove(path.size() - 1);
}
return false;
}
}