Put common setup code in the utils classes
[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
AM
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;
c5524c71 25
c5524c71
AM
26import java.lang.reflect.Field;
27import java.util.List;
28
29import org.apache.log4j.Level;
30import org.apache.log4j.Logger;
31import org.junit.After;
32import org.junit.AfterClass;
33import org.junit.Before;
34import org.junit.BeforeClass;
35import org.junit.Test;
64c5b50c 36import org.junit.runner.RunWith;
45d1768c
AM
37import org.lttng.tools.ILttngSession;
38import org.lttng.tools.ILttngSession.Domain;
c5524c71
AM
39import org.lttng.ust.agent.ILttngHandler;
40import org.lttng.ust.agent.LTTngAgent;
4821eac9 41import org.lttng.ust.agent.utils.Log4jTestUtils;
64c5b50c 42import org.lttng.ust.agent.utils.TestPrintRunner;
c5524c71 43
8a0613fa
AM
44/**
45 * Enabled events test for the LTTng-UST Log4j log handler, using the legacy
46 * API.
47 */
64c5b50c 48@RunWith(TestPrintRunner.class)
c5524c71 49@SuppressWarnings("deprecation")
7b82be36 50public class Log4jLegacyApiIT {
c5524c71
AM
51
52 private static final Domain DOMAIN = Domain.LOG4J;
53
54 private static final String EVENT_NAME_A = "EventA";
55 private static final String EVENT_NAME_B = "EventB";
56
45d1768c 57 private ILttngSession session;
8576633f 58
c5524c71
AM
59 private Logger loggerA;
60 private Logger loggerB;
61
8a0613fa
AM
62 /**
63 * Class setup
64 */
c5524c71 65 @BeforeClass
eca27046
AM
66 public static void log4jClassSetup() {
67 Log4jTestUtils.testClassSetup();
c5524c71
AM
68 }
69
8a0613fa
AM
70 /**
71 * Class cleanup
72 */
c5524c71 73 @AfterClass
eca27046
AM
74 public static void log4jClassCleanup() {
75 Log4jTestUtils.testClassCleanup();
c5524c71
AM
76 }
77
8a0613fa
AM
78 /**
79 * Test setup
80 */
c5524c71
AM
81 @Before
82 public void setup() {
83 loggerA = Logger.getLogger(EVENT_NAME_A);
84 LTTngAgent.getLTTngAgent();
85 loggerB = Logger.getLogger(EVENT_NAME_B);
86
87 loggerA.setLevel(Level.ALL);
88 loggerB.setLevel(Level.ALL);
8576633f 89
ff620bef 90 session = ILttngSession.createSession(null, DOMAIN);
c5524c71
AM
91 }
92
8a0613fa
AM
93 /**
94 * Test cleanup
95 */
c5524c71
AM
96 @After
97 public void tearDown() {
8576633f 98 session.close();
c5524c71
AM
99
100 LTTngAgent.dispose();
101
102 loggerA = null;
103 loggerB = null;
104 }
105
8a0613fa
AM
106 /**
107 * Test tracing with no events enabled in the tracing session.
108 */
c5524c71
AM
109 @Test
110 public void testNoEvents() {
8576633f 111 assertTrue(session.start());
c5524c71 112
8576633f
AM
113 Log4jTestUtils.send10Events(loggerA);
114 Log4jTestUtils.send10Events(loggerB);
c5524c71 115
8576633f 116 assertTrue(session.stop());
c5524c71 117
8576633f 118 List<String> output = session.view();
c5524c71
AM
119 assertNotNull(output);
120 assertTrue(output.isEmpty());
121
c5524c71
AM
122 ILttngHandler handler = getAgentHandler();
123 assertEquals(0, handler.getEventCount());
124 }
125
8a0613fa
AM
126 /**
127 * Test tracing with all events enabled (-l -a) in the tracing session.
128 */
c5524c71
AM
129 @Test
130 public void testAllEvents() {
8576633f
AM
131 assertTrue(session.enableAllEvents());
132 assertTrue(session.start());
c5524c71 133
8576633f
AM
134 Log4jTestUtils.send10Events(loggerA);
135 Log4jTestUtils.send10Events(loggerB);
c5524c71 136
8576633f 137 assertTrue(session.stop());
c5524c71 138
8576633f 139 List<String> output = session.view();
c5524c71
AM
140 assertNotNull(output);
141 assertEquals(20, output.size());
142
c5524c71
AM
143 ILttngHandler handler = getAgentHandler();
144 assertEquals(20, handler.getEventCount());
145 }
146
8a0613fa
AM
147 /**
148 * Test tracing with a subset of events enabled in the tracing session.
149 */
c5524c71
AM
150 @Test
151 public void testSomeEvents() {
8576633f
AM
152 assertTrue(session.enableEvents(EVENT_NAME_A));
153 assertTrue(session.start());
c5524c71 154
8576633f
AM
155 Log4jTestUtils.send10Events(loggerA);
156 Log4jTestUtils.send10Events(loggerB);
c5524c71 157
8576633f 158 assertTrue(session.stop());
c5524c71 159
8576633f 160 List<String> output = session.view();
c5524c71
AM
161 assertNotNull(output);
162 assertEquals(10, output.size());
163
c5524c71
AM
164 ILttngHandler handler = getAgentHandler();
165 assertEquals(10, handler.getEventCount());
166 }
167
168 /**
169 * Get the singleton Log4j Handler currently managed by the LTTngAgent. It
170 * is not public, so we need reflection to access it.
171 *
172 * @return The agent's Log4j handler
173 */
8576633f 174 private static ILttngHandler getAgentHandler() {
c5524c71
AM
175 try {
176 Field log4jAppenderField = LTTngAgent.class.getDeclaredField("log4jAppender");
177 log4jAppenderField.setAccessible(true);
178 return (ILttngHandler) log4jAppenderField.get(LTTngAgent.getLTTngAgent());
179 } catch (ReflectiveOperationException | SecurityException e) {
1f3dd43c 180 fail(e.getMessage());
c5524c71
AM
181 return null;
182 }
183 }
184
185}
186
This page took 0.030892 seconds and 4 git commands to generate.