org.jboss.as.test.integration.transactions.RemoteLookups Maven / Gradle / Ivy
/*
* 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.transactions;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.Properties;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.rmi.PortableRemoteObject;
import org.jboss.as.arquillian.container.ManagementClient;
import org.jboss.as.test.shared.integration.ejb.security.CallbackHandler;
import org.jboss.logging.Logger;
/**
* Util class which is used for remote lookups in transaction related tests.
*
* @author Ondra Chaloupka
*/
public final class RemoteLookups {
private static final Logger log = Logger.getLogger(RemoteLookups.class);
private RemoteLookups() {
// not instance here
}
public static T lookupModule(InitialContext ctx, Class beanType) throws NamingException {
String lookupString = String.format("java:module/%s!%s", beanType.getSimpleName(), beanType.getName());
log.debugf("looking for: %s", lookupString);
return beanType.cast(ctx.lookup(lookupString));
}
public static T lookupEjbStateless(InitialContext ctx, String archiveName, Class extends T> beanType,
Class remoteInterface) throws NamingException {
return lookupEjb(ctx, archiveName, beanType, remoteInterface, false);
}
public static T lookupEjbStateful(InitialContext ctx, String archiveName, Class extends T> beanType,
Class remoteInterface) throws NamingException {
return lookupEjb(ctx, archiveName, beanType, remoteInterface, true);
}
public static T lookupEjbStateless(String host, int port, String archiveName, Class extends T> beanType,
Class remoteInterface) throws NamingException, URISyntaxException {
return lookupEjb(host, port, archiveName, beanType, remoteInterface, false);
}
public static T lookupEjbStateful(String host, int port, String archiveName, Class extends T> beanType,
Class remoteInterface) throws NamingException, URISyntaxException {
return lookupEjb(host, port, archiveName, beanType, remoteInterface, true);
}
public static T lookupEjbStateless(final ManagementClient managementClient, final String archiveName, Class extends T> beanType,
final Class remoteInterface) throws NamingException, URISyntaxException {
return lookupEjb(managementClient, archiveName, beanType, remoteInterface, false);
}
public static T lookupIIOP(String serverHost, int iiopPort, Class homeClass, Class> beanClass) throws NamingException {
final Properties prope = new Properties();
prope.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.cosnaming.CNCtxFactory");
prope.setProperty(Context.URL_PKG_PREFIXES, "org.jboss.iiop.naming:org.jboss.naming.client");
prope.put(Context.PROVIDER_URL, "corbaloc::" + serverHost +":" + iiopPort + "/JBoss/Naming/root");
final InitialContext context = new InitialContext(prope);
final Object ejbHome = context.lookup(beanClass.getSimpleName());
return homeClass.cast(PortableRemoteObject.narrow(ejbHome, homeClass));
}
private static T lookupEjb(InitialContext ctx, String archiveName, Class extends T> beanType,
Class remoteInterface, boolean isStateful) throws NamingException {
String ejbLookup = org.jboss.as.test.shared.integration.ejb.security.Util.createRemoteEjbJndiContext(
"",
archiveName,
"",
beanType.getSimpleName(),
remoteInterface.getName(),
isStateful);
log.debugf("looking for: %s", ejbLookup);
return remoteInterface.cast(ctx.lookup(ejbLookup));
}
private static T lookupEjb(String host, int port, String archiveName, Class extends T> beanType,
Class remoteInterface, boolean isStateful) throws NamingException, URISyntaxException {
InitialContext ctx = getRemoteContext(host, port);
return lookupEjb(ctx, archiveName, beanType, remoteInterface, isStateful);
}
private static T lookupEjb(ManagementClient managementClient, String archiveName, Class extends T> beanType,
Class remoteInterface, boolean isStateful) throws NamingException, URISyntaxException {
InitialContext ctx = getRemoteContext(managementClient);
return lookupEjb(ctx, archiveName, beanType, remoteInterface, isStateful);
}
private static InitialContext getRemoteContext(final String host, int port) throws NamingException, URISyntaxException {
Properties props = getEjbClientProperties();
URI namingUri = new URI("remote+http", null, host, port, "", "", "");
props.put(Context.PROVIDER_URL, namingUri.toString());
return new InitialContext(props);
}
private static InitialContext getRemoteContext(final ManagementClient managementClient) throws NamingException, URISyntaxException {
Properties props = getEjbClientProperties();
URI webUri = managementClient.getWebUri();
URI namingUri = new URI("remote+http", webUri.getUserInfo(), webUri.getHost(), webUri.getPort(), "", "", "");
props.put(Context.PROVIDER_URL, namingUri.toString());
return new InitialContext(props);
}
private static Properties getEjbClientProperties() {
final Properties props = new Properties();
props.put(Context.INITIAL_CONTEXT_FACTORY, org.wildfly.naming.client.WildFlyInitialContextFactory.class.getName());
props.put("jboss.naming.client.connect.options.org.xnio.Options.SASL_POLICY_NOPLAINTEXT", "false");
props.put("jboss.naming.client.security.callback.handler.class", CallbackHandler.class.getName());
props.put("jboss.naming.client.ejb.context", true);
return props;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy