-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from emmartins/ejb-security-context-propagation…
…-enhancements Squash me
- Loading branch information
Showing
11 changed files
with
103 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
/* | ||
* JBoss, Home of Professional Open Source | ||
* Copyright 2017, Red Hat, Inc. and/or its affiliates, and individual | ||
* contributors by the @authors tag. See the copyright.txt in the | ||
* distribution for a full listing of individual contributors. | ||
* Copyright 2023 JBoss by Red Hat. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
|
@@ -16,43 +15,47 @@ | |
*/ | ||
package org.jboss.as.quickstarts.ejb_security_context_propagation; | ||
|
||
import java.util.Hashtable; | ||
|
||
import javax.naming.Context; | ||
import javax.naming.InitialContext; | ||
|
||
import org.junit.Test; | ||
import org.wildfly.security.auth.client.AuthenticationConfiguration; | ||
import org.wildfly.security.auth.client.AuthenticationContext; | ||
import org.wildfly.security.auth.client.MatchRule; | ||
import org.wildfly.security.sasl.SaslMechanismSelector; | ||
|
||
import javax.naming.Context; | ||
import javax.naming.InitialContext; | ||
import javax.naming.NamingException; | ||
import java.util.Hashtable; | ||
|
||
/** | ||
* The remote client responsible for making invoking the intermediate bean to demonstrate security context propagation | ||
* in EJB to remote EJB calls. | ||
* | ||
* The functional integration testing. | ||
* @author emartins | ||
* @author <a href="mailto:[email protected]">Stefan Guilhen</a> | ||
* | ||
*/ | ||
public class RemoteClient { | ||
public class SecurityContextPropagationIT { | ||
|
||
public static void main(String[] args) throws Exception { | ||
@Test | ||
public void testSecurityContextPropagation() throws NamingException { | ||
// we assume standard dist, where EJBs are at ejb:/ejb-security-context-propagation/, if no SERVER_HOST or server.host in env/system props | ||
final boolean standardDist = System.getenv("SERVER_HOST") == null && System.getProperty("server.host") == null; | ||
System.out.println("standardDist: "+standardDist); | ||
// invoke the intermediate bean using the identity configured in wildfly-config.xml | ||
invokeIntermediateBean(); | ||
|
||
invokeIntermediateBean(standardDist); | ||
// now lets programmatically setup an authentication context to switch users before invoking the intermediate bean | ||
AuthenticationConfiguration superUser = AuthenticationConfiguration.empty().setSaslMechanismSelector(SaslMechanismSelector.NONE.addMechanism("PLAIN")). | ||
useName("quickstartAdmin").usePassword("adminPwd1!"); | ||
final AuthenticationContext authCtx = AuthenticationContext.empty().with(MatchRule.ALL, superUser); | ||
AuthenticationContext.getContextManager().setThreadDefault(authCtx); | ||
invokeIntermediateBean(); | ||
invokeIntermediateBean(standardDist); | ||
} | ||
|
||
private static void invokeIntermediateBean() throws Exception { | ||
private static void invokeIntermediateBean(boolean standardDist) throws NamingException { | ||
final Hashtable<String, String> jndiProperties = new Hashtable<>(); | ||
jndiProperties.put(Context.INITIAL_CONTEXT_FACTORY, "org.wildfly.naming.client.WildFlyInitialContextFactory"); | ||
jndiProperties.put(Context.PROVIDER_URL, "remote+http://localhost:8080"); | ||
final Context context = new InitialContext(jndiProperties); | ||
|
||
IntermediateEJBRemote intermediate = (IntermediateEJBRemote) context.lookup("ejb:/ejb-security-context-propagation/IntermediateEJB!" | ||
IntermediateEJBRemote intermediate = (IntermediateEJBRemote) context.lookup("ejb:/"+(standardDist?"ejb-security-context-propagation":"ROOT")+"/IntermediateEJB!" | ||
+ IntermediateEJBRemote.class.getName()); | ||
System.out.println("\n\n* * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\n"); | ||
System.out.println(intermediate.makeRemoteCalls()); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters