blob: 4831f5c2e17c6cf5250faf5db37b14e44f4d835b [file] [log] [blame]
/**
* 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.apache.wss4j.common.util.SOAPUtil;
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.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.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;
/**
* This is a test for Certificate Revocation List checking before encryption.
*
* This test reuses the revoked certificate from SignatureCRLTest
*/
public class EncryptionCRLTest {
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;
public EncryptionCRLTest() throws Exception {
crypto = CryptoFactory.getInstance("wss40All.properties");
}
/**
* Setup method
*
* @throws java.lang.Exception Thrown when there is a problem in setup
*/
@BeforeEach
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<>();
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.jupiter.api.Disabled
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<>();
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);
}
}
}