Add 'log4j2' domain tests to the Log4j 2.x agent
[lttng-ust-java-tests.git] / lttng-ust-java-tests-log4j / src / test / java / org / lttng / ust / agent / integration / context / Log4jAppContextIT.java
CommitLineData
73fb6785
AM
1/*
2 * Copyright (C) 2016, 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
19package org.lttng.ust.agent.integration.context;
20
73fb6785
AM
21import java.io.IOException;
22
23import org.apache.log4j.Appender;
24import org.apache.log4j.Level;
25import org.apache.log4j.Logger;
7a4f0255
MJ
26import org.junit.jupiter.api.AfterAll;
27import org.junit.jupiter.api.AfterEach;
28import org.junit.jupiter.api.BeforeAll;
29import org.junit.jupiter.api.BeforeEach;
9db2c69a 30import org.junit.jupiter.api.Tag;
73fb6785 31import org.lttng.tools.ILttngSession.Domain;
73fb6785
AM
32import org.lttng.ust.agent.log4j.LttngLogAppender;
33import org.lttng.ust.agent.utils.Log4jTestUtils;
73fb6785
AM
34
35/**
36 * Enabled app contexts test for the LTTng-UST JUL log handler.
37 */
9db2c69a
MJ
38@Tag("agent:log4j")
39@Tag("domain:log4j")
73fb6785
AM
40public class Log4jAppContextIT extends AppContextITBase {
41
42 private static final Domain DOMAIN = Domain.LOG4J;
43
44 private Logger logger;
45
46 /**
47 * Class setup
48 */
7a4f0255 49 @BeforeAll
eca27046
AM
50 public static void log4jClassSetup() {
51 Log4jTestUtils.testClassSetup();
73fb6785
AM
52 }
53
54 /**
55 * Class cleanup
56 */
7a4f0255 57 @AfterAll
eca27046
AM
58 public static void log4jClassCleanup() {
59 Log4jTestUtils.testClassCleanup();
73fb6785
AM
60 }
61
62 /**
63 * Test setup
64 *
65 * @throws SecurityException
66 * @throws IOException
67 */
7a4f0255 68 @BeforeEach
73fb6785
AM
69 public void julSetup() throws SecurityException, IOException {
70 logger = Logger.getLogger(EVENT_NAME);
71 logger.setLevel(Level.ALL);
72
73 logHandler = new LttngLogAppender();
74 logger.addAppender((Appender) logHandler);
75 }
76
77 /**
78 * Test teardown
79 */
7a4f0255 80 @AfterEach
73fb6785
AM
81 public void julTeardown() {
82 logger.removeAppender((Appender) logHandler);
83 logger = null;
84 }
85
86 @Override
87 protected Domain getDomain() {
88 return DOMAIN;
89 }
90
eca1a136
MJ
91 @Override
92 protected boolean closeHandlers()
93 {
94 return true;
95 }
96
73fb6785
AM
97 @Override
98 protected void sendEventsToLoggers() {
99 Log4jTestUtils.send10Events(logger);
100 }
101}
This page took 0.026057 seconds and 4 git commands to generate.