/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.testng.ide.action; import static org.eclipse.che.ide.workspace.perspectives.project.ProjectPerspective.PROJECT_PERSPECTIVE_ID; import java.util.Arrays; import java.util.HashMap; import java.util.Map; import javax.validation.constraints.NotNull; import org.eclipse.che.ide.api.action.AbstractPerspectiveAction; import org.eclipse.che.ide.api.action.ActionEvent; import org.eclipse.che.ide.api.app.AppContext; import org.eclipse.che.ide.api.editor.EditorAgent; import org.eclipse.che.ide.api.notification.NotificationManager; import org.eclipse.che.ide.api.resources.VirtualFile; import org.eclipse.che.ide.api.selection.Selection; import org.eclipse.che.ide.api.selection.SelectionAgent; import org.eclipse.che.ide.ext.java.client.util.JavaUtil; import org.eclipse.che.ide.resources.tree.FileNode; import org.eclipse.che.ide.rest.DtoUnmarshallerFactory; import org.eclipse.che.plugin.testing.ide.TestServiceClient; import org.eclipse.che.plugin.testing.ide.action.RunTestActionDelegate; import org.eclipse.che.plugin.testing.ide.view.TestResultPresenter; import org.eclipse.che.plugin.testing.testng.ide.TestNGLocalizationConstant; import org.eclipse.che.plugin.testing.testng.ide.TestNGResources; import com.google.inject.Inject; /** * @author Mirage Abeysekara */ public class RunClassContextTestAction extends AbstractPerspectiveAction implements RunTestActionDelegate.Source { private final NotificationManager notificationManager; private final TestResultPresenter presenter; private final TestServiceClient service; private final AppContext appContext; private final SelectionAgent selectionAgent; private final RunTestActionDelegate delegate; @Inject public RunClassContextTestAction(TestNGResources resources, NotificationManager notificationManager, EditorAgent editorAgent, AppContext appContext, TestResultPresenter presenter, TestServiceClient service, DtoUnmarshallerFactory dtoUnmarshallerFactory, SelectionAgent selectionAgent, TestNGLocalizationConstant localization) { super(Arrays.asList(PROJECT_PERSPECTIVE_ID), localization.actionRunClassContextTitle(), localization.actionRunClassContextDescription(), null, resources.testIcon()); this.notificationManager = notificationManager; this.presenter = presenter; this.service = service; this.appContext = appContext; this.selectionAgent = selectionAgent; this.delegate = new RunTestActionDelegate(this); } @Override public void actionPerformed(ActionEvent e) { final Selection< ? > selection = selectionAgent.getSelection(); final Object possibleNode = selection.getHeadElement(); if (possibleNode instanceof FileNode) { VirtualFile file = ((FileNode)possibleNode).getData(); String fqn = JavaUtil.resolveFQN(file); Map<String, String> parameters = new HashMap<>(); parameters.put("fqn", fqn); parameters.put("runClass", "true"); delegate.doRunTests(e, parameters); } } @Override public void updateInPerspective(@NotNull ActionEvent e) { if ((appContext.getRootProject() == null)) { e.getPresentation().setEnabledAndVisible(false); return; } final Selection< ? > selection = selectionAgent.getSelection(); if (selection == null || selection.isEmpty()) { e.getPresentation().setEnabledAndVisible(false); return; } if (selection.isMultiSelection()) { e.getPresentation().setEnabledAndVisible(false); return; } final Object possibleNode = selection.getHeadElement(); if (!(possibleNode instanceof FileNode)) { e.getPresentation().setEnabledAndVisible(false); return; } e.getPresentation().setVisible(true); boolean enable = "java".equals(((FileNode)possibleNode).getData().getExtension()); e.getPresentation().setEnabled(enable); } @Override public NotificationManager getNotificationManager() { return notificationManager; } @Override public AppContext getAppContext() { return appContext; } @Override public TestServiceClient getService() { return service; } @Override public TestResultPresenter getPresenter() { return presenter; } @Override public String getTestingFramework() { return "testng"; } }