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