tmf: Fix GTK bug when setting top item after changing tree font
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.control.ui.tests / src / org / eclipse / tracecompass / lttng2 / control / ui / tests / model / component / TraceControlKernelProviderTests.java
CommitLineData
a26d90be 1/**********************************************************************
533d0bc3 2 * Copyright (c) 2012, 2015 Ericsson
cfdb727a 3 *
a26d90be
BH
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
cfdb727a
AM
8 *
9 * Contributors:
a26d90be 10 * Bernd Hufmann - Initial API and implementation
2ba3d0a1 11 * Alexandre Montplaisir - Port to JUnit4
b732adaa 12 * Markus Schorn - Bug 448058: Use org.eclipse.remote in favor of RSE
a26d90be 13 **********************************************************************/
2ba3d0a1 14
9bc60be7 15package org.eclipse.tracecompass.lttng2.control.ui.tests.model.component;
a26d90be 16
2ba3d0a1
AM
17import static org.junit.Assert.assertEquals;
18import static org.junit.Assert.assertNotNull;
19import static org.junit.Assert.assertTrue;
20
a26d90be
BH
21import java.io.File;
22import java.net.URL;
23
a26d90be
BH
24import org.eclipse.core.runtime.FileLocator;
25import org.eclipse.core.runtime.Path;
d8a4fd60 26import org.eclipse.jdt.annotation.NonNull;
b732adaa 27import org.eclipse.remote.core.IRemoteConnection;
9bc60be7
AM
28import org.eclipse.tracecompass.internal.lttng2.control.core.model.TargetNodeState;
29import org.eclipse.tracecompass.internal.lttng2.control.core.model.TraceChannelOutputType;
30import org.eclipse.tracecompass.internal.lttng2.control.core.model.TraceEnablement;
31import org.eclipse.tracecompass.internal.lttng2.control.core.model.TraceEventType;
32import org.eclipse.tracecompass.internal.lttng2.control.core.model.TraceLogLevel;
33import org.eclipse.tracecompass.internal.lttng2.control.core.model.TraceSessionState;
34import org.eclipse.tracecompass.internal.lttng2.control.stubs.dialogs.CreateSessionDialogStub;
35import org.eclipse.tracecompass.internal.lttng2.control.stubs.dialogs.DestroyConfirmDialogStub;
36import org.eclipse.tracecompass.internal.lttng2.control.stubs.dialogs.GetEventInfoDialogStub;
37import org.eclipse.tracecompass.internal.lttng2.control.stubs.service.TestRemoteSystemProxy;
38import org.eclipse.tracecompass.internal.lttng2.control.ui.views.dialogs.TraceControlDialogFactory;
39import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.ITraceControlComponent;
40import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.BaseEventComponent;
41import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.KernelProviderComponent;
42import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.TargetNodeComponent;
43import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.TraceChannelComponent;
44import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.TraceEventComponent;
45import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.TraceProviderGroup;
46import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.TraceSessionComponent;
b6b4e8b4 47import org.eclipse.tracecompass.tmf.remote.core.proxy.TmfRemoteConnectionFactory;
a26d90be
BH
48import org.junit.After;
49import org.junit.Before;
2ba3d0a1 50import org.junit.Test;
9269df72 51import org.osgi.framework.FrameworkUtil;
a26d90be
BH
52
53/**
2ba3d0a1
AM
54 * The class <code>TraceControlKernelProviderTests</code> contains UST provider
55 * handling test cases.
a26d90be 56 */
2ba3d0a1 57public class TraceControlKernelProviderTests {
a26d90be
BH
58
59 // ------------------------------------------------------------------------
60 // Constants
61 // ------------------------------------------------------------------------
2ba3d0a1 62
a26d90be
BH
63 private static final String TEST_STREAM = "CreateTreeTest.cfg";
64 private static final String SCEN_SCENARIO1_TEST = "Scenario1";
65
66 // ------------------------------------------------------------------------
67 // Test data
68 // ------------------------------------------------------------------------
2ba3d0a1 69
a26d90be 70 private TraceControlTestFacility fFacility;
b6b4e8b4 71 private IRemoteConnection fHost = TmfRemoteConnectionFactory.getLocalConnection();
d8a4fd60 72 private @NonNull TestRemoteSystemProxy fProxy = new TestRemoteSystemProxy(fHost);
cfdb727a
AM
73 private String fTestFile;
74
a26d90be
BH
75 // ------------------------------------------------------------------------
76 // Housekeeping
77 // ------------------------------------------------------------------------
78
79 /**
80 * Perform pre-test initialization.
81 *
82 * @throws Exception
83 * if the initialization fails for some reason
a26d90be 84 */
a26d90be
BH
85 @Before
86 public void setUp() throws Exception {
87 fFacility = TraceControlTestFacility.getInstance();
1c3c5807 88 fFacility.init();
9269df72 89 URL location = FileLocator.find(FrameworkUtil.getBundle(this.getClass()), new Path(TraceControlTestFacility.DIRECTORY + File.separator + TEST_STREAM), null);
a26d90be
BH
90 File testfile = new File(FileLocator.toFileURL(location).toURI());
91 fTestFile = testfile.getAbsolutePath();
92 }
93
94 /**
95 * Perform post-test clean-up.
a26d90be 96 */
a26d90be 97 @After
2ba3d0a1 98 public void tearDown() {
1c3c5807 99 fFacility.dispose();
a26d90be 100 }
cfdb727a 101
a26d90be
BH
102 /**
103 * Run the TraceControlComponent.
2ba3d0a1
AM
104 *
105 * @throws Exception
106 * Would fail the test
a26d90be 107 */
2ba3d0a1 108 @Test
a26d90be 109 public void testKernelProviderTree() throws Exception {
cfdb727a 110
a26d90be
BH
111 fProxy.setTestFile(fTestFile);
112 fProxy.setScenario(TraceControlTestFacility.SCEN_INIT_TEST);
cfdb727a 113
1c3c5807 114 ITraceControlComponent root = fFacility.getControlView().getTraceControlRoot();
a26d90be 115
d8a4fd60 116 TargetNodeComponent node = new TargetNodeComponent("myNode", root, fProxy);
a26d90be
BH
117
118 root.addChild(node);
a26d90be
BH
119
120 fFacility.waitForJobs();
121
b957fb8c
BH
122 fFacility.executeCommand(node, "connect");
123 int i = 0;
124 while ((i < 20) && (node.getTargetNodeState() != TargetNodeState.CONNECTED)) {
125 i++;
126 fFacility.delay(TraceControlTestFacility.GUI_REFESH_DELAY);
127 }
128
a26d90be
BH
129 // Verify that node is connected
130 assertEquals(TargetNodeState.CONNECTED, node.getTargetNodeState());
131
a07c7629 132 // Get provider and session group
a26d90be
BH
133 ITraceControlComponent[] groups = node.getChildren();
134 assertNotNull(groups);
135 assertEquals(2, groups.length);
136
a07c7629
BH
137 // Check for kernel provider
138 TraceProviderGroup providerGroup = (TraceProviderGroup) groups[0];
139 assertTrue(providerGroup.hasKernelProvider());
140
a26d90be 141 // Get kernel provider
a07c7629 142 ITraceControlComponent[] providers = providerGroup.getChildren();
a26d90be
BH
143 KernelProviderComponent kernelProvider = (KernelProviderComponent) providers[0];
144
cfdb727a 145 // Get kernel provider events and select 2 events
a26d90be
BH
146 ITraceControlComponent[] events = kernelProvider.getChildren();
147 assertNotNull(events);
148 assertEquals(3, events.length);
149
150 BaseEventComponent baseEventInfo0 = (BaseEventComponent) events[0];
151 BaseEventComponent baseEventInfo1 = (BaseEventComponent) events[1];
152
153 // Initialize dialog implementations for command execution
154 TraceControlDialogFactory.getInstance().setCreateSessionDialog(new CreateSessionDialogStub());
155 TraceControlDialogFactory.getInstance().setGetEventInfoDialog(new GetEventInfoDialogStub());
156 TraceControlDialogFactory.getInstance().setConfirmDialog(new DestroyConfirmDialogStub());
157
158 // Initialize session handling scenario
159 fProxy.setScenario(TraceControlTestFacility.SCEN_SCENARIO_SESSION_HANDLING);
cfdb727a 160
a26d90be
BH
161 // ------------------------------------------------------------------------
162 // Create session
163 // ------------------------------------------------------------------------
164 TraceSessionComponent session = fFacility.createSession(groups[1]);
cfdb727a 165
a26d90be
BH
166 // Verify that session was created
167 assertNotNull(session);
168 assertEquals("mysession", session.getName());
169 assertEquals("/home/user/lttng-traces/mysession-20120314-132824", session.getSessionPath());
170 assertEquals(TraceSessionState.INACTIVE, session.getSessionState());
171
172 // ------------------------------------------------------------------------
173 // Enable event on default channel on created session above
174 // ------------------------------------------------------------------------
175 // Initialize scenario
176 fProxy.setScenario(SCEN_SCENARIO1_TEST);
177
178 ITraceControlComponent[] components = { baseEventInfo0, baseEventInfo1 };
179
180 fFacility.executeCommand(components, "assign.event");
cfdb727a 181
a26d90be
BH
182 // Verify that kernel domain was created
183 ITraceControlComponent[] domains = session.getChildren();
184 assertNotNull(domains);
185 assertEquals(1, domains.length);
186
187 assertEquals("Kernel", domains[0].getName());
cfdb727a 188
a26d90be
BH
189 // Verify that channel0 was created with default values
190 ITraceControlComponent[] channels = domains[0].getChildren();
191 assertNotNull(channels);
192 assertEquals(1, channels.length);
193
194 assertTrue(channels[0] instanceof TraceChannelComponent);
cfdb727a 195 TraceChannelComponent channel = (TraceChannelComponent) channels[0];
a26d90be
BH
196 assertEquals("channel0", channel.getName());
197 assertEquals(4, channel.getNumberOfSubBuffers());
0ad9fc89
JRJ
198 assertEquals("splice()", channel.getOutputType().getInName());
199 assertEquals(TraceChannelOutputType.SPLICE, channel.getOutputType());
a26d90be
BH
200 assertEquals(false, channel.isOverwriteMode());
201 assertEquals(200, channel.getReadTimer());
202 assertEquals(TraceEnablement.ENABLED, channel.getState());
203 assertEquals(262144, channel.getSubBufferSize());
204 assertEquals(0, channel.getSwitchTimer());
205
206 // Verify that event components were created
207 ITraceControlComponent[] channel0Events = channel.getChildren();
208 assertNotNull(channel0Events);
209 assertEquals(2, channel0Events.length);
210 assertTrue(channel0Events[0] instanceof TraceEventComponent);
211 assertTrue(channel0Events[1] instanceof TraceEventComponent);
212
213 TraceEventComponent event = (TraceEventComponent) channel0Events[0];
214 assertEquals("sched_kthread_stop_ret", event.getName());
215 assertEquals(TraceLogLevel.TRACE_EMERG, event.getLogLevel());
216 assertEquals(TraceEventType.TRACEPOINT, event.getEventType());
217 assertEquals(TraceEnablement.ENABLED, event.getState());
218
219 TraceEventComponent event1 = (TraceEventComponent) channel0Events[1];
220 assertEquals("sched_kthread_stop", event1.getName());
221 assertEquals(TraceLogLevel.TRACE_EMERG, event1.getLogLevel());
222 assertEquals(TraceEventType.TRACEPOINT, event1.getEventType());
223 assertEquals(TraceEnablement.ENABLED, event1.getState());
224
225 // ------------------------------------------------------------------------
cfdb727a 226 // Disable event components
a26d90be
BH
227 // ------------------------------------------------------------------------
228 ITraceControlComponent[] selection = { event, event1 };
229 fFacility.executeCommand(selection, "disableEvent");
cfdb727a 230
a26d90be
BH
231 assertEquals(TraceEnablement.DISABLED, event.getState());
232 assertEquals(TraceEnablement.DISABLED, event1.getState());
233
234 // ------------------------------------------------------------------------
cfdb727a 235 // Enable event component
a26d90be
BH
236 // ------------------------------------------------------------------------
237 fFacility.executeCommand(event1, "enableEvent");
cfdb727a 238
a26d90be
BH
239 // Verify event state
240 assertEquals(TraceEnablement.ENABLED, event1.getState());
cfdb727a 241
a26d90be 242 // ------------------------------------------------------------------------
cfdb727a 243 // Destroy session
a26d90be
BH
244 // ------------------------------------------------------------------------
245 // Initialize session handling scenario
246 fProxy.setScenario(TraceControlTestFacility.SCEN_SCENARIO_SESSION_HANDLING);
cfdb727a 247
a26d90be 248 fFacility.destroySession(session);
cfdb727a 249
a26d90be
BH
250 // Verify that no more session components exist
251 assertEquals(0, groups[1].getChildren().length);
252
253 //-------------------------------------------------------------------------
254 // Disconnect node
255 //-------------------------------------------------------------------------
256 fFacility.executeCommand(node, "disconnect");
257 assertEquals(TargetNodeState.DISCONNECTED, node.getTargetNodeState());
cfdb727a 258
a26d90be
BH
259 //-------------------------------------------------------------------------
260 // Delete node
261 //-------------------------------------------------------------------------
262 fFacility.executeCommand(node, "delete");
263 assertEquals(0, fFacility.getControlView().getTraceControlRoot().getChildren().length);
264
265 }
266}
This page took 0.078967 seconds and 5 git commands to generate.