8d4a6fa49f64f5ea308c05ae468e8fe041958615
[lttng-ust-java-tests.git] / src / test / java / org / lttng / ust / agent / integration / log4j / Log4jLegacyApiTest.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.log4j;
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
30 import org.apache.log4j.Level;
31 import org.apache.log4j.Logger;
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.ust.agent.ILttngHandler;
39 import org.lttng.ust.agent.LTTngAgent;
40 import org.lttng.ust.agent.utils.LttngSession;
41 import org.lttng.ust.agent.utils.LttngSession.Domain;
42 import org.lttng.ust.agent.utils.MiscTestUtils;
43 import org.lttng.ust.agent.utils.TestPrintRunner;
44
45 /**
46 * Enabled events test for the LTTng-UST Log4j log handler, using the legacy
47 * API.
48 */
49 @RunWith(TestPrintRunner.class)
50 @SuppressWarnings("deprecation")
51 public class Log4jLegacyApiTest {
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
58 private LttngSession session;
59
60 private Logger loggerA;
61 private Logger loggerB;
62
63 /**
64 * Class setup
65 */
66 @BeforeClass
67 public static void classSetup() {
68 /* Skip tests if we can't find the JNI library or lttng-tools */
69 assumeTrue(MiscTestUtils.checkForLog4jLibrary());
70 assumeTrue(MiscTestUtils.checkForLttngTools(Domain.LOG4J));
71
72 LttngSession.destroyAllSessions();
73 }
74
75 /**
76 * Class cleanup
77 */
78 @AfterClass
79 public static void classCleanup() {
80 LttngSession.deleteAllTracee();
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 = new LttngSession(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 Log4jTestUtils.send10Events(loggerA);
119 Log4jTestUtils.send10Events(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 (-l -a) in the tracing session.
133 */
134 @Test
135 public void testAllEvents() {
136 assertTrue(session.enableAllEvents());
137 assertTrue(session.start());
138
139 Log4jTestUtils.send10Events(loggerA);
140 Log4jTestUtils.send10Events(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 Log4jTestUtils.send10Events(loggerA);
161 Log4jTestUtils.send10Events(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 Log4j Handler currently managed by the LTTngAgent. It
175 * is not public, so we need reflection to access it.
176 *
177 * @return The agent's Log4j handler
178 */
179 private static ILttngHandler getAgentHandler() {
180 try {
181 Field log4jAppenderField = LTTngAgent.class.getDeclaredField("log4jAppender");
182 log4jAppenderField.setAccessible(true);
183 return (ILttngHandler) log4jAppenderField.get(LTTngAgent.getLTTngAgent());
184 } catch (ReflectiveOperationException | SecurityException e) {
185 fail();
186 return null;
187 }
188 }
189
190 }
191
This page took 0.045561 seconds and 3 git commands to generate.