use of org.eclipse.linuxtools.internal.valgrind.massif.MassifViewPart in project linuxtools by eclipse.
the class MultiProcessTest method testExecPidMenu.
@Test
public void testExecPidMenu() throws CoreException, URISyntaxException, IOException {
ILaunchConfigurationWorkingCopy config = createConfiguration(proj.getProject()).getWorkingCopy();
config.setAttribute(LaunchConfigurationConstants.ATTR_GENERAL_TRACECHILD, true);
config.doSave();
// $NON-NLS-1$
doLaunch(config, "testExec");
ValgrindViewPart view = ValgrindUIPlugin.getDefault().getView();
MassifViewPart dynamicView = (MassifViewPart) view.getDynamicView();
MassifOutput output = dynamicView.getOutput();
MassifPidMenuAction menuAction = null;
IToolBarManager manager = view.getViewSite().getActionBars().getToolBarManager();
for (IContributionItem item : manager.getItems()) {
if (item instanceof ActionContributionItem && ((ActionContributionItem) item).getAction() instanceof MassifPidMenuAction) {
menuAction = (MassifPidMenuAction) ((ActionContributionItem) item).getAction();
}
}
assertNotNull(menuAction);
Integer[] pids = dynamicView.getOutput().getPids();
Shell shell = new Shell(Display.getCurrent());
Menu pidMenu = menuAction.getMenu(shell);
assertEquals(2, pidMenu.getItemCount());
ActionContributionItem firstPid = (ActionContributionItem) pidMenu.getItem(0).getData();
ActionContributionItem secondPid = (ActionContributionItem) pidMenu.getItem(1).getData();
// check initial state
assertTrue(firstPid.getAction().isChecked());
assertFalse(secondPid.getAction().isChecked());
assertArrayEquals(output.getSnapshots(pids[0]), dynamicView.getSnapshots());
// select second pid
selectItem(pidMenu, 1);
assertFalse(firstPid.getAction().isChecked());
assertTrue(secondPid.getAction().isChecked());
assertArrayEquals(output.getSnapshots(pids[1]), dynamicView.getSnapshots());
// select second pid again
selectItem(pidMenu, 1);
assertFalse(firstPid.getAction().isChecked());
assertTrue(secondPid.getAction().isChecked());
assertArrayEquals(output.getSnapshots(pids[1]), dynamicView.getSnapshots());
// select first pid
selectItem(pidMenu, 0);
assertTrue(firstPid.getAction().isChecked());
assertFalse(secondPid.getAction().isChecked());
assertArrayEquals(output.getSnapshots(pids[0]), dynamicView.getSnapshots());
}
use of org.eclipse.linuxtools.internal.valgrind.massif.MassifViewPart in project linuxtools by eclipse.
the class MultiProcessTest method testNoExec.
@Test
public void testNoExec() throws CoreException, URISyntaxException, IOException {
ILaunchConfiguration config = createConfiguration(proj.getProject());
// $NON-NLS-1$
doLaunch(config, "testNoExec");
MassifViewPart view = (MassifViewPart) ValgrindUIPlugin.getDefault().getView().getDynamicView();
MassifOutput output = view.getOutput();
assertEquals(1, output.getPids().length);
MassifSnapshot[] snapshots = view.getSnapshots();
assertEquals(8, snapshots.length);
checkSnapshots(snapshots, 400, 8);
}
use of org.eclipse.linuxtools.internal.valgrind.massif.MassifViewPart in project linuxtools by eclipse.
the class SortTest method checkSortColumn.
@Test
public void checkSortColumn() {
MassifViewPart view = (MassifViewPart) ValgrindUIPlugin.getDefault().getView().getDynamicView();
TableViewer viewer = view.getTableViewer();
TableColumn control = viewer.getTable().getColumn(column);
// Test ascending
control.notifyListeners(SWT.Selection, null);
assertEquals(SWT.UP, viewer.getTable().getSortDirection());
assertEquals(control, viewer.getTable().getSortColumn());
checkOrder(viewer, column, true);
// Test descending
control.notifyListeners(SWT.Selection, null);
assertEquals(SWT.DOWN, viewer.getTable().getSortDirection());
assertEquals(control, viewer.getTable().getSortColumn());
checkOrder(viewer, column, false);
}
use of org.eclipse.linuxtools.internal.valgrind.massif.MassifViewPart in project linuxtools by eclipse.
the class TreeTest method testNoDetailed.
@Test
public void testNoDetailed() throws CoreException, URISyntaxException, IOException {
ILaunchConfiguration config = createConfiguration(proj.getProject());
ILaunchConfigurationWorkingCopy wc = config.getWorkingCopy();
// >
wc.setAttribute(MassifLaunchConstants.ATTR_MASSIF_DETAILEDFREQ, 12);
// #snapshots
wc.doSave();
// $NON-NLS-1$
doLaunch(config, "testNoDetailed");
MassifViewPart view = (MassifViewPart) ValgrindUIPlugin.getDefault().getView().getDynamicView();
TreeViewer treeViewer = view.getTreeViewer().getViewer();
MassifHeapTreeNode[] nodes = (MassifHeapTreeNode[]) treeViewer.getInput();
assertNotNull(nodes);
// should always contain peak
assertEquals(1, nodes.length);
}
use of org.eclipse.linuxtools.internal.valgrind.massif.MassifViewPart in project linuxtools by eclipse.
the class TreeTest method testTreeNodes.
@Test
public void testTreeNodes() throws CoreException, URISyntaxException, IOException {
ILaunchConfiguration config = createConfiguration(proj.getProject());
ILaunchConfigurationWorkingCopy wc = config.getWorkingCopy();
wc.setAttribute(MassifLaunchConstants.ATTR_MASSIF_DETAILEDFREQ, 2);
wc.doSave();
// $NON-NLS-1$
doLaunch(config, "testTreeNodes");
MassifViewPart view = (MassifViewPart) ValgrindUIPlugin.getDefault().getView().getDynamicView();
TreeViewer treeViewer = view.getTreeViewer().getViewer();
MassifSnapshot[] snapshots = view.getSnapshots();
MassifHeapTreeNode[] nodes = (MassifHeapTreeNode[]) treeViewer.getInput();
for (int i = 0; i < nodes.length; i++) {
// every odd snapshot should be detailed with --detailed-freq=2
// and thus in the tree
assertEquals(snapshots[2 * i + 1].getRoot(), nodes[i]);
}
}
Aggregations