Split the tests package in 3 separate artifacts
[lttng-ust-java-tests.git] / lttng-ust-java-tests-jul / src / test / java / org / lttng / ust / agent / integration / events / JulEnabledEventsIT.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
4821eac9 19package org.lttng.ust.agent.integration.events;
da8308fe 20
da8308fe
AM
21import static org.junit.Assume.assumeTrue;
22
23import java.io.IOException;
c5524c71 24import java.util.logging.Handler;
da8308fe
AM
25import java.util.logging.Level;
26import java.util.logging.Logger;
27
28import org.junit.After;
9368bd5e 29import org.junit.AfterClass;
da8308fe
AM
30import org.junit.Before;
31import org.junit.BeforeClass;
45d1768c
AM
32import org.lttng.tools.ILttngSession.Domain;
33import org.lttng.tools.LttngToolsHelper;
0e77c728 34import org.lttng.ust.agent.integration.events.EnabledEventsITBase;
da8308fe 35import org.lttng.ust.agent.jul.LttngLogHandler;
4821eac9 36import org.lttng.ust.agent.utils.JulTestUtils;
b01fe762 37import org.lttng.ust.agent.utils.LttngUtils;
da8308fe 38
8a0613fa
AM
39/**
40 * Enabled events test for the LTTng-UST JUL log handler.
41 */
7b82be36 42public class JulEnabledEventsIT extends EnabledEventsITBase {
da8308fe
AM
43
44 private static final Domain DOMAIN = Domain.JUL;
45
da8308fe
AM
46 private Logger loggerA;
47 private Logger loggerB;
48 private Logger loggerC;
49 private Logger loggerD;
50
8a0613fa
AM
51 /**
52 * Class setup
53 */
da8308fe 54 @BeforeClass
c5524c71 55 public static void julClassSetup() {
da8308fe 56 /* Skip tests if we can't find the JNI library or lttng-tools */
4821eac9 57 assumeTrue(JulTestUtils.checkForJulLibrary());
45d1768c 58 assumeTrue(LttngUtils.checkForLttngTools(Domain.JUL));
e41ec02a 59
45d1768c 60 LttngToolsHelper.destroyAllSessions();
9368bd5e
AM
61 }
62
8a0613fa
AM
63 /**
64 * Class cleanup
65 */
9368bd5e 66 @AfterClass
c5524c71 67 public static void julClassCleanup() {
45d1768c 68 LttngToolsHelper.deleteAllTraces();
da8308fe
AM
69 }
70
8a0613fa
AM
71 /**
72 * Test setup
73 *
74 * @throws SecurityException
75 * @throws IOException
76 */
da8308fe 77 @Before
c5524c71 78 public void julSetup() throws SecurityException, IOException {
da8308fe
AM
79 loggerA = Logger.getLogger(EVENT_NAME_A);
80 loggerB = Logger.getLogger(EVENT_NAME_B);
81 loggerC = Logger.getLogger(EVENT_NAME_C);
82 loggerD = Logger.getLogger(EVENT_NAME_D);
83
84 loggerA.setLevel(Level.ALL);
85 loggerB.setLevel(Level.ALL);
86 loggerC.setLevel(Level.ALL);
87 loggerD.setLevel(Level.ALL);
88
89 handlerA = new LttngLogHandler();
90 handlerB = new LttngLogHandler();
91 handlerC = new LttngLogHandler();
92
c5524c71
AM
93 loggerA.addHandler((Handler) handlerA);
94 loggerB.addHandler((Handler) handlerB);
95 loggerC.addHandler((Handler) handlerC);
da8308fe
AM
96 }
97
8a0613fa
AM
98 /**
99 * Test teardown
100 */
da8308fe 101 @After
c5524c71
AM
102 public void julTeardown() {
103 loggerA.removeHandler((Handler) handlerA);
104 loggerB.removeHandler((Handler) handlerB);
105 loggerC.removeHandler((Handler) handlerC);
da8308fe
AM
106
107 loggerA = null;
108 loggerB = null;
109 loggerC = null;
110 loggerD = null;
da8308fe
AM
111 }
112
c5524c71
AM
113 @Override
114 protected Domain getDomain() {
115 return DOMAIN;
9368bd5e
AM
116 }
117
c5524c71
AM
118 @Override
119 protected void sendEventsToLoggers() {
8576633f
AM
120 JulTestUtils.send10EventsTo(loggerA);
121 JulTestUtils.send10EventsTo(loggerB);
122 JulTestUtils.send10EventsTo(loggerC);
123 JulTestUtils.send10EventsTo(loggerD);
da8308fe 124 }
da8308fe 125}
This page took 0.034723 seconds and 4 git commands to generate.