2 * Copyright (C) 2015, EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
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.
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.
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.
19 package org.lttng.ust.agent.integration.events;
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;
26 import java.lang.reflect.Field;
27 import java.util.List;
29 import org.apache.log4j.Level;
30 import org.apache.log4j.Logger;
31 import org.junit.After;
32 import org.junit.AfterClass;
33 import org.junit.Before;
34 import org.junit.BeforeClass;
35 import org.junit.Test;
36 import org.junit.runner.RunWith;
37 import org.lttng.tools.ILttngSession;
38 import org.lttng.tools.ILttngSession.Domain;
39 import org.lttng.ust.agent.ILttngHandler;
40 import org.lttng.ust.agent.LTTngAgent;
41 import org.lttng.ust.agent.utils.Log4jTestUtils;
42 import org.lttng.ust.agent.utils.TestPrintRunner;
45 * Enabled events test for the LTTng-UST Log4j log handler, using the legacy
48 @RunWith(TestPrintRunner.class)
49 @SuppressWarnings("deprecation")
50 public class Log4jLegacyApiIT {
52 private static final Domain DOMAIN = Domain.LOG4J;
54 private static final String EVENT_NAME_A = "EventA";
55 private static final String EVENT_NAME_B = "EventB";
57 private ILttngSession session;
59 private Logger loggerA;
60 private Logger loggerB;
66 public static void log4jClassSetup() {
67 Log4jTestUtils.testClassSetup();
74 public static void log4jClassCleanup() {
75 Log4jTestUtils.testClassCleanup();
83 loggerA = Logger.getLogger(EVENT_NAME_A);
84 LTTngAgent.getLTTngAgent();
85 loggerB = Logger.getLogger(EVENT_NAME_B);
87 loggerA.setLevel(Level.ALL);
88 loggerB.setLevel(Level.ALL);
90 session = ILttngSession.createSession(null, DOMAIN);
97 public void tearDown() {
100 LTTngAgent.dispose();
107 * Test tracing with no events enabled in the tracing session.
110 public void testNoEvents() {
111 assertTrue(session.start());
113 Log4jTestUtils.send10Events(loggerA);
114 Log4jTestUtils.send10Events(loggerB);
116 assertTrue(session.stop());
118 List<String> output = session.view();
119 assertNotNull(output);
120 assertTrue(output.isEmpty());
122 ILttngHandler handler = getAgentHandler();
123 assertEquals(0, handler.getEventCount());
127 * Test tracing with all events enabled (-l -a) in the tracing session.
130 public void testAllEvents() {
131 assertTrue(session.enableAllEvents());
132 assertTrue(session.start());
134 Log4jTestUtils.send10Events(loggerA);
135 Log4jTestUtils.send10Events(loggerB);
137 assertTrue(session.stop());
139 List<String> output = session.view();
140 assertNotNull(output);
141 assertEquals(20, output.size());
143 ILttngHandler handler = getAgentHandler();
144 assertEquals(20, handler.getEventCount());
148 * Test tracing with a subset of events enabled in the tracing session.
151 public void testSomeEvents() {
152 assertTrue(session.enableEvents(EVENT_NAME_A));
153 assertTrue(session.start());
155 Log4jTestUtils.send10Events(loggerA);
156 Log4jTestUtils.send10Events(loggerB);
158 assertTrue(session.stop());
160 List<String> output = session.view();
161 assertNotNull(output);
162 assertEquals(10, output.size());
164 ILttngHandler handler = getAgentHandler();
165 assertEquals(10, handler.getEventCount());
169 * Get the singleton Log4j Handler currently managed by the LTTngAgent. It
170 * is not public, so we need reflection to access it.
172 * @return The agent's Log4j handler
174 private static ILttngHandler getAgentHandler() {
176 Field log4jAppenderField = LTTngAgent.class.getDeclaredField("log4jAppender");
177 log4jAppenderField.setAccessible(true);
178 return (ILttngHandler) log4jAppenderField.get(LTTngAgent.getLTTngAgent());
179 } catch (ReflectiveOperationException | SecurityException e) {
180 fail(e.getMessage());