blob: 63df693dc1aa2325f058585531b3b0f02e9ccdb9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 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.jface.tests.performance;
import java.util.ArrayList;
import java.util.Collection;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.test.performance.Dimension;
import org.eclipse.ui.tests.performance.TestRunnable;
public class FastTreeTest extends TreeAddTest {
public FastTreeTest(String testName, int tagging) {
super(testName, tagging);
}
public FastTreeTest(String testName) {
super(testName);
}
/**
* @throws CoreException
* Test addition to the tree one element at a time.
*/
public void testAddTenTenTimes() throws CoreException {
doTestAdd(10, TEST_COUNT, false);
}
/**
* @throws CoreException
* Test addition to the tree one element at a time.
*/
public void testAddFiftyTenTimes() throws CoreException {
doTestAdd(50, TEST_COUNT, false);
}
/**
* @throws CoreException
* Test addition to the tree one element at a time.
*/
public void testAddHundredTenTimes() throws CoreException {
tagIfNecessary("JFace - Add 10000 items 100 at a time TreeViewer 10 times",
Dimension.ELAPSED_PROCESS);
doTestAdd(100, TEST_COUNT, false);
}
/**
* Run the test for one of the fast insertions.
*
* @param count
* @throws CoreException
*/
protected void doTestAdd(final int increment, final int total,final boolean preSort)
throws CoreException {
openBrowser();
exercise(new TestRunnable() {
public void run() {
TestTreeElement input = new TestTreeElement(0, null);
viewer.setInput(input);
input.createChildren(total);
if (preSort)
viewer.getSorter().sort(viewer, input.children);
Collection batches = new ArrayList();
int blocks = input.children.length / increment;
for (int j = 0; j < blocks; j = j + increment) {
Object[] batch = new Object[increment];
System.arraycopy(input.children, j * increment, batch, 0,
increment);
batches.add(batch);
}
processEvents();
Object[] batchArray = batches.toArray();
startMeasuring();
for (int i = 0; i < 10; i++) {
viewer.remove(input.children);
for (int k = 0; k < batchArray.length; k++) {
viewer.add(input, (Object[]) batchArray[k]);
processEvents();
}
}
stopMeasuring();
}
}, MIN_ITERATIONS, ITERATIONS, JFacePerformanceSuite.MAX_TIME);
commitMeasurements();
assertPerformance();
}
}