/* * JBoss, Home of Professional Open Source. * Copyright 2014, 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.clustering.single.dispatcher; import static org.junit.Assert.*; import static org.jboss.as.test.clustering.ClusteringTestConstants.*; 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.test.clustering.cluster.dispatcher.bean.ClusterTopology; import org.jboss.as.test.clustering.cluster.dispatcher.bean.ClusterTopologyRetriever; import org.jboss.as.test.clustering.cluster.dispatcher.bean.ClusterTopologyRetrieverBean; import org.jboss.as.test.clustering.ejb.EJBDirectory; import org.jboss.as.test.clustering.ejb.RemoteEJBDirectory; import org.jboss.as.test.shared.util.DisableInvocationTestUtil; import org.jboss.ejb.client.legacy.JBossEJBProperties; import org.jboss.shrinkwrap.api.Archive; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; /** * Validates that a command dispatcher works in a non-clustered environment. * @author Paul Ferraro */ @RunWith(Arquillian.class) @RunAsClient public class CommandDispatcherTestCase { private static final String MODULE_NAME = "command-dispatcher"; private static final String CLIENT_PROPERTIES = "cluster/ejb3/stateless/jboss-ejb-client.properties"; @BeforeClass public static void beforeClass() { DisableInvocationTestUtil.disable(); } @Deployment public static Archive<?> createDeployment() { final JavaArchive ejbJar = ShrinkWrap.create(JavaArchive.class, MODULE_NAME + ".jar"); ejbJar.addPackage(ClusterTopologyRetriever.class.getPackage()); return ejbJar; } @Test public void test() throws Exception { JBossEJBProperties properties = JBossEJBProperties.fromClassPath(CommandDispatcherTestCase.class.getClassLoader(), CLIENT_PROPERTIES); properties.runCallable(() -> { try (EJBDirectory directory = new RemoteEJBDirectory(MODULE_NAME)) { ClusterTopologyRetriever bean = directory.lookupStateless(ClusterTopologyRetrieverBean.class, ClusterTopologyRetriever.class); ClusterTopology topology = bean.getClusterTopology(); assertEquals(1, topology.getNodes().size()); assertTrue(topology.getNodes().toString(), topology.getNodes().contains(NODE_1)); assertTrue(topology.getRemoteNodes().toString() + " should be empty", topology.getRemoteNodes().isEmpty()); } return null; }); } }