/** * 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.apache.wss4j.dom.message; import java.util.Collections; import javax.security.auth.callback.CallbackHandler; import org.w3c.dom.Document; import org.apache.wss4j.dom.WSConstants; import org.apache.wss4j.dom.common.CustomHandler; import org.apache.wss4j.dom.common.KeystoreCallbackHandler; import org.apache.wss4j.dom.common.SOAPUtil; import org.apache.wss4j.dom.common.SecurityTestUtil; import org.apache.wss4j.dom.engine.WSSConfig; import org.apache.wss4j.dom.engine.WSSecurityEngine; import org.apache.wss4j.common.EncryptionActionToken; import org.apache.wss4j.common.crypto.Crypto; import org.apache.wss4j.common.crypto.CryptoFactory; import org.apache.wss4j.common.ext.WSSecurityException; import org.apache.wss4j.common.util.XMLUtils; import org.apache.wss4j.dom.handler.HandlerAction; import org.apache.wss4j.dom.handler.RequestData; import org.apache.wss4j.dom.handler.WSHandlerConstants; import org.junit.Before; import org.junit.Test; /** * This is a test for Certificate Revocation List checking before encryption. * * This test reuses the revoked certificate from SignatureCRLTest */ public class EncryptionCRLTest extends org.junit.Assert { private static final org.slf4j.Logger LOG = org.slf4j.LoggerFactory.getLogger(EncryptionCRLTest.class); private WSSecurityEngine secEngine = new WSSecurityEngine(); private CallbackHandler keystoreCallbackHandler = new KeystoreCallbackHandler(); private Crypto crypto; @org.junit.AfterClass public static void cleanup() throws Exception { SecurityTestUtil.cleanup(); } public EncryptionCRLTest() throws Exception { crypto = CryptoFactory.getInstance("wss40All.properties"); } /** * Setup method * * @throws java.lang.Exception Thrown when there is a problem in setup */ @Before public void setUp() throws Exception { secEngine.setWssConfig(WSSConfig.getNewInstance()); } /** * Test that encrypts without certificate revocation check * so it should pass * * @throws java.lang.Exception Thrown when there is any problem in encryption or decryption */ @Test public void testEncryptionWithOutRevocationCheck() throws Exception { final WSSConfig cfg = WSSConfig.getNewInstance(); final RequestData reqData = new RequestData(); reqData.setWssConfig(cfg); EncryptionActionToken actionToken = new EncryptionActionToken(); actionToken.setUser("wss40rev"); actionToken.setKeyIdentifierId(WSConstants.BST_DIRECT_REFERENCE); actionToken.setSymmetricAlgorithm(WSConstants.TRIPLE_DES); actionToken.setCrypto(crypto); reqData.setEncryptionToken(actionToken); java.util.Map<String, Object> messageContext = new java.util.TreeMap<String, Object>(); messageContext.put(WSHandlerConstants.PW_CALLBACK_REF, keystoreCallbackHandler); reqData.setMsgContext(messageContext); reqData.setUsername("wss40rev"); final Document doc = SOAPUtil.toSOAPPart(SOAPUtil.SAMPLE_SOAP_MSG); CustomHandler handler = new CustomHandler(); handler.send( doc, reqData, Collections.singletonList(new HandlerAction(WSConstants.ENCR)), true ); String outputString = XMLUtils.prettyDocumentToString(doc); if (LOG.isDebugEnabled()) { LOG.debug(outputString); } verify(doc, crypto, keystoreCallbackHandler); } /** * Test that encrypts with certificate revocation check * so it should fail * * @throws java.lang.Exception Thrown when there is any problem in encryption or decryption * TODO Re-enable once CRL issue fixed */ @Test @org.junit.Ignore public void testEncryptionWithRevocationCheck() throws Exception { final WSSConfig cfg = WSSConfig.getNewInstance(); final RequestData reqData = new RequestData(); reqData.setWssConfig(cfg); EncryptionActionToken actionToken = new EncryptionActionToken(); actionToken.setUser("wss40rev"); actionToken.setKeyIdentifierId(WSConstants.BST_DIRECT_REFERENCE); actionToken.setSymmetricAlgorithm(WSConstants.TRIPLE_DES); actionToken.setCrypto(crypto); reqData.setEncryptionToken(actionToken); java.util.Map<String, Object> messageContext = new java.util.TreeMap<String, Object>(); messageContext.put(WSHandlerConstants.PW_CALLBACK_REF, keystoreCallbackHandler); reqData.setMsgContext(messageContext); reqData.setUsername("wss40rev"); final Document doc = SOAPUtil.toSOAPPart(SOAPUtil.SAMPLE_SOAP_MSG); CustomHandler handler = new CustomHandler(); handler.setOption(WSHandlerConstants.ENABLE_REVOCATION, "true"); try { handler.send( doc, reqData, Collections.singletonList(new HandlerAction(WSConstants.ENCR)), true ); fail("Failure expected on a revoked certificate"); } catch (WSSecurityException ex) { assertTrue(ex.getErrorCode() == WSSecurityException.ErrorCode.FAILURE); } } /** * Verifies the soap envelope <p/> * * @param envelope * @throws Exception * Thrown when there is a problem in verification */ private void verify( Document doc, Crypto decCrypto, CallbackHandler handler ) throws Exception { secEngine.processSecurityHeader(doc, null, handler, decCrypto); if (LOG.isDebugEnabled()) { String outputString = XMLUtils.prettyDocumentToString(doc); LOG.debug(outputString); } } }