/* * Copyright 2000-2015 JetBrains s.r.o. * * 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.intellij.execution.testframework.sm.runner.history.actions; import com.intellij.execution.TestStateStorage; import com.intellij.execution.testframework.sm.TestHistoryConfiguration; import com.intellij.execution.testframework.sm.runner.SMTRunnerConsoleProperties; import com.intellij.icons.AllIcons; import com.intellij.openapi.actionSystem.ActionGroup; import com.intellij.openapi.actionSystem.AnAction; import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openapi.actionSystem.Separator; import com.intellij.openapi.project.Project; import com.intellij.util.Function; import com.intellij.util.containers.ContainerUtil; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.io.File; import java.util.*; public class ImportTestsGroup extends ActionGroup { private SMTRunnerConsoleProperties myProperties; public ImportTestsGroup() { super("Import Test Results", "Import Test Results", AllIcons.Vcs.History); setPopup(true); } public ImportTestsGroup(SMTRunnerConsoleProperties properties) { this(); myProperties = properties; } @NotNull @Override public AnAction[] getChildren(@Nullable AnActionEvent e) { if (e == null) return EMPTY_ARRAY; final Project project = e.getProject(); if (project == null) return EMPTY_ARRAY; final Collection<String> filePaths = TestHistoryConfiguration.getInstance(project).getFiles(); final File testHistoryRoot = TestStateStorage.getTestHistoryRoot(project); final List<File> fileNames = ContainerUtil.map(filePaths, fileName -> new File(testHistoryRoot, fileName)); Collections.sort(fileNames, (f1, f2) -> f1.lastModified() > f2.lastModified() ? -1 : 1); final int historySize = fileNames.size(); final AnAction[] actions = new AnAction[historySize + 2]; for (int i = 0; i < historySize; i++) { actions[i] = new ImportTestsFromHistoryAction(myProperties, project, fileNames.get(i).getName()); } actions[historySize] = Separator.getInstance(); actions[historySize + 1] = new ImportTestsFromFileAction(myProperties); return actions; } @Override public void update(AnActionEvent e) { e.getPresentation().setEnabledAndVisible(e.getProject() != null); } }