Add tests for "lttng list" when using the legacy agent
[lttng-ust-java-tests.git] / lttng-ust-java-tests-jul / src / test / java / org / lttng / ust / agent / integration / events / JulLegacyApiIT.java
1 /*
2 * Copyright (C) 2015, EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19 package org.lttng.ust.agent.integration.events;
20
21 import static org.junit.Assert.assertEquals;
22 import static org.junit.Assert.assertNotNull;
23 import static org.junit.Assert.assertTrue;
24 import static org.junit.Assert.fail;
25
26 import java.lang.reflect.Field;
27 import java.util.Arrays;
28 import java.util.Collections;
29 import java.util.List;
30 import java.util.logging.Level;
31 import java.util.logging.Logger;
32
33 import org.junit.After;
34 import org.junit.AfterClass;
35 import org.junit.Before;
36 import org.junit.BeforeClass;
37 import org.junit.Test;
38 import org.junit.runner.RunWith;
39 import org.lttng.tools.ILttngSession;
40 import org.lttng.tools.ILttngSession.Domain;
41 import org.lttng.ust.agent.ILttngHandler;
42 import org.lttng.ust.agent.LTTngAgent;
43 import org.lttng.ust.agent.utils.JulTestUtils;
44 import org.lttng.ust.agent.utils.TestPrintRunner;
45
46 /**
47 * Enabled events test for the LTTng-UST JUL log handler, using the legacy API.
48 */
49 @RunWith(TestPrintRunner.class)
50 @SuppressWarnings("deprecation")
51 public class JulLegacyApiIT {
52
53 private static final Domain DOMAIN = Domain.JUL;
54
55 private static final String EVENT_NAME_A = "EventA";
56 private static final String EVENT_NAME_B = "EventB";
57
58 private ILttngSession session;
59 private LTTngAgent agent;
60
61 private Logger loggerA;
62 private Logger loggerB;
63
64 /**
65 * Class setup
66 */
67 @BeforeClass
68 public static void julClassSetup() {
69 JulTestUtils.testClassSetup();
70 }
71
72 /**
73 * Class cleanup
74 */
75 @AfterClass
76 public static void julClassCleanup() {
77 JulTestUtils.testClassCleanup();
78 }
79
80 /**
81 * Test setup
82 */
83 @Before
84 public void setup() {
85 loggerA = Logger.getLogger(EVENT_NAME_A);
86 agent = LTTngAgent.getLTTngAgent();
87 loggerB = Logger.getLogger(EVENT_NAME_B);
88
89 loggerA.setLevel(Level.ALL);
90 loggerB.setLevel(Level.ALL);
91
92 session = ILttngSession.createSession(null, DOMAIN);
93 }
94
95 /**
96 * Test cleanup
97 */
98 @After
99 public void tearDown() {
100 session.close();
101
102 agent.dispose();
103
104 loggerA = null;
105 loggerB = null;
106 }
107
108 /**
109 * Test tracing with no events enabled in the tracing session.
110 */
111 @Test
112 public void testNoEvents() {
113 assertTrue(session.start());
114
115 JulTestUtils.send10EventsTo(loggerA);
116 JulTestUtils.send10EventsTo(loggerB);
117
118 assertTrue(session.stop());
119
120 List<String> output = session.view();
121 assertNotNull(output);
122 assertTrue(output.isEmpty());
123
124 ILttngHandler handler = getAgentHandler();
125 assertEquals(0, handler.getEventCount());
126 }
127
128 /**
129 * Test tracing with all events enabled (-j -a) in the tracing session.
130 */
131 @Test
132 public void testAllEvents() {
133 assertTrue(session.enableAllEvents());
134 assertTrue(session.start());
135
136 JulTestUtils.send10EventsTo(loggerA);
137 JulTestUtils.send10EventsTo(loggerB);
138
139 assertTrue(session.stop());
140
141 List<String> output = session.view();
142 assertNotNull(output);
143 assertEquals(20, output.size());
144
145 ILttngHandler handler = getAgentHandler();
146 assertEquals(20, handler.getEventCount());
147 }
148
149 /**
150 * Test tracing with a subset of events enabled in the tracing session.
151 */
152 @Test
153 public void testSomeEvents() {
154 assertTrue(session.enableEvents(EVENT_NAME_A));
155 assertTrue(session.start());
156
157 JulTestUtils.send10EventsTo(loggerA);
158 JulTestUtils.send10EventsTo(loggerB);
159
160 assertTrue(session.stop());
161
162 List<String> output = session.view();
163 assertNotNull(output);
164 assertEquals(10, output.size());
165
166 ILttngHandler handler = getAgentHandler();
167 assertEquals(10, handler.getEventCount());
168 }
169
170 /**
171 * Test that the "lttng list" commands lists the expected events.
172 */
173 @Test
174 public void testListEvents() {
175 List<String> enabledEvents = session.listEvents();
176 List<String> expectedEvents = Arrays.asList(EVENT_NAME_A, EVENT_NAME_B);
177
178 Collections.sort(enabledEvents);
179 Collections.sort(expectedEvents);
180
181 assertEquals(expectedEvents, enabledEvents);
182 }
183
184 /**
185 * Get the singleton JUL Handler currently managed by the LTTngAgent. It is
186 * not public, so we need reflection to access it.
187 *
188 * @return The agent's JUL handler
189 */
190 private static ILttngHandler getAgentHandler() {
191 try {
192 Field julHandlerField = LTTngAgent.class.getDeclaredField("julHandler");
193 julHandlerField.setAccessible(true);
194 return (ILttngHandler) julHandlerField.get(LTTngAgent.getLTTngAgent());
195 } catch (ReflectiveOperationException | SecurityException e) {
196 fail(e.getMessage());
197 return null;
198 }
199 }
200
201 }
202
This page took 0.033302 seconds and 4 git commands to generate.