Migrate to Junit 5 Jupiter
[lttng-ust-java-tests.git] / lttng-ust-java-tests-log4j2 / src / test / java / org / lttng / ust / agent / utils / Log4j2TestContext.java
CommitLineData
eca1a136
MJ
1/*
2 * Copyright (C) 2022, EfficiOS Inc.
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.utils;
20
21import java.net.URI;
22import java.net.URL;
23
24import org.apache.logging.log4j.LogManager;
25import org.apache.logging.log4j.core.LoggerContext;
26
7a4f0255
MJ
27/**
28 * Log4j 2.x test context utilities.
29 */
eca1a136
MJ
30public class Log4j2TestContext {
31
32 private final URI configFileUri;
33
34 private LoggerContext loggerContext;
35
7a4f0255
MJ
36 /**
37 * @param configFile path to the log4j configuration file.
38 */
eca1a136
MJ
39 public Log4j2TestContext(String configFile) {
40
41 URL resource = getClass().getClassLoader().getResource(configFile);
42
43 if (resource == null) {
44 throw new IllegalArgumentException("Config file not found: " + configFile);
45 }
46
47 try {
48 this.configFileUri = resource.toURI();
49 } catch (Exception e) {
50 throw new IllegalArgumentException("Config file invalid URI: " + resource);
51 }
52 }
53
7a4f0255
MJ
54 /**
55 * @return the log4j2 logger context.
56 */
eca1a136
MJ
57 public synchronized LoggerContext getLoggerContext() {
58 return loggerContext;
59 }
60
7a4f0255
MJ
61 /**
62 * Initialize the log4j2 context before running a test.
63 */
eca1a136
MJ
64 public synchronized void beforeTest() {
65 loggerContext = (LoggerContext) LogManager.getContext(
66 ClassLoader.getSystemClassLoader(), false, configFileUri);
67 }
68
7a4f0255
MJ
69 /**
70 * Dispose of the log4j2 context after running a test.
71 */
eca1a136
MJ
72 public synchronized void afterTest() {
73 loggerContext.stop();
74 }
75}
This page took 0.02499 seconds and 4 git commands to generate.