2 * Copyright (C) 2015, EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
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.
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.
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.
19 package org.lttng.ust.agent.integration.events;
21 import static org.junit.Assert.assertTrue;
23 import java.io.IOException;
24 import java.util.logging.Handler;
25 import java.util.logging.Level;
26 import java.util.logging.Logger;
28 import org.junit.After;
29 import org.junit.AfterClass;
30 import org.junit.Before;
31 import org.junit.BeforeClass;
32 import org.lttng.tools.ILttngSession.Domain;
33 import org.lttng.tools.LttngToolsHelper;
34 import org.lttng.ust.agent.jul.LttngLogHandler;
35 import org.lttng.ust.agent.utils.JulTestUtils;
36 import org.lttng.ust.agent.utils.LttngUtils;
39 * Enabled events test for the LTTng-UST JUL log handler.
41 public class JulEnabledEventsIT extends EnabledEventsITBase {
43 private static final Domain DOMAIN = Domain.JUL;
45 private Logger loggerA;
46 private Logger loggerB;
47 private Logger loggerC;
48 private Logger loggerD;
54 public static void julClassSetup() {
55 /* Make sure we can find the JNI library and lttng-tools */
56 assertTrue(JulTestUtils.checkForJulLibrary());
57 assertTrue(LttngUtils.checkForLttngTools(Domain.JUL));
59 LttngToolsHelper.destroyAllSessions();
66 public static void julClassCleanup() {
67 LttngToolsHelper.deleteAllTraces();
73 * @throws SecurityException
77 public void julSetup() throws SecurityException, IOException {
78 loggerA = Logger.getLogger(EVENT_NAME_A);
79 loggerB = Logger.getLogger(EVENT_NAME_B);
80 loggerC = Logger.getLogger(EVENT_NAME_C);
81 loggerD = Logger.getLogger(EVENT_NAME_D);
83 loggerA.setLevel(Level.ALL);
84 loggerB.setLevel(Level.ALL);
85 loggerC.setLevel(Level.ALL);
86 loggerD.setLevel(Level.ALL);
88 handlerA = new LttngLogHandler();
89 handlerB = new LttngLogHandler();
90 handlerC = new LttngLogHandler();
92 loggerA.addHandler((Handler) handlerA);
93 loggerB.addHandler((Handler) handlerB);
94 loggerC.addHandler((Handler) handlerC);
101 public void julTeardown() {
102 loggerA.removeHandler((Handler) handlerA);
103 loggerB.removeHandler((Handler) handlerB);
104 loggerC.removeHandler((Handler) handlerC);
113 protected Domain getDomain() {
118 protected void sendEventsToLoggers() {
119 JulTestUtils.send10EventsTo(loggerA);
120 JulTestUtils.send10EventsTo(loggerB);
121 JulTestUtils.send10EventsTo(loggerC);
122 JulTestUtils.send10EventsTo(loggerD);
126 protected void sendLocalizedEvent(String rawString, Object[] params) {
127 loggerA.log(Level.SEVERE, rawString, params);