Put common setup code in the utils classes
[lttng-ust-java-tests.git] / lttng-ust-java-tests-jul / src / test / java / org / lttng / ust / agent / integration / events / JulListEventsIT.java
CommitLineData
b34f80ae
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
4821eac9 19package org.lttng.ust.agent.integration.events;
b34f80ae 20
b34f80ae
AM
21import java.io.IOException;
22import java.util.logging.Handler;
23import java.util.logging.Logger;
24
25import org.junit.After;
eca27046 26import org.junit.AfterClass;
b34f80ae
AM
27import org.junit.Before;
28import org.junit.BeforeClass;
b34f80ae 29import org.lttng.tools.ILttngSession;
b34f80ae 30import org.lttng.ust.agent.jul.LttngLogHandler;
4821eac9 31import org.lttng.ust.agent.utils.JulTestUtils;
b34f80ae
AM
32
33/**
34 * Test suite for the list events command for the JUL domain
35 */
36public class JulListEventsIT extends ListEventsITBase {
37
38 private Logger[] loggers;
39 private Handler[] handlers;
40
41 /**
eca27046 42 * Class setup
b34f80ae
AM
43 */
44 @BeforeClass
eca27046
AM
45 public static void julClassSetup() {
46 JulTestUtils.testClassSetup();
47 }
b34f80ae 48
eca27046
AM
49 /**
50 * Class cleanup
51 */
52 @AfterClass
53 public static void julClassCleanup() {
54 JulTestUtils.testClassCleanup();
b34f80ae
AM
55 }
56
57 /**
58 * Test setup
59 *
60 * @throws SecurityException
61 * @throws IOException
62 */
63 @Before
64 public void julSetup() throws SecurityException, IOException {
65 loggers = new Logger[] {
66 Logger.getLogger(LOGGER_NAME_1),
67 Logger.getLogger(LOGGER_NAME_2),
68 Logger.getLogger(LOGGER_NAME_3)
69 };
70
71 handlers = new Handler[] {
72 new LttngLogHandler(),
73 new LttngLogHandler()
74 };
75 }
76
77 /**
78 * Test teardown. Detach and close all log handlers.
79 */
80 @After
81 public void julTeardown() {
82 for (Logger logger : loggers) {
83 for (Handler handler : handlers) {
84 logger.removeHandler(handler);
85 }
86 }
87
88 for (Handler handler : handlers) {
89 handler.close();
90 }
91 handlers = null;
92 loggers = null;
93 }
94
95 @Override
96 protected ILttngSession.Domain getDomain() {
97 return ILttngSession.Domain.JUL;
98 }
99
100 @Override
101 protected void attachHandlerToLogger(int handlerIndex, int loggerIndex) {
102 loggers[loggerIndex - 1].addHandler(handlers[handlerIndex - 1]);
103 }
104
105 @Override
106 protected void detachHandlerFromLogger(int handlerIndex, int loggerIndex) {
107 loggers[loggerIndex - 1].removeHandler(handlers[handlerIndex - 1]);
108 }
109
110}
This page took 0.027971 seconds and 4 git commands to generate.