Add log4j2 agent tests
[lttng-ust-java-tests.git] / lttng-ust-java-tests-jul / src / test / java / org / lttng / ust / agent / integration / context / JulAppContextIT.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;
22import java.util.logging.Handler;
23import java.util.logging.Level;
24import java.util.logging.Logger;
25
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.jul.LttngLogHandler;
32import org.lttng.ust.agent.utils.JulTestUtils;
73fb6785
AM
33
34/**
35 * Enabled app contexts test for the LTTng-UST JUL log handler.
36 */
37public class JulAppContextIT extends AppContextITBase {
38
39 private static final Domain DOMAIN = Domain.JUL;
40
41 private Logger logger;
42
43 /**
44 * Class setup
45 */
46 @BeforeClass
47 public static void julClassSetup() {
eca27046 48 JulTestUtils.testClassSetup();
73fb6785
AM
49 }
50
51 /**
52 * Class cleanup
53 */
54 @AfterClass
55 public static void julClassCleanup() {
eca27046 56 JulTestUtils.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 LttngLogHandler();
71 logger.addHandler((Handler) logHandler);
72 }
73
74 /**
75 * Test teardown
76 */
77 @After
78 public void julTeardown() {
79 logger.removeHandler((Handler) logHandler);
80 logger = null;
81 }
82
83 @Override
84 protected Domain getDomain() {
85 return DOMAIN;
86 }
87
eca1a136
MJ
88 @Override
89 protected boolean closeHandlers()
90 {
91 return true;
92 }
93
73fb6785
AM
94 @Override
95 protected void sendEventsToLoggers() {
96 JulTestUtils.send10EventsTo(logger);
97 }
98}
This page took 0.026213 seconds and 4 git commands to generate.