Handle filter strings being passed by the sessiond
[lttng-ust-java-tests.git] / lttng-ust-java-tests / src / test / java / org / lttng / ust / agent / integration / events / log4j / Log4jEnabledEventsIT.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
0e77c728 19package org.lttng.ust.agent.integration.events.log4j;
c5524c71
AM
20
21import static org.junit.Assume.assumeTrue;
22
23import java.io.IOException;
c5524c71
AM
24
25import org.apache.log4j.Appender;
26import org.apache.log4j.Level;
27import org.apache.log4j.Logger;
28import org.junit.After;
29import org.junit.AfterClass;
30import org.junit.Before;
31import org.junit.BeforeClass;
45d1768c
AM
32import org.lttng.tools.ILttngSession.Domain;
33import org.lttng.tools.LttngToolsHelper;
0e77c728 34import org.lttng.ust.agent.integration.events.EnabledEventsITBase;
c5524c71 35import org.lttng.ust.agent.log4j.LttngLogAppender;
b01fe762 36import org.lttng.ust.agent.utils.LttngUtils;
c5524c71 37
8a0613fa
AM
38/**
39 * Enabled events test for the LTTng-UST Log4j log handler.
40 */
7b82be36 41public class Log4jEnabledEventsIT extends EnabledEventsITBase {
c5524c71
AM
42
43 private static final Domain DOMAIN = Domain.LOG4J;
44
45 private Logger loggerA;
46 private Logger loggerB;
47 private Logger loggerC;
48 private Logger loggerD;
49
8a0613fa
AM
50 /**
51 * Class setup
52 */
c5524c71 53 @BeforeClass
e41ec02a 54 public static void log4jClassSetup() {
c5524c71 55 /* Skip tests if we can't find the JNI library or lttng-tools */
45d1768c
AM
56 assumeTrue(LttngUtils.checkForLog4jLibrary());
57 assumeTrue(LttngUtils.checkForLttngTools(Domain.LOG4J));
e41ec02a 58
45d1768c 59 LttngToolsHelper.destroyAllSessions();
c5524c71
AM
60 }
61
8a0613fa
AM
62 /**
63 * Class teardown
64 */
c5524c71 65 @AfterClass
e41ec02a 66 public static void log4jClassCleanup() {
45d1768c 67 LttngToolsHelper.deleteAllTraces();
c5524c71
AM
68 }
69
8a0613fa
AM
70 /**
71 * Test setup
72 *
73 * @throws SecurityException
74 * @throws IOException
75 */
c5524c71 76 @Before
e41ec02a 77 public void log4jSetup() throws SecurityException, IOException {
c5524c71
AM
78 loggerA = Logger.getLogger(EVENT_NAME_A);
79 loggerB = Logger.getLogger(EVENT_NAME_B);
80 loggerC = Logger.getLogger(EVENT_NAME_C);
81 loggerD = Logger.getLogger(EVENT_NAME_D);
82
83 loggerA.setLevel(Level.ALL);
84 loggerB.setLevel(Level.ALL);
85 loggerC.setLevel(Level.ALL);
86 loggerD.setLevel(Level.ALL);
87
88 handlerA = new LttngLogAppender();
89 handlerB = new LttngLogAppender();
90 handlerC = new LttngLogAppender();
91
92 loggerA.addAppender((Appender) handlerA);
93 loggerB.addAppender((Appender) handlerB);
94 loggerC.addAppender((Appender) handlerC);
95 }
96
8a0613fa
AM
97 /**
98 * Test teardown
99 */
c5524c71 100 @After
e41ec02a 101 public void log4jTeardown() {
c5524c71
AM
102 loggerA.removeAppender((Appender) handlerA);
103 loggerB.removeAppender((Appender) handlerB);
104 loggerC.removeAppender((Appender) handlerC);
105
106 loggerA = null;
107 loggerB = null;
108 loggerC = null;
109 loggerD = null;
110 }
111
112 @Override
113 protected Domain getDomain() {
114 return DOMAIN;
115 }
116
117 @Override
118 protected void sendEventsToLoggers() {
8576633f
AM
119 Log4jTestUtils.send10Events(loggerA);
120 Log4jTestUtils.send10Events(loggerB);
121 Log4jTestUtils.send10Events(loggerC);
122 Log4jTestUtils.send10Events(loggerD);
c5524c71
AM
123 }
124}
This page took 0.0273949999999999 seconds and 4 git commands to generate.