lttng: Fix ControlViewTest
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.control.ui.tests / src / org / eclipse / tracecompass / lttng2 / control / ui / tests / model / component / TraceControlTreeModelNoProvidersTest.java
1 /**********************************************************************
2 * Copyright (c) 2012, 2015 Ericsson
3 *
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
8 *
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 * Alexandre Montplaisir - Port to JUnit4
12 * Markus Schorn - Bug 448058: Use org.eclipse.remote in favor of RSE
13 **********************************************************************/
14
15 package org.eclipse.tracecompass.lttng2.control.ui.tests.model.component;
16
17 import static org.junit.Assert.assertEquals;
18 import static org.junit.Assert.assertFalse;
19 import static org.junit.Assert.assertNotNull;
20 import static org.junit.Assert.assertNotSame;
21 import static org.junit.Assert.assertTrue;
22
23 import java.io.File;
24 import java.net.URL;
25
26 import org.eclipse.core.runtime.FileLocator;
27 import org.eclipse.core.runtime.Path;
28 import org.eclipse.jdt.annotation.NonNull;
29 import org.eclipse.remote.core.IRemoteConnection;
30 import org.eclipse.swt.graphics.Image;
31 import org.eclipse.tracecompass.internal.lttng2.control.core.model.TargetNodeState;
32 import org.eclipse.tracecompass.internal.lttng2.control.stubs.service.TestRemoteSystemProxy;
33 import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.ITraceControlComponent;
34 import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.TargetNodeComponent;
35 import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.TraceProviderGroup;
36 import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.TraceSessionGroup;
37 import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.UstProviderComponent;
38 import org.eclipse.tracecompass.internal.lttng2.control.ui.views.service.ILttngControlService;
39 import org.eclipse.tracecompass.internal.lttng2.control.ui.views.service.LTTngControlService;
40 import org.eclipse.tracecompass.tmf.remote.core.proxy.TmfRemoteConnectionFactory;
41 import org.junit.After;
42 import org.junit.Before;
43 import org.junit.Test;
44 import org.osgi.framework.FrameworkUtil;
45
46 /**
47 * The class <code>TraceControlTreeModelNoProvidersTest</code> verifies that the
48 * Tracer Control can handle the case where no kernel provider and only UST
49 * provider are available.
50 */
51 public class TraceControlTreeModelNoProvidersTest {
52
53 // ------------------------------------------------------------------------
54 // Constants
55 // ------------------------------------------------------------------------
56
57 private static final String TEST_STREAM = "ListInfoTest.cfg";
58 private static final String SCEN_LIST_INFO_TEST = "ListInfoTestNoKernel";
59 private static final String TARGET_NODE_NAME = "myNode";
60
61 // ------------------------------------------------------------------------
62 // Test data
63 // ------------------------------------------------------------------------
64 private TraceControlTestFacility fFacility;
65 private IRemoteConnection fHost = TmfRemoteConnectionFactory.getLocalConnection();
66 private @NonNull TestRemoteSystemProxy fProxy = new TestRemoteSystemProxy(fHost);
67 private String fTestFile;
68
69 // ------------------------------------------------------------------------
70 // Housekeeping
71 // ------------------------------------------------------------------------
72
73 /**
74 * Perform pre-test initialization.
75 *
76 * @throws Exception
77 * if the initialization fails for some reason
78 */
79 @Before
80 public void setUp() throws Exception {
81 fFacility = TraceControlTestFacility.getInstance();
82 fFacility.init();
83 URL location = FileLocator.find(FrameworkUtil.getBundle(this.getClass()), new Path(TraceControlTestFacility.DIRECTORY + File.separator + TEST_STREAM), null);
84 File testfile = new File(FileLocator.toFileURL(location).toURI());
85 fTestFile = testfile.getAbsolutePath();
86 }
87
88 /**
89 * Perform post-test clean-up.
90 */
91 @After
92 public void tearDown() {
93 fFacility.dispose();
94 }
95
96 /**
97 * Run the TraceControlComponent.
98 */
99 @Test
100 public void testTraceControlComponents() {
101
102 fProxy.setTestFile(fTestFile);
103 fProxy.setScenario(SCEN_LIST_INFO_TEST);
104
105 ITraceControlComponent root = fFacility.getControlView().getTraceControlRoot();
106
107 TargetNodeComponent node = new TargetNodeComponent(TARGET_NODE_NAME, root, fProxy);
108
109 root.addChild(node);
110 node.connect();
111
112 fFacility.waitForConnect(node);
113 fFacility.waitForJobs();
114
115 // ------------------------------------------------------------------------
116 // Verify Parameters of TargetNodeComponent
117 // ------------------------------------------------------------------------
118 assertEquals("Local", node.getToolTip()); // assigned in createLocalHost() above
119 Image connectedImage = node.getImage();
120 assertNotNull(connectedImage);
121 assertEquals(TargetNodeState.CONNECTED, node.getTargetNodeState());
122 assertNotNull(node.getControlService());
123 ILttngControlService service = node.getControlService();
124 assertTrue(service instanceof LTTngControlService);
125 node.setControlService(service);
126 assertTrue(node.getControlService() instanceof LTTngControlService);
127
128 // ------------------------------------------------------------------------
129 // Verify Children of TargetNodeComponent
130 // ------------------------------------------------------------------------
131 ITraceControlComponent[] groups = node.getChildren();
132 assertNotNull(groups);
133 assertEquals(2, groups.length);
134
135 assertTrue(groups[0] instanceof TraceProviderGroup);
136 assertTrue(groups[1] instanceof TraceSessionGroup);
137
138 // Check for kernel provider
139 TraceProviderGroup providerGroup = (TraceProviderGroup) groups[0];
140 assertFalse(providerGroup.hasKernelProvider());
141
142 assertEquals("Provider", providerGroup.getName());
143 assertEquals("Sessions", groups[1].getName());
144
145 // ------------------------------------------------------------------------
146 // Verify TraceProviderGroup
147 // ------------------------------------------------------------------------
148 ITraceControlComponent[] providers = groups[0].getChildren();
149
150 assertNotNull(providers);
151 assertEquals(1, providers.length);
152 assertTrue(providers[0] instanceof UstProviderComponent);
153
154 // disconnect
155 node.disconnect();
156 assertEquals(TargetNodeState.DISCONNECTED, node.getTargetNodeState());
157 assertNotNull(node.getImage());
158 assertNotSame(connectedImage, node.getImage());
159
160 node.getParent().removeChild(node);
161 }
162 }
This page took 0.051788 seconds and 5 git commands to generate.