-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[JBWS-4389] Use TwoWayPassword in a UsernameToken profile instead of …
…ClearPassword
- Loading branch information
Showing
6 changed files
with
178 additions
and
5 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
130 changes: 130 additions & 0 deletions
130
...ws/samples/wsse/policy/jaas/UsernameAuthorizationTextDigestedPropertiesRealmTestCase.java
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 |
---|---|---|
@@ -0,0 +1,130 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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 | ||
* | ||
* 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. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.jboss.test.ws.jaxws.samples.wsse.policy.jaas; | ||
|
||
import jakarta.xml.ws.BindingProvider; | ||
import jakarta.xml.ws.Service; | ||
import org.apache.cxf.ws.security.SecurityConstants; | ||
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.arquillian.test.api.ArquillianResource; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.asset.StringAsset; | ||
import org.jboss.shrinkwrap.api.spec.WebArchive; | ||
import org.jboss.wsf.test.JBossWSTest; | ||
import org.jboss.wsf.test.JBossWSTestHelper; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
import javax.xml.namespace.QName; | ||
import java.io.File; | ||
import java.net.URL; | ||
|
||
/** | ||
* WS-Security Policy username test case leveraging JAAS container integration and using clear text client passwords | ||
* with server side properties-realm configured to store digested password. | ||
* WS-SecurityPolicy 1.2 used for policies in the included wsdl contract. | ||
* | ||
*/ | ||
@RunWith(Arquillian.class) | ||
public final class UsernameAuthorizationTextDigestedPropertiesRealmTestCase extends JBossWSTest | ||
{ | ||
@ArquillianResource | ||
private URL baseURL; | ||
|
||
@Deployment(testable = false) | ||
public static WebArchive createDeployment() { | ||
WebArchive archive = ShrinkWrap.create(WebArchive.class, "jaxws-samples-wsse-policy-username-jaas.war"); | ||
archive | ||
.setManifest(new StringAsset("Manifest-Version: 1.0\n" | ||
+ "Dependencies: org.jboss.ws.cxf.jbossws-cxf-client\n")) | ||
.addClass(org.jboss.test.ws.jaxws.samples.wsse.policy.jaas.POJOEndpointAuthorizationInterceptor.class) | ||
.addClass(org.jboss.test.ws.jaxws.samples.wsse.policy.jaas.ServiceIface.class) | ||
.addClass(org.jboss.test.ws.jaxws.samples.wsse.policy.jaas.ServiceImpl.class) | ||
.addClass(org.jboss.test.ws.jaxws.samples.wsse.policy.jaxws.GreetMe.class) | ||
.addClass(org.jboss.test.ws.jaxws.samples.wsse.policy.jaxws.GreetMeResponse.class) | ||
.addClass(org.jboss.test.ws.jaxws.samples.wsse.policy.jaxws.SayHello.class) | ||
.addClass(org.jboss.test.ws.jaxws.samples.wsse.policy.jaxws.SayHelloResponse.class) | ||
.addAsWebInfResource(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/wsse/policy/jaas/auth/WEB-INF/jaxws-endpoint-config.xml"), "jaxws-endpoint-config.xml") | ||
.addAsWebInfResource(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/wsse/policy/jaas/digest/WEB-INF/jboss-web-digest.xml"), "jboss-web.xml") | ||
.addAsWebInfResource(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/wsse/policy/jaas/auth/WEB-INF/wsdl/SecurityService.wsdl"), "wsdl/SecurityService.wsdl") | ||
.addAsWebInfResource(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/wsse/policy/jaas/auth/WEB-INF/wsdl/SecurityService_schema1.xsd"), "wsdl/SecurityService_schema1.xsd") | ||
.setWebXML(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/wsse/policy/jaas/auth/WEB-INF/web.xml")); | ||
return archive; | ||
} | ||
|
||
@Test | ||
@RunAsClient | ||
public void test() throws Exception | ||
{ | ||
QName serviceName = new QName("http://www.jboss.org/jbossws/ws-extensions/wssecuritypolicy", "SecurityService"); | ||
URL wsdlURL = new URL(baseURL + "/jaxws-samples-wsse-policy-username-jaas?wsdl"); | ||
Service service = Service.create(wsdlURL, serviceName); | ||
ServiceIface proxy = (ServiceIface)service.getPort(ServiceIface.class); | ||
setupWsse(proxy, "kermit"); | ||
assertEquals("Secure Hello World!", proxy.sayHello()); | ||
} | ||
|
||
@Test | ||
@RunAsClient | ||
public void testUnauthenticated() throws Exception | ||
{ | ||
QName serviceName = new QName("http://www.jboss.org/jbossws/ws-extensions/wssecuritypolicy", "SecurityService"); | ||
URL wsdlURL = new URL(baseURL + "/jaxws-samples-wsse-policy-username-jaas?wsdl"); | ||
Service service = Service.create(wsdlURL, serviceName); | ||
ServiceIface proxy = (ServiceIface)service.getPort(ServiceIface.class); | ||
setupWsse(proxy, "snoopy"); | ||
try | ||
{ | ||
proxy.sayHello(); | ||
fail("User snoopy shouldn't be authenticated."); | ||
} | ||
catch (Exception e) | ||
{ | ||
//OK | ||
} | ||
} | ||
|
||
@Test | ||
@RunAsClient | ||
public void testUnauthorized() throws Exception | ||
{ | ||
QName serviceName = new QName("http://www.jboss.org/jbossws/ws-extensions/wssecuritypolicy", "SecurityService"); | ||
URL wsdlURL = new URL(baseURL + "/jaxws-samples-wsse-policy-username-jaas?wsdl"); | ||
Service service = Service.create(wsdlURL, serviceName); | ||
ServiceIface proxy = (ServiceIface)service.getPort(ServiceIface.class); | ||
setupWsse(proxy, "kermit"); | ||
try | ||
{ | ||
proxy.greetMe(); | ||
fail("User kermit shouldn't be authorized to call greetMe()."); | ||
} | ||
catch (Exception e) | ||
{ | ||
assertEquals("Unauthorized", e.getMessage()); | ||
} | ||
} | ||
|
||
private void setupWsse(ServiceIface proxy, String username) | ||
{ | ||
((BindingProvider)proxy).getRequestContext().put(SecurityConstants.USERNAME, username); | ||
((BindingProvider)proxy).getRequestContext().put(SecurityConstants.CALLBACK_HANDLER, "org.jboss.test.ws.jaxws.samples.wsse.policy.jaas.UsernamePasswordCallback"); | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
...sts/src/test/resources/jaxws/samples/wsse/policy/jaas/digest/WEB-INF/jboss-web-digest.xml
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!DOCTYPE jboss-web PUBLIC "-//JBoss//DTD Web Application 2.4//EN" "http://www.jboss.org/j2ee/dtd/jboss-web_4_0.dtd"> | ||
|
||
<jboss-web> | ||
<security-domain>java:/jaas/JBossWSDigestPropertiesDomain</security-domain> | ||
</jboss-web> |
2 changes: 2 additions & 0 deletions
2
...t/resources/jaxws/samples/wsse/policy/jaas/digest/WEB-INF/jbossws-users-digest.properties
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#$REALM_NAME=ApplicationRealm$ This line is used by the add-user utility to identify the realm name already used in this file. | ||
kermit=95f7b13fffe05d817aa31138ab8252e4 |