Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
RAMPART-136 test case to verify the fix
- Loading branch information
Nandana Mihindukulasooriya
committed
Dec 22, 2010
1 parent
39528cd
commit 1e8ea91181dbed8b1308d3ccdccd39eba7cf8515
Showing
3 changed files
with
251 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* 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 | ||
* | ||
* 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.apache.rampart; | ||
|
||
import org.apache.axiom.soap.SOAPEnvelope; | ||
import org.apache.axis2.builder.SOAPBuilder; | ||
import org.apache.axis2.context.MessageContext; | ||
import org.apache.neethi.Policy; | ||
|
||
import java.io.ByteArrayInputStream; | ||
|
||
public class PolicyAssertionsTest extends MessageBuilderTestBase { | ||
|
||
public PolicyAssertionsTest(String name) { | ||
super(name); | ||
} | ||
|
||
public void testRequiredElementsValid() throws Exception { | ||
|
||
MessageContext ctx = getMsgCtx(); | ||
|
||
String policyXml = "test-resources/policy/rampart-asymm-required-elements.xml"; | ||
Policy policy = loadPolicy(policyXml); | ||
|
||
ctx.setProperty(RampartMessageData.KEY_RAMPART_POLICY, policy); | ||
|
||
MessageBuilder builder = new MessageBuilder(); | ||
builder.build(ctx); | ||
|
||
// Building the SOAP envelope from the OMElement | ||
SOAPBuilder soapBuilder = new SOAPBuilder(); | ||
SOAPEnvelope env = ctx.getEnvelope(); | ||
ByteArrayInputStream inStream = new ByteArrayInputStream(env.toString().getBytes()); | ||
env = (SOAPEnvelope) soapBuilder.processDocument(inStream, "text/xml", ctx); | ||
ctx.setEnvelope(env); | ||
|
||
RampartEngine engine = new RampartEngine(); | ||
engine.process(ctx); | ||
|
||
} | ||
|
||
public void testRequiredElementsInvalid() throws Exception { | ||
|
||
MessageContext ctx = getMsgCtx(); | ||
|
||
String policyXml = "test-resources/policy/rampart-asymm-required-elements-2.xml"; | ||
Policy policy = loadPolicy(policyXml); | ||
|
||
ctx.setProperty(RampartMessageData.KEY_RAMPART_POLICY, policy); | ||
|
||
MessageBuilder builder = new MessageBuilder(); | ||
builder.build(ctx); | ||
|
||
// Building the SOAP envelope from the OMElement | ||
SOAPBuilder soapBuilder = new SOAPBuilder(); | ||
SOAPEnvelope env = ctx.getEnvelope(); | ||
ByteArrayInputStream inStream = new ByteArrayInputStream(env.toString().getBytes()); | ||
env = (SOAPEnvelope) soapBuilder.processDocument(inStream, "text/xml", ctx); | ||
ctx.setEnvelope(env); | ||
|
||
RampartEngine engine = new RampartEngine(); | ||
|
||
try { | ||
engine.process(ctx); | ||
fail(" This should have thrown RampartException: " + | ||
"Required Elements not found in the incoming message : wsrm:Sequence"); | ||
} catch (RampartException expected) { | ||
// Ignore intentionally as the test is supposed to throw an exception | ||
} | ||
|
||
} | ||
} |
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,84 @@ | ||
<wsp:Policy wsu:Id="policy2" | ||
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" | ||
xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" | ||
xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"> | ||
<wsp:ExactlyOne> | ||
<wsp:All> | ||
<sp:SymmetricBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"> | ||
<wsp:Policy> | ||
<sp:ProtectionToken> | ||
<wsp:Policy> | ||
<sp:X509Token | ||
sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never"> | ||
<wsp:Policy> | ||
<sp:RequireThumbprintReference/> | ||
<sp:WssX509V3Token10/> | ||
</wsp:Policy> | ||
</sp:X509Token> | ||
</wsp:Policy> | ||
</sp:ProtectionToken> | ||
<sp:AlgorithmSuite> | ||
<wsp:Policy> | ||
<sp:Basic128/> | ||
</wsp:Policy> | ||
</sp:AlgorithmSuite> | ||
<sp:Layout> | ||
<wsp:Policy> | ||
<sp:Strict/> | ||
</wsp:Policy> | ||
</sp:Layout> | ||
<sp:IncludeTimestamp/> | ||
<sp:OnlySignEntireHeadersAndBody/> | ||
</wsp:Policy> | ||
</sp:SymmetricBinding> | ||
<sp:Wss11 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"> | ||
<wsp:Policy> | ||
<sp:MustSupportRefKeyIdentifier/> | ||
<sp:MustSupportRefIssuerSerial/> | ||
<sp:MustSupportRefThumbprint/> | ||
<sp:MustSupportRefEncryptedKey/> | ||
</wsp:Policy> | ||
</sp:Wss11> | ||
<sp:SignedParts xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"> | ||
<sp:Body/> | ||
<sp:Header Name="To" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
<sp:Header Name="From" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
<sp:Header Name="FaultTo" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
<sp:Header Name="ReplyTo" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
<sp:Header Name="MessageID" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
<sp:Header Name="RelatesTo" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
<sp:Header Name="Action" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
</sp:SignedParts> | ||
<sp:EncryptedParts xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"> | ||
<sp:Body/> | ||
</sp:EncryptedParts> | ||
<sp:RequiredElements xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"> | ||
<sp:XPath xmlns:wsrm="http://docs.oasis-open.org/ws-rx/wsrm/200702">wsrm:Sequence</sp:XPath> | ||
</sp:RequiredElements> | ||
<ramp:RampartConfig xmlns:ramp="http://ws.apache.org/rampart/policy"> | ||
<ramp:user>alice</ramp:user> | ||
<ramp:encryptionUser>bob</ramp:encryptionUser> | ||
<ramp:passwordCallbackClass>org.apache.rampart.TestCBHandler</ramp:passwordCallbackClass> | ||
|
||
<ramp:signatureCrypto> | ||
<ramp:crypto provider="org.apache.ws.security.components.crypto.Merlin"> | ||
<ramp:property name="org.apache.ws.security.crypto.merlin.keystore.type">JKS</ramp:property> | ||
<ramp:property name="org.apache.ws.security.crypto.merlin.file">test-resources/keys/interop2.jks | ||
</ramp:property> | ||
<ramp:property name="org.apache.ws.security.crypto.merlin.keystore.password">password | ||
</ramp:property> | ||
</ramp:crypto> | ||
</ramp:signatureCrypto> | ||
<ramp:encryptionCypto> | ||
<ramp:crypto provider="org.apache.ws.security.components.crypto.Merlin"> | ||
<ramp:property name="org.apache.ws.security.crypto.merlin.keystore.type">JKS</ramp:property> | ||
<ramp:property name="org.apache.ws.security.crypto.merlin.file">test-resources/keys/interop2.jks | ||
</ramp:property> | ||
<ramp:property name="org.apache.ws.security.crypto.merlin.keystore.password">password | ||
</ramp:property> | ||
</ramp:crypto> | ||
</ramp:encryptionCypto> | ||
</ramp:RampartConfig> | ||
</wsp:All> | ||
</wsp:ExactlyOne> | ||
</wsp:Policy> |
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,84 @@ | ||
<wsp:Policy wsu:Id="policy2" | ||
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" | ||
xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" | ||
xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"> | ||
<wsp:ExactlyOne> | ||
<wsp:All> | ||
<sp:SymmetricBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"> | ||
<wsp:Policy> | ||
<sp:ProtectionToken> | ||
<wsp:Policy> | ||
<sp:X509Token | ||
sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never"> | ||
<wsp:Policy> | ||
<sp:RequireThumbprintReference/> | ||
<sp:WssX509V3Token10/> | ||
</wsp:Policy> | ||
</sp:X509Token> | ||
</wsp:Policy> | ||
</sp:ProtectionToken> | ||
<sp:AlgorithmSuite> | ||
<wsp:Policy> | ||
<sp:Basic128/> | ||
</wsp:Policy> | ||
</sp:AlgorithmSuite> | ||
<sp:Layout> | ||
<wsp:Policy> | ||
<sp:Strict/> | ||
</wsp:Policy> | ||
</sp:Layout> | ||
<sp:IncludeTimestamp/> | ||
<sp:OnlySignEntireHeadersAndBody/> | ||
</wsp:Policy> | ||
</sp:SymmetricBinding> | ||
<sp:Wss11 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"> | ||
<wsp:Policy> | ||
<sp:MustSupportRefKeyIdentifier/> | ||
<sp:MustSupportRefIssuerSerial/> | ||
<sp:MustSupportRefThumbprint/> | ||
<sp:MustSupportRefEncryptedKey/> | ||
</wsp:Policy> | ||
</sp:Wss11> | ||
<sp:SignedParts xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"> | ||
<sp:Body/> | ||
<sp:Header Name="To" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
<sp:Header Name="From" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
<sp:Header Name="FaultTo" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
<sp:Header Name="ReplyTo" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
<sp:Header Name="MessageID" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
<sp:Header Name="RelatesTo" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
<sp:Header Name="Action" Namespace="http://schemas.xmlsoap.org/ws/2004/08/addressing"/> | ||
</sp:SignedParts> | ||
<sp:EncryptedParts xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"> | ||
<sp:Body/> | ||
</sp:EncryptedParts> | ||
<sp:RequiredElements xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"> | ||
<sp:XPath xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">wsa:To</sp:XPath> | ||
</sp:RequiredElements> | ||
<ramp:RampartConfig xmlns:ramp="http://ws.apache.org/rampart/policy"> | ||
<ramp:user>alice</ramp:user> | ||
<ramp:encryptionUser>bob</ramp:encryptionUser> | ||
<ramp:passwordCallbackClass>org.apache.rampart.TestCBHandler</ramp:passwordCallbackClass> | ||
|
||
<ramp:signatureCrypto> | ||
<ramp:crypto provider="org.apache.ws.security.components.crypto.Merlin"> | ||
<ramp:property name="org.apache.ws.security.crypto.merlin.keystore.type">JKS</ramp:property> | ||
<ramp:property name="org.apache.ws.security.crypto.merlin.file">test-resources/keys/interop2.jks | ||
</ramp:property> | ||
<ramp:property name="org.apache.ws.security.crypto.merlin.keystore.password">password | ||
</ramp:property> | ||
</ramp:crypto> | ||
</ramp:signatureCrypto> | ||
<ramp:encryptionCypto> | ||
<ramp:crypto provider="org.apache.ws.security.components.crypto.Merlin"> | ||
<ramp:property name="org.apache.ws.security.crypto.merlin.keystore.type">JKS</ramp:property> | ||
<ramp:property name="org.apache.ws.security.crypto.merlin.file">test-resources/keys/interop2.jks | ||
</ramp:property> | ||
<ramp:property name="org.apache.ws.security.crypto.merlin.keystore.password">password | ||
</ramp:property> | ||
</ramp:crypto> | ||
</ramp:encryptionCypto> | ||
</ramp:RampartConfig> | ||
</wsp:All> | ||
</wsp:ExactlyOne> | ||
</wsp:Policy> |