/******************************************************************************* * Copyright (c) 2000, 2010 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.internal.junit.ui; import org.eclipse.swt.SWTError; import org.eclipse.swt.dnd.Clipboard; import org.eclipse.swt.dnd.DND; import org.eclipse.swt.dnd.TextTransfer; import org.eclipse.swt.dnd.Transfer; import org.eclipse.jface.action.Action; import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.ui.PlatformUI; import org.eclipse.jdt.internal.junit.model.TestElement; import org.eclipse.jdt.internal.ui.JavaPlugin; /** * Copies the names of the methods that failed and their traces to the clipboard. */ public class CopyFailureListAction extends Action { private final Clipboard fClipboard; private final TestRunnerViewPart fRunner; public CopyFailureListAction(TestRunnerViewPart runner, Clipboard clipboard) { super(JUnitMessages.CopyFailureList_action_label); fRunner= runner; fClipboard= clipboard; PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJUnitHelpContextIds.COPYFAILURELIST_ACTION); } /* * @see IAction#run() */ @Override public void run() { TextTransfer plainTextTransfer = TextTransfer.getInstance(); try { fClipboard.setContents( new String[] { getAllFailureTraces() }, new Transfer[] { plainTextTransfer }); } catch (SWTError e){ if (e.code != DND.ERROR_CANNOT_SET_CLIPBOARD) throw e; if (MessageDialog.openQuestion(JavaPlugin.getActiveWorkbenchShell(), JUnitMessages.CopyFailureList_problem, JUnitMessages.CopyFailureList_clipboard_busy)) run(); } } public String getAllFailureTraces() { StringBuffer buf= new StringBuffer(); TestElement[] failures= fRunner.getAllFailures(); String lineDelim= System.getProperty("line.separator", "\n"); //$NON-NLS-1$//$NON-NLS-2$ for (TestElement failure : failures) { buf.append(failure.getTestName()).append(lineDelim); String failureTrace= failure.getTrace(); if (failureTrace != null) { int start= 0; while (start < failureTrace.length()) { int idx= failureTrace.indexOf('\n', start); if (idx != -1) { String line= failureTrace.substring(start, idx); buf.append(line).append(lineDelim); start= idx + 1; } else { start= Integer.MAX_VALUE; } } } } return buf.toString(); } }