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 / 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;
26import org.junit.After;
27import org.junit.AfterClass;
28import org.junit.Before;
29import org.junit.BeforeClass;
30import org.lttng.tools.ILttngSession.Domain;
73fb6785
AM
31import org.lttng.ust.agent.log4j.LttngLogAppender;
32import org.lttng.ust.agent.utils.Log4jTestUtils;
73fb6785
AM
33
34/**
35 * Enabled app contexts test for the LTTng-UST JUL log handler.
36 */
37public class Log4jAppContextIT extends AppContextITBase {
38
39 private static final Domain DOMAIN = Domain.LOG4J;
40
41 private Logger logger;
42
43 /**
44 * Class setup
45 */
46 @BeforeClass
eca27046
AM
47 public static void log4jClassSetup() {
48 Log4jTestUtils.testClassSetup();
73fb6785
AM
49 }
50
51 /**
52 * Class cleanup
53 */
54 @AfterClass
eca27046
AM
55 public static void log4jClassCleanup() {
56 Log4jTestUtils.testClassCleanup();
73fb6785
AM
57 }
58
59 /**
60 * Test setup
61 *
62 * @throws SecurityException
63 * @throws IOException
64 */
65 @Before
66 public void julSetup() throws SecurityException, IOException {
67 logger = Logger.getLogger(EVENT_NAME);
68 logger.setLevel(Level.ALL);
69
70 logHandler = new LttngLogAppender();
71 logger.addAppender((Appender) logHandler);
72 }
73
74 /**
75 * Test teardown
76 */
77 @After
78 public void julTeardown() {
79 logger.removeAppender((Appender) logHandler);
80 logger = null;
81 }
82
83 @Override
84 protected Domain getDomain() {
85 return DOMAIN;
86 }
87
88 @Override
89 protected void sendEventsToLoggers() {
90 Log4jTestUtils.send10Events(logger);
91 }
92}
This page took 0.029153 seconds and 4 git commands to generate.