Add 'log4j2' domain tests to the Log4j 2.x agent
[lttng-ust-java-tests.git] / lttng-ust-java-tests-log4j / src / test / java / org / lttng / ust / agent / integration / events / Log4jLegacyApiIT.java
CommitLineData
2b408e85
AM
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
4821eac9 19package org.lttng.ust.agent.integration.events;
c5524c71 20
7a4f0255
MJ
21import static org.junit.jupiter.api.Assertions.assertEquals;
22import static org.junit.jupiter.api.Assertions.assertNotNull;
23import static org.junit.jupiter.api.Assertions.assertTrue;
24import static org.junit.jupiter.api.Assertions.fail;
c5524c71 25
c5524c71 26import java.lang.reflect.Field;
bda25414 27import java.util.Arrays;
c5524c71
AM
28import java.util.List;
29
30import org.apache.log4j.Level;
31import org.apache.log4j.Logger;
7a4f0255
MJ
32import org.junit.jupiter.api.AfterAll;
33import org.junit.jupiter.api.AfterEach;
34import org.junit.jupiter.api.BeforeAll;
35import org.junit.jupiter.api.BeforeEach;
9db2c69a 36import org.junit.jupiter.api.Tag;
7a4f0255
MJ
37import org.junit.jupiter.api.Test;
38import org.junit.jupiter.api.extension.ExtendWith;
45d1768c
AM
39import org.lttng.tools.ILttngSession;
40import org.lttng.tools.ILttngSession.Domain;
c5524c71
AM
41import org.lttng.ust.agent.ILttngHandler;
42import org.lttng.ust.agent.LTTngAgent;
4821eac9 43import org.lttng.ust.agent.utils.Log4jTestUtils;
7a4f0255 44import org.lttng.ust.agent.utils.TestPrintExtension;
c5524c71 45
8a0613fa
AM
46/**
47 * Enabled events test for the LTTng-UST Log4j log handler, using the legacy
48 * API.
49 */
7a4f0255 50@ExtendWith(TestPrintExtension.class)
c5524c71 51@SuppressWarnings("deprecation")
9db2c69a
MJ
52@Tag("agent:log4j")
53@Tag("domain:log4j")
7b82be36 54public class Log4jLegacyApiIT {
c5524c71
AM
55
56 private static final Domain DOMAIN = Domain.LOG4J;
57
58 private static final String EVENT_NAME_A = "EventA";
59 private static final String EVENT_NAME_B = "EventB";
60
45d1768c 61 private ILttngSession session;
3e1f7ff4 62 private LTTngAgent agent;
8576633f 63
c5524c71
AM
64 private Logger loggerA;
65 private Logger loggerB;
66
8a0613fa
AM
67 /**
68 * Class setup
69 */
7a4f0255 70 @BeforeAll
eca27046
AM
71 public static void log4jClassSetup() {
72 Log4jTestUtils.testClassSetup();
c5524c71
AM
73 }
74
8a0613fa
AM
75 /**
76 * Class cleanup
77 */
7a4f0255 78 @AfterAll
eca27046
AM
79 public static void log4jClassCleanup() {
80 Log4jTestUtils.testClassCleanup();
c5524c71
AM
81 }
82
8a0613fa
AM
83 /**
84 * Test setup
85 */
7a4f0255 86 @BeforeEach
c5524c71
AM
87 public void setup() {
88 loggerA = Logger.getLogger(EVENT_NAME_A);
3e1f7ff4 89 agent = LTTngAgent.getLTTngAgent();
c5524c71
AM
90 loggerB = Logger.getLogger(EVENT_NAME_B);
91
92 loggerA.setLevel(Level.ALL);
93 loggerB.setLevel(Level.ALL);
8576633f 94
ff620bef 95 session = ILttngSession.createSession(null, DOMAIN);
c5524c71
AM
96 }
97
8a0613fa
AM
98 /**
99 * Test cleanup
100 */
7a4f0255 101 @AfterEach
c5524c71 102 public void tearDown() {
8576633f 103 session.close();
c5524c71 104
3e1f7ff4 105 agent.dispose();
c5524c71
AM
106
107 loggerA = null;
108 loggerB = null;
109 }
110
8a0613fa
AM
111 /**
112 * Test tracing with no events enabled in the tracing session.
113 */
c5524c71
AM
114 @Test
115 public void testNoEvents() {
8576633f 116 assertTrue(session.start());
c5524c71 117
8576633f
AM
118 Log4jTestUtils.send10Events(loggerA);
119 Log4jTestUtils.send10Events(loggerB);
c5524c71 120
8576633f 121 assertTrue(session.stop());
c5524c71 122
8576633f 123 List<String> output = session.view();
c5524c71
AM
124 assertNotNull(output);
125 assertTrue(output.isEmpty());
126
c5524c71
AM
127 ILttngHandler handler = getAgentHandler();
128 assertEquals(0, handler.getEventCount());
129 }
130
8a0613fa
AM
131 /**
132 * Test tracing with all events enabled (-l -a) in the tracing session.
133 */
c5524c71
AM
134 @Test
135 public void testAllEvents() {
8576633f
AM
136 assertTrue(session.enableAllEvents());
137 assertTrue(session.start());
c5524c71 138
8576633f
AM
139 Log4jTestUtils.send10Events(loggerA);
140 Log4jTestUtils.send10Events(loggerB);
c5524c71 141
8576633f 142 assertTrue(session.stop());
c5524c71 143
8576633f 144 List<String> output = session.view();
c5524c71
AM
145 assertNotNull(output);
146 assertEquals(20, output.size());
147
c5524c71
AM
148 ILttngHandler handler = getAgentHandler();
149 assertEquals(20, handler.getEventCount());
150 }
151
8a0613fa
AM
152 /**
153 * Test tracing with a subset of events enabled in the tracing session.
154 */
c5524c71
AM
155 @Test
156 public void testSomeEvents() {
8576633f
AM
157 assertTrue(session.enableEvents(EVENT_NAME_A));
158 assertTrue(session.start());
c5524c71 159
8576633f
AM
160 Log4jTestUtils.send10Events(loggerA);
161 Log4jTestUtils.send10Events(loggerB);
c5524c71 162
8576633f 163 assertTrue(session.stop());
c5524c71 164
8576633f 165 List<String> output = session.view();
c5524c71
AM
166 assertNotNull(output);
167 assertEquals(10, output.size());
168
c5524c71
AM
169 ILttngHandler handler = getAgentHandler();
170 assertEquals(10, handler.getEventCount());
171 }
172
bda25414
AM
173 /**
174 * Test that the "lttng list" commands lists the expected events.
175 */
176 @Test
177 public void testListEvents() {
178 List<String> enabledEvents = session.listEvents();
179 List<String> expectedEvents = Arrays.asList(EVENT_NAME_A, EVENT_NAME_B);
180
b342ee75
AM
181 /*
182 * It doesn't seem possible to forcibly remove Loggers with log4j 1.2.
183 * This, coupled with the way the legacy agent works, makes it so
184 * loggers defined in other tests will always "leak" into this one when
185 * running the whole test suite.
186 *
187 * For this test, simply check that the expected names are present, and
188 * let pass the case where other loggers may the present too.
189 */
190 expectedEvents.forEach(event -> assertTrue(enabledEvents.contains(event)));
bda25414
AM
191 }
192
c5524c71
AM
193 /**
194 * Get the singleton Log4j Handler currently managed by the LTTngAgent. It
195 * is not public, so we need reflection to access it.
196 *
197 * @return The agent's Log4j handler
198 */
8576633f 199 private static ILttngHandler getAgentHandler() {
c5524c71
AM
200 try {
201 Field log4jAppenderField = LTTngAgent.class.getDeclaredField("log4jAppender");
202 log4jAppenderField.setAccessible(true);
203 return (ILttngHandler) log4jAppenderField.get(LTTngAgent.getLTTngAgent());
204 } catch (ReflectiveOperationException | SecurityException e) {
1f3dd43c 205 fail(e.getMessage());
c5524c71
AM
206 return null;
207 }
208 }
209
210}
211
This page took 0.03737 seconds and 4 git commands to generate.