Add Javadoc and related settings
[lttng-ust-java-tests.git] / src / test / java / org / lttng / ust / agent / integration / log4j / Log4jLegacyApiTest.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
c5524c71
AM
19package org.lttng.ust.agent.integration.log4j;
20
21import static org.junit.Assert.assertEquals;
22import static org.junit.Assert.assertNotNull;
23import static org.junit.Assert.assertTrue;
24import static org.junit.Assert.fail;
25import static org.junit.Assume.assumeTrue;
26
c5524c71
AM
27import java.lang.reflect.Field;
28import java.util.List;
29
30import org.apache.log4j.Level;
31import org.apache.log4j.Logger;
32import org.junit.After;
33import org.junit.AfterClass;
34import org.junit.Before;
35import org.junit.BeforeClass;
36import org.junit.Test;
37import org.lttng.ust.agent.ILttngHandler;
38import org.lttng.ust.agent.LTTngAgent;
8576633f
AM
39import org.lttng.ust.agent.utils.LttngSession;
40import org.lttng.ust.agent.utils.LttngSession.Domain;
24b260d9 41import org.lttng.ust.agent.utils.MiscTestUtils;
c5524c71 42
8a0613fa
AM
43/**
44 * Enabled events test for the LTTng-UST Log4j log handler, using the legacy
45 * API.
46 */
c5524c71
AM
47@SuppressWarnings("deprecation")
48public class Log4jLegacyApiTest {
49
50 private static final Domain DOMAIN = Domain.LOG4J;
51
52 private static final String EVENT_NAME_A = "EventA";
53 private static final String EVENT_NAME_B = "EventB";
54
8576633f
AM
55 private LttngSession session;
56
c5524c71
AM
57 private Logger loggerA;
58 private Logger loggerB;
59
8a0613fa
AM
60 /**
61 * Class setup
62 */
c5524c71
AM
63 @BeforeClass
64 public static void classSetup() {
65 /* Skip tests if we can't find the JNI library or lttng-tools */
24b260d9
AM
66 assumeTrue(MiscTestUtils.checkForLog4jLibrary());
67 assumeTrue(MiscTestUtils.checkForLttngTools(Domain.LOG4J));
e41ec02a
AM
68
69 LttngSession.destroyAllSessions();
c5524c71
AM
70 }
71
8a0613fa
AM
72 /**
73 * Class cleanup
74 */
c5524c71
AM
75 @AfterClass
76 public static void classCleanup() {
8576633f 77 LttngSession.deleteAllTracee();
c5524c71
AM
78 }
79
8a0613fa
AM
80 /**
81 * Test setup
82 */
c5524c71
AM
83 @Before
84 public void setup() {
85 loggerA = Logger.getLogger(EVENT_NAME_A);
86 LTTngAgent.getLTTngAgent();
87 loggerB = Logger.getLogger(EVENT_NAME_B);
88
89 loggerA.setLevel(Level.ALL);
90 loggerB.setLevel(Level.ALL);
8576633f
AM
91
92 session = new LttngSession(null, DOMAIN);
c5524c71
AM
93 }
94
8a0613fa
AM
95 /**
96 * Test cleanup
97 */
c5524c71
AM
98 @After
99 public void tearDown() {
8576633f 100 session.close();
c5524c71
AM
101
102 LTTngAgent.dispose();
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
170 /**
171 * Get the singleton Log4j Handler currently managed by the LTTngAgent. It
172 * is not public, so we need reflection to access it.
173 *
174 * @return The agent's Log4j handler
175 */
8576633f 176 private static ILttngHandler getAgentHandler() {
c5524c71
AM
177 try {
178 Field log4jAppenderField = LTTngAgent.class.getDeclaredField("log4jAppender");
179 log4jAppenderField.setAccessible(true);
180 return (ILttngHandler) log4jAppenderField.get(LTTngAgent.getLTTngAgent());
181 } catch (ReflectiveOperationException | SecurityException e) {
182 fail();
183 return null;
184 }
185 }
186
187}
188
This page took 0.030809 seconds and 4 git commands to generate.