Move the "LTTng control" to separate packages
[lttng-ust-java-tests.git] / src / test / java / org / lttng / ust / agent / integration / jul / JulLegacyApiTest.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.jul;
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 import static org.junit.Assume.assumeTrue;
26
27 import java.lang.reflect.Field;
28 import java.util.List;
29 import java.util.logging.Level;
30 import java.util.logging.Logger;
31
32 import org.junit.After;
33 import org.junit.AfterClass;
34 import org.junit.Before;
35 import org.junit.BeforeClass;
36 import org.junit.Test;
37 import org.junit.runner.RunWith;
38 import org.lttng.tools.ILttngSession;
39 import org.lttng.tools.ILttngSession.Domain;
40 import org.lttng.tools.LttngToolsHelper;
41 import org.lttng.tools.utils.LttngUtils;
42 import org.lttng.ust.agent.ILttngHandler;
43 import org.lttng.ust.agent.LTTngAgent;
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 JulLegacyApiTest {
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
60 private Logger loggerA;
61 private Logger loggerB;
62
63 /**
64 * Class setup
65 */
66 @BeforeClass
67 public static void julClassSetup() {
68 /* Skip tests if we can't find the JNI library or lttng-tools */
69 assumeTrue(LttngUtils.checkForJulLibrary());
70 assumeTrue(LttngUtils.checkForLttngTools(Domain.JUL));
71
72 LttngToolsHelper.destroyAllSessions();
73 }
74
75 /**
76 * Class cleanup
77 */
78 @AfterClass
79 public static void julClassCleanup() {
80 LttngToolsHelper.deleteAllTraces();
81 }
82
83 /**
84 * Test setup
85 */
86 @Before
87 public void setup() {
88 loggerA = Logger.getLogger(EVENT_NAME_A);
89 LTTngAgent.getLTTngAgent();
90 loggerB = Logger.getLogger(EVENT_NAME_B);
91
92 loggerA.setLevel(Level.ALL);
93 loggerB.setLevel(Level.ALL);
94
95 session = ILttngSession.newCommandLineSession(null, DOMAIN);
96 }
97
98 /**
99 * Test cleanup
100 */
101 @After
102 public void tearDown() {
103 session.close();
104
105 LTTngAgent.dispose();
106
107 loggerA = null;
108 loggerB = null;
109 }
110
111 /**
112 * Test tracing with no events enabled in the tracing session.
113 */
114 @Test
115 public void testNoEvents() {
116 assertTrue(session.start());
117
118 JulTestUtils.send10EventsTo(loggerA);
119 JulTestUtils.send10EventsTo(loggerB);
120
121 assertTrue(session.stop());
122
123 List<String> output = session.view();
124 assertNotNull(output);
125 assertTrue(output.isEmpty());
126
127 ILttngHandler handler = getAgentHandler();
128 assertEquals(0, handler.getEventCount());
129 }
130
131 /**
132 * Test tracing with all events enabled (-j -a) in the tracing session.
133 */
134 @Test
135 public void testAllEvents() {
136 assertTrue(session.enableAllEvents());
137 assertTrue(session.start());
138
139 JulTestUtils.send10EventsTo(loggerA);
140 JulTestUtils.send10EventsTo(loggerB);
141
142 assertTrue(session.stop());
143
144 List<String> output = session.view();
145 assertNotNull(output);
146 assertEquals(20, output.size());
147
148 ILttngHandler handler = getAgentHandler();
149 assertEquals(20, handler.getEventCount());
150 }
151
152 /**
153 * Test tracing with a subset of events enabled in the tracing session.
154 */
155 @Test
156 public void testSomeEvents() {
157 assertTrue(session.enableEvents(EVENT_NAME_A));
158 assertTrue(session.start());
159
160 JulTestUtils.send10EventsTo(loggerA);
161 JulTestUtils.send10EventsTo(loggerB);
162
163 assertTrue(session.stop());
164
165 List<String> output = session.view();
166 assertNotNull(output);
167 assertEquals(10, output.size());
168
169 ILttngHandler handler = getAgentHandler();
170 assertEquals(10, handler.getEventCount());
171 }
172
173 /**
174 * Get the singleton JUL Handler currently managed by the LTTngAgent. It is
175 * not public, so we need reflection to access it.
176 *
177 * @return The agent's JUL handler
178 */
179 private static ILttngHandler getAgentHandler() {
180 try {
181 Field julHandlerField = LTTngAgent.class.getDeclaredField("julHandler");
182 julHandlerField.setAccessible(true);
183 return (ILttngHandler) julHandlerField.get(LTTngAgent.getLTTngAgent());
184 } catch (ReflectiveOperationException | SecurityException e) {
185 fail();
186 return null;
187 }
188 }
189
190 }
191
This page took 0.032482 seconds and 4 git commands to generate.