Add 'log4j2' domain tests to the Log4j 2.x agent
[lttng-ust-java-tests.git] / lttng-ust-java-tests-jul / src / test / java / org / lttng / ust / agent / benchmarks / jul / handler / builtin / FileHandlerBenchmark.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
d4e2e87c 19package org.lttng.ust.agent.benchmarks.jul.handler.builtin;
7ac7128a
AM
20
21import java.io.IOException;
9368bd5e
AM
22import java.nio.file.Files;
23import java.nio.file.Path;
7ac7128a
AM
24import java.util.logging.FileHandler;
25import java.util.logging.SimpleFormatter;
26
7a4f0255
MJ
27import org.junit.jupiter.api.AfterEach;
28import org.junit.jupiter.api.BeforeEach;
9db2c69a 29import org.junit.jupiter.api.Tag;
d4e2e87c 30import org.lttng.ust.agent.benchmarks.jul.handler.JulHandlerBenchmarkBase;
7ac7128a 31
8a0613fa
AM
32/**
33 * Test class using a {@link FileHandler}, which a {@link SimpleFormatter}.
34 */
9db2c69a
MJ
35@Tag("agent:jul")
36@Tag("domain:jul")
37@Tag("benchmark")
d4e2e87c 38public class FileHandlerBenchmark extends JulHandlerBenchmarkBase {
7ac7128a 39
9368bd5e
AM
40 private Path outputFile;
41
8a0613fa
AM
42 /**
43 * Test setup
44 *
45 * @throws SecurityException
46 * If there is problem setting up the handler
47 * @throws IOException
48 * If there is problem setting up the handler
49 */
7a4f0255 50 @BeforeEach
8a0613fa
AM
51 public void testSetup() throws SecurityException, IOException {
52 outputFile = Files.createTempFile(this.getClass().getSimpleName(), null);
9368bd5e 53
8a0613fa
AM
54 handler = new FileHandler(outputFile.toString(), false);
55 handler.setFormatter(new SimpleFormatter());
56 }
9368bd5e 57
8a0613fa
AM
58 /**
59 * Test cleanup
60 *
61 * @throws IOException
62 * If we could not delete the test file
63 */
7a4f0255 64 @AfterEach
8a0613fa
AM
65 public void testTeardown() throws IOException {
66 Files.deleteIfExists(outputFile);
67 }
7ac7128a 68}
This page took 0.02534 seconds and 4 git commands to generate.