/******************************************************************************* * Copyright (c) 2000, 2008 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.text.tests.performance; import junit.framework.Test; import junit.framework.TestSuite; import org.eclipse.test.performance.Dimension; import org.eclipse.test.performance.PerformanceMeter; import org.eclipse.core.runtime.CoreException; import org.eclipse.jface.action.IAction; import org.eclipse.ui.texteditor.AbstractTextEditor; /** * Measures the time to format a large compilation unit. * * @since 3.1 */ public class JavaFormatterTest extends TextPerformanceTestCase { private static final Class<JavaFormatterTest> THIS= JavaFormatterTest.class; private static final String FILE= PerformanceTestSetup.STYLED_TEXT; private static final int WARM_UP_RUNS= 3; private static final int MEASURED_RUNS= 3; private AbstractTextEditor fEditor; public static Test suite() { return new PerformanceTestSetup(new TestSuite(THIS)); } @Override protected void setUp() throws Exception { super.setUp(); fEditor= (AbstractTextEditor) EditorTestHelper.openInEditor(ResourceTestHelper.findFile(FILE), true); EditorTestHelper.joinBackgroundActivities(fEditor); setWarmUpRuns(WARM_UP_RUNS); setMeasuredRuns(MEASURED_RUNS); } @Override protected void tearDown() throws Exception { super.tearDown(); EditorTestHelper.closeAllEditors(); } /** * Measures the time to format a large compilation unit. * * @throws Exception */ public void test() throws Exception { measure(getNullPerformanceMeter(), getWarmUpRuns()); PerformanceMeter performanceMeter= createPerformanceMeterForSummary("Java Editor: format", Dimension.ELAPSED_PROCESS); measure(performanceMeter, getMeasuredRuns()); commitAllMeasurements(); assertAllPerformance(); } private void measure(PerformanceMeter performanceMeter, int runs) throws CoreException { IAction format= fEditor.getAction("Format"); for (int i= 0; i < runs; i++) { fEditor.selectAndReveal(0, 0); performanceMeter.start(); runAction(format); performanceMeter.stop(); EditorTestHelper.revertEditor(fEditor, true); EditorTestHelper.joinBackgroundActivities(fEditor); } } private void runAction(IAction action) { action.run(); EditorTestHelper.runEventQueue(); } }