blob: 570d61879dfeb3b87f1a6097ac1dd6410d28e8ed [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.policy.tests;
import org.apache.neethi.*;
import org.apache.wss4j.policy.SP12Constants;
import org.apache.wss4j.policy.model.X509Token;
import org.junit.Test;
import java.util.Iterator;
import java.util.List;
public class X509TokenTest extends AbstractTestBase {
@Test
public void testX509Token() throws Exception {
String fileName = "X509Token.xml";
String policyFile = loadPolicyFile("policy/model/sp12/" + fileName);
String serializedPolicyReferenceFile = loadPolicyFile("policy/model/sp12/serialized/" + fileName);
String normalizedPolicyReferenceFile = loadPolicyFile("policy/model/sp12/normalized/" + fileName);
Policy policy = loadPolicy(policyFile);
String serializedPolicy = serializePolicy(policy);
assertXMLisEqual(serializedPolicy, serializedPolicyReferenceFile);
Iterator<List<Assertion>> alternativeIterator = policy.getAlternatives();
int count = 0;
while (alternativeIterator.hasNext()) {
List<Assertion> alternative = alternativeIterator.next();
assertEquals(1, alternative.size());
assertTrue(alternative.get(0) instanceof X509Token);
X509Token x509Token = (X509Token) alternative.get(0);
assertFalse(x509Token.isNormalized());
assertTrue(x509Token.isIgnorable());
assertTrue(x509Token.isOptional());
assertEquals(Constants.TYPE_ASSERTION, x509Token.getType());
assertEquals(SP12Constants.X509_TOKEN, x509Token.getName());
assertTrue(x509Token.isRequireEmbeddedTokenReference());
assertTrue(x509Token.isRequireIssuerSerialReference());
assertTrue(x509Token.isRequireKeyIdentifierReference());
assertTrue(x509Token.isRequireThumbprintReference());
assertEquals(X509Token.TokenType.WssX509V1Token11, x509Token.getTokenType());
count++;
}
assertEquals(1, count);
policy = policy.normalize(true);
serializedPolicy = serializePolicy(policy);
assertXMLisEqual(serializedPolicy, normalizedPolicyReferenceFile);
alternativeIterator = policy.getAlternatives();
List<Assertion> alternative = alternativeIterator.next();
assertEquals(0, alternative.size());
List<PolicyComponent> policyComponents = policy.getPolicyComponents();
assertEquals(1, policyComponents.size());
PolicyOperator policyOperator = (PolicyOperator) policyComponents.get(0);
policyComponents = policyOperator.getPolicyComponents();
assertEquals(2, policyComponents.size());
All all = (All) policyComponents.get(0);
List<PolicyComponent> policyComponentsAll = all.getAssertions();
assertEquals(0, policyComponentsAll.size());
all = (All) policyComponents.get(1);
policyComponentsAll = all.getAssertions();
assertEquals(1, policyComponentsAll.size());
Iterator<PolicyComponent> policyComponentIterator = policyComponentsAll.iterator();
X509Token x509Token = (X509Token) policyComponentIterator.next();
assertTrue(x509Token.isNormalized());
assertTrue(x509Token.isIgnorable());
assertFalse(x509Token.isOptional());
assertEquals(Constants.TYPE_ASSERTION, x509Token.getType());
assertEquals(SP12Constants.X509_TOKEN, x509Token.getName());
assertTrue(x509Token.isRequireEmbeddedTokenReference());
assertTrue(x509Token.isRequireIssuerSerialReference());
assertTrue(x509Token.isRequireKeyIdentifierReference());
assertTrue(x509Token.isRequireThumbprintReference());
assertEquals(X509Token.TokenType.WssX509V1Token11, x509Token.getTokenType());
}
}