Add Javadoc and related settings
[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.lttng.ust.agent.ILttngHandler;
38 import org.lttng.ust.agent.LTTngAgent;
39 import org.lttng.ust.agent.utils.LttngSession;
40 import org.lttng.ust.agent.utils.LttngSession.Domain;
41 import org.lttng.ust.agent.utils.MiscTestUtils;
42
43 /**
44 * Enabled events test for the LTTng-UST JUL log handler, using the legacy API.
45 */
46 @SuppressWarnings("deprecation")
47 public class JulLegacyApiTest {
48
49 private static final Domain DOMAIN = Domain.JUL;
50
51 private static final String EVENT_NAME_A = "EventA";
52 private static final String EVENT_NAME_B = "EventB";
53
54 private LttngSession session;
55
56 private Logger loggerA;
57 private Logger loggerB;
58
59 /**
60 * Class setup
61 */
62 @BeforeClass
63 public static void julClassSetup() {
64 /* Skip tests if we can't find the JNI library or lttng-tools */
65 assumeTrue(MiscTestUtils.checkForJulLibrary());
66 assumeTrue(MiscTestUtils.checkForLttngTools(Domain.JUL));
67
68 LttngSession.destroyAllSessions();
69 }
70
71 /**
72 * Class cleanup
73 */
74 @AfterClass
75 public static void julClassCleanup() {
76 LttngSession.deleteAllTracee();
77 }
78
79 /**
80 * Test setup
81 */
82 @Before
83 public void setup() {
84 loggerA = Logger.getLogger(EVENT_NAME_A);
85 LTTngAgent.getLTTngAgent();
86 loggerB = Logger.getLogger(EVENT_NAME_B);
87
88 loggerA.setLevel(Level.ALL);
89 loggerB.setLevel(Level.ALL);
90
91 session = new LttngSession(null, DOMAIN);
92 }
93
94 /**
95 * Test cleanup
96 */
97 @After
98 public void tearDown() {
99 session.close();
100
101 LTTngAgent.dispose();
102
103 loggerA = null;
104 loggerB = null;
105 }
106
107 /**
108 * Test tracing with no events enabled in the tracing session.
109 */
110 @Test
111 public void testNoEvents() {
112 assertTrue(session.start());
113
114 JulTestUtils.send10EventsTo(loggerA);
115 JulTestUtils.send10EventsTo(loggerB);
116
117 assertTrue(session.stop());
118
119 List<String> output = session.view();
120 assertNotNull(output);
121 assertTrue(output.isEmpty());
122
123 ILttngHandler handler = getAgentHandler();
124 assertEquals(0, handler.getEventCount());
125 }
126
127 /**
128 * Test tracing with all events enabled (-j -a) in the tracing session.
129 */
130 @Test
131 public void testAllEvents() {
132 assertTrue(session.enableAllEvents());
133 assertTrue(session.start());
134
135 JulTestUtils.send10EventsTo(loggerA);
136 JulTestUtils.send10EventsTo(loggerB);
137
138 assertTrue(session.stop());
139
140 List<String> output = session.view();
141 assertNotNull(output);
142 assertEquals(20, output.size());
143
144 ILttngHandler handler = getAgentHandler();
145 assertEquals(20, handler.getEventCount());
146 }
147
148 /**
149 * Test tracing with a subset of events enabled in the tracing session.
150 */
151 @Test
152 public void testSomeEvents() {
153 assertTrue(session.enableEvents(EVENT_NAME_A));
154 assertTrue(session.start());
155
156 JulTestUtils.send10EventsTo(loggerA);
157 JulTestUtils.send10EventsTo(loggerB);
158
159 assertTrue(session.stop());
160
161 List<String> output = session.view();
162 assertNotNull(output);
163 assertEquals(10, output.size());
164
165 ILttngHandler handler = getAgentHandler();
166 assertEquals(10, handler.getEventCount());
167 }
168
169 /**
170 * Get the singleton JUL Handler currently managed by the LTTngAgent. It is
171 * not public, so we need reflection to access it.
172 *
173 * @return The agent's JUL handler
174 */
175 private static ILttngHandler getAgentHandler() {
176 try {
177 Field julHandlerField = LTTngAgent.class.getDeclaredField("julHandler");
178 julHandlerField.setAccessible(true);
179 return (ILttngHandler) julHandlerField.get(LTTngAgent.getLTTngAgent());
180 } catch (ReflectiveOperationException | SecurityException e) {
181 fail();
182 return null;
183 }
184 }
185
186 }
187
This page took 0.035309 seconds and 4 git commands to generate.