Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 813f537d5e31b5e393f3424a652ba773938a859b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*******************************************************************************
 * Copyright (c) 2013 Red Hat Inc.
 * 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:
 *     Red Hat Inc. - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.internal.perf.swtbot.tests;

import org.eclipse.linuxtools.internal.perf.PerfPlugin;
import org.eclipse.linuxtools.internal.perf.ui.StatView;
import org.eclipse.swtbot.eclipse.finder.SWTWorkbenchBot;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotCheckBox;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotSpinner;

/**
 * SWTBot test for StatView.
 */
public class StatViewTest extends AbstractStyledTextViewTest {
	private static final int STAT_RUNS = 3;

	@Override
	protected void setPerfOptions(SWTWorkbenchBot bot) {
		SWTBotCheckBox chkBox = bot.checkBox("Show Stat View");
		assertNotNull(chkBox);
		chkBox.select();

		SWTBotSpinner spinner = bot.spinner();
		assertNotNull(spinner);
		spinner.setSelection(STAT_RUNS);

	}

	@Override
	protected void openStubView() {
		PerfPlugin.getDefault().setStatData(new StubPerfData());
		StatView.refreshView();
	}

	@Override
	protected String getViewId() {
		return "Perf Statistics";
	}

	@Override
	protected String getExpectedText() {
		return PerfPlugin.getDefault().getStatData().getPerfData();
	}
}

Back to the top