View Javadoc
1   /**
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements. See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership. The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License. You may obtain a copy of the License at
9    *
10   * http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied. See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.wss4j.policy.tests;
20  
21  import org.apache.neethi.*;
22  import org.apache.wss4j.policy.SP12Constants;
23  import org.apache.wss4j.policy.model.Wss11;
24  import org.junit.jupiter.api.Test;
25  
26  import java.util.Iterator;
27  import java.util.List;
28  
29  import static org.junit.jupiter.api.Assertions.assertEquals;
30  import static org.junit.jupiter.api.Assertions.assertFalse;
31  import static org.junit.jupiter.api.Assertions.assertTrue;
32  
33  public class Wss11Test extends AbstractTestBase {
34  
35      @Test
36      public void testWss11() throws Exception {
37          String fileName = "Wss11.xml";
38          String policyFile = loadPolicyFile("policy/model/sp12/" + fileName);
39          String serializedPolicyReferenceFile = loadPolicyFile("policy/model/sp12/serialized/" + fileName);
40          String normalizedPolicyReferenceFile = loadPolicyFile("policy/model/sp12/normalized/" + fileName);
41          Policy policy = loadPolicy(policyFile);
42          String serializedPolicy = serializePolicy(policy);
43          assertXMLisEqual(serializedPolicy, serializedPolicyReferenceFile);
44  
45          Iterator<List<Assertion>> alternativeIterator = policy.getAlternatives();
46          int count = 0;
47          while (alternativeIterator.hasNext()) {
48              List<Assertion> alternative = alternativeIterator.next();
49              assertEquals(1, alternative.size());
50              assertTrue(alternative.get(0) instanceof Wss11);
51              Wss11 wss11 = (Wss11) alternative.get(0);
52              assertFalse(wss11.isNormalized());
53              assertTrue(wss11.isIgnorable());
54              assertTrue(wss11.isOptional());
55              assertEquals(Constants.TYPE_ASSERTION, wss11.getType());
56              assertEquals(SP12Constants.WSS11, wss11.getName());
57              assertTrue(wss11.isMustSupportRefEmbeddedToken());
58              assertTrue(wss11.isMustSupportRefExternalURI());
59              assertTrue(wss11.isMustSupportRefIssuerSerial());
60              assertTrue(wss11.isMustSupportRefKeyIdentifier());
61              assertTrue(wss11.isMustSupportRefEncryptedKey());
62              assertTrue(wss11.isMustSupportRefThumbprint());
63              assertTrue(wss11.isRequireSignatureConfirmation());
64              count++;
65          }
66          assertEquals(1, count);
67  
68          policy = policy.normalize(true);
69          serializedPolicy = serializePolicy(policy);
70          assertXMLisEqual(serializedPolicy, normalizedPolicyReferenceFile);
71  
72          alternativeIterator = policy.getAlternatives();
73          List<Assertion> alternative = alternativeIterator.next();
74          assertEquals(0, alternative.size());
75  
76          List<PolicyComponent> policyComponents = policy.getPolicyComponents();
77          assertEquals(1, policyComponents.size());
78          PolicyOperator policyOperator = (PolicyOperator) policyComponents.get(0);
79          policyComponents = policyOperator.getPolicyComponents();
80          assertEquals(2, policyComponents.size());
81          All all = (All) policyComponents.get(0);
82          List<PolicyComponent> policyComponentsAll = all.getAssertions();
83          assertEquals(0, policyComponentsAll.size());
84  
85          all = (All) policyComponents.get(1);
86          policyComponentsAll = all.getAssertions();
87          assertEquals(1, policyComponentsAll.size());
88  
89          Iterator<PolicyComponent> policyComponentIterator = policyComponentsAll.iterator();
90          Wss11 wss11 = (Wss11) policyComponentIterator.next();
91          assertTrue(wss11.isNormalized());
92          assertTrue(wss11.isIgnorable());
93          assertFalse(wss11.isOptional());
94          assertEquals(Constants.TYPE_ASSERTION, wss11.getType());
95          assertEquals(SP12Constants.WSS11, wss11.getName());
96          assertTrue(wss11.isMustSupportRefEmbeddedToken());
97          assertTrue(wss11.isMustSupportRefExternalURI());
98          assertTrue(wss11.isMustSupportRefIssuerSerial());
99          assertTrue(wss11.isMustSupportRefKeyIdentifier());
100         assertTrue(wss11.isMustSupportRefEncryptedKey());
101         assertTrue(wss11.isMustSupportRefThumbprint());
102         assertTrue(wss11.isRequireSignatureConfirmation());
103     }
104 }