/* * JBoss, Home of Professional Open Source. * Copyright (c) 2016, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.test.integration.jca.tracer; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.ADD; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.REMOVE; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OP; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OP_ADDR; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.SUBSYSTEM; import java.io.File; import java.io.IOException; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Paths; import java.util.Hashtable; import javax.naming.Context; import javax.naming.InitialContext; import javax.naming.NamingException; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.container.test.api.RunAsClient; import org.jboss.arquillian.junit.Arquillian; import org.jboss.as.arquillian.api.ServerSetup; import org.jboss.as.arquillian.api.ServerSetupTask; import org.jboss.as.arquillian.container.ManagementClient; import org.jboss.as.test.integration.management.ManagementOperations; import org.jboss.as.test.shared.ServerReload; import org.jboss.dmr.ModelNode; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; /** * @author Ondra Chaloupka <ochaloup@redhat.com> */ @RunWith(Arquillian.class) @RunAsClient @ServerSetup({ TracerEnableTestCase.TracerEnableSetup.class, LogHandlerCreationSetup.class }) public class TracerEnableTestCase { private static final String ARCHIVE_NAME = "tracer-enable"; @Deployment public static JavaArchive deploy() throws Exception { return ShrinkWrap.create(JavaArchive.class, ARCHIVE_NAME + ".jar") .addClasses(StatelessBean.class, StatelessBeanRemote.class); } @Test public void tracerEnabled() throws NamingException, IOException { final Hashtable<String, Object> jndiProps = new Hashtable<String, Object>(); jndiProps.put(Context.URL_PKG_PREFIXES, "org.jboss.ejb.client.naming"); final Context ctx = new InitialContext(jndiProps); StatelessBeanRemote bean = (StatelessBeanRemote) ctx.lookup( "ejb:/" + ARCHIVE_NAME + "/" + StatelessBean.class.getSimpleName() + "!" + StatelessBeanRemote.class.getName()); bean.createTable(); bean.insertToDB(); File logFile = new File(LogHandlerCreationSetup.SERVER_LOG_DIR_VALUE, LogHandlerCreationSetup.JCA_LOG_FILE_PARAM); Assert.assertTrue("Log file " + logFile + " should exist", logFile.exists()); String logContent = new String(Files.readAllBytes(Paths.get(logFile.getPath())), StandardCharsets.UTF_8); Assert.assertTrue("Log file " + logFile + " has to contain org.jboss.jca.core.tracer.Tracer", logContent.contains("org.jboss.jca.core.tracer.Tracer")); Assert.assertTrue("Log file " + logFile + " has to contain IJTRACER-ExampleDS", logContent.contains("IJTRACER-ExampleDS")); } static final class TracerEnableSetup implements ServerSetupTask { private static final ModelNode TRACER_ADDRESS = new ModelNode() .add(SUBSYSTEM, "jca") .add("tracer", "tracer"); @Override public void setup(ManagementClient managementClient, String containerId) throws Exception { ModelNode operation = new ModelNode(); operation.get(OP).set(ADD); operation.get(OP_ADDR).set(TRACER_ADDRESS); operation.get("enabled").set("true"); ManagementOperations.executeOperation(managementClient.getControllerClient(), operation); ServerReload.executeReloadAndWaitForCompletion(managementClient.getControllerClient(), 30_000); } @Override public void tearDown(ManagementClient managementClient, String containerId) throws Exception { ModelNode operation = new ModelNode(); operation.get(OP).set(REMOVE); operation.get(OP_ADDR).set(TRACER_ADDRESS); ManagementOperations.executeOperation(managementClient.getControllerClient(), operation); ServerReload.executeReloadAndWaitForCompletion(managementClient.getControllerClient(), 30_000); } } }