001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common Development
008: * and Distribution License("CDDL") (collectively, the "License"). You
009: * may not use this file except in compliance with the License. You can obtain
010: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
011: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
012: * language governing permissions and limitations under the License.
013: *
014: * When distributing the software, include this License Header Notice in each
015: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
016: * Sun designates this particular file as subject to the "Classpath" exception
017: * as provided by Sun in the GPL Version 2 section of the License file that
018: * accompanied this code. If applicable, add the following below the License
019: * Header, with the fields enclosed by brackets [] replaced by your own
020: * identifying information: "Portions Copyrighted [year]
021: * [name of copyright owner]"
022: *
023: * Contributor(s):
024: *
025: * If you wish your version of this file to be governed by only the CDDL or
026: * only the GPL Version 2, indicate your decision by adding "[Contributor]
027: * elects to include this software in this distribution under the [CDDL or GPL
028: * Version 2] license." If you don't indicate a single choice of license, a
029: * recipient has the option to distribute your version of this file under
030: * either the CDDL, the GPL Version 2 or to extend the choice of license to
031: * its licensees as provided above. However, if you add GPL Version 2 code
032: * and therefore, elected the GPL Version 2 license, then the option applies
033: * only if the new code is made subject to such option by the copyright
034: * holder.
035: */
036: /*
037: * X509TokenTest.java
038: * JUnit based test
039: *
040: * Created on August 24, 2006, 12:28 AM
041: */
042:
043: package com.sun.xml.ws.security.impl.policy;
044:
045: import com.sun.xml.ws.policy.Policy;
046: import com.sun.xml.ws.policy.PolicyException;
047: import com.sun.xml.ws.policy.sourcemodel.PolicyModelTranslator;
048: import com.sun.xml.ws.policy.sourcemodel.PolicyModelUnmarshaller;
049: import com.sun.xml.ws.policy.sourcemodel.PolicySourceModel;
050: import java.io.IOException;
051: import java.io.InputStreamReader;
052: import java.io.Reader;
053:
054: import junit.framework.*;
055: import com.sun.xml.ws.policy.AssertionSet;
056: import com.sun.xml.ws.policy.NestedPolicy;
057: import com.sun.xml.ws.policy.Policy;
058: import com.sun.xml.ws.policy.PolicyAssertion;
059: import com.sun.xml.ws.policy.sourcemodel.AssertionData;
060: import com.sun.xml.ws.security.policy.SecurityAssertionValidator;
061: import java.util.ArrayList;
062: import java.util.Collection;
063: import java.util.HashSet;
064: import java.util.Iterator;
065: import java.util.List;
066: import java.util.Map;
067: import java.util.Set;
068: import java.util.UUID;
069: import java.util.logging.Level;
070: import static com.sun.xml.ws.security.impl.policy.Constants.logger;
071: import javax.xml.namespace.QName;
072:
073: /**
074: *
075: * @author Mayank.Mishra@SUN.com
076: */
077: public class X509TokenTest extends TestCase {
078:
079: public X509TokenTest(String testName) {
080: super (testName);
081: }
082:
083: protected void setUp() throws Exception {
084: }
085:
086: protected void tearDown() throws Exception {
087: }
088:
089: public static Test suite() {
090: TestSuite suite = new TestSuite(X509TokenTest.class);
091:
092: return suite;
093: }
094:
095: private PolicySourceModel unmarshalPolicyResource(String resource)
096: throws PolicyException, IOException {
097: Reader reader = getResourceReader(resource);
098: PolicySourceModel model = PolicyModelUnmarshaller
099: .getXmlUnmarshaller().unmarshalModel(reader);
100: reader.close();
101: return model;
102: }
103:
104: private Reader getResourceReader(String resourceName) {
105: return new InputStreamReader(Thread.currentThread()
106: .getContextClassLoader().getResourceAsStream(
107: resourceName));
108: }
109:
110: public Policy unmarshalPolicy(String xmlFile) throws Exception {
111: PolicySourceModel model = unmarshalPolicyResource(xmlFile);
112: Policy mbp = PolicyModelTranslator.getTranslator().translate(
113: model);
114: return mbp;
115: }
116:
117: public void testX509TokensAssertions_Types_8() throws Exception {
118: testX509TokenAssertionsType(
119: "security/X509TokenAssertions1.xml",
120: X509Token.WSSX509V1TOKEN10);
121: testX509TokenAssertionsType(
122: "security/X509TokenAssertions2.xml",
123: X509Token.WSSX509V3TOKEN10);
124: testX509TokenAssertionsType(
125: "security/X509TokenAssertions3.xml",
126: X509Token.WSSX509PKCS7TOKEN10);
127: testX509TokenAssertionsType(
128: "security/X509TokenAssertions4.xml",
129: X509Token.WSSX509PKIPATHV1TOKEN10);
130: testX509TokenAssertionsType(
131: "security/X509TokenAssertions5.xml",
132: X509Token.WSSX509V1TOKEN11);
133: testX509TokenAssertionsType(
134: "security/X509TokenAssertions6.xml",
135: X509Token.WSSX509V3TOKEN11);
136: testX509TokenAssertionsType(
137: "security/X509TokenAssertions7.xml",
138: X509Token.WSSX509PKCS7TOKEN11);
139: testX509TokenAssertionsType(
140: "security/X509TokenAssertions8.xml",
141: X509Token.WSSX509PKIPATHV1TOKEN11);
142: }
143:
144: public void testX509TokensAssertions_Reference_4() throws Exception {
145: testX509TokenAssertionsReference(
146: "security/X509TokenAssertions9.xml",
147: X509Token.REQUIRE_KEY_IDENTIFIER_REFERENCE);
148: testX509TokenAssertionsReference(
149: "security/X509TokenAssertions10.xml",
150: X509Token.REQUIRE_ISSUER_SERIAL_REFERENCE);
151: testX509TokenAssertionsReference(
152: "security/X509TokenAssertions11.xml",
153: X509Token.REQUIRE_EMBEDDED_TOKEN_REFERENCE);
154: testX509TokenAssertionsReference(
155: "security/X509TokenAssertions12.xml",
156: X509Token.REQUIRE_THUMBPRINT_REFERENCE);
157: }
158:
159: public void testX509TokenAssertionsType(String fileName,
160: String tokenType) throws Exception {
161:
162: Policy policy = unmarshalPolicy(fileName);
163: Iterator<AssertionSet> itr = policy.iterator();
164: if (itr.hasNext()) {
165: AssertionSet as = itr.next();
166: for (PolicyAssertion assertion : as) {
167: assertEquals("Invalid assertion", "X509Token",
168: assertion.getName().getLocalPart());
169: X509Token xt = (X509Token) assertion;
170: assertTrue(tokenType.equals(xt.getTokenType()));
171: }
172: } else {
173: throw new Exception(
174: "No Assertions found!. Unmarshalling of "
175: + fileName + " failed!");
176: }
177: }
178:
179: public void testX509TokenAssertionsReference(String fileName,
180: String referenceType) throws Exception {
181:
182: Policy policy = unmarshalPolicy(fileName);
183: Iterator<AssertionSet> itr = policy.iterator();
184:
185: if (itr.hasNext()) {
186: AssertionSet as = itr.next();
187: for (PolicyAssertion assertion : as) {
188: assertEquals("Invalid assertion", "X509Token",
189: assertion.getName().getLocalPart());
190: X509Token xt = (X509Token) assertion;
191: Iterator itrref = xt.getTokenRefernceType().iterator();
192: assertTrue(xt.getTokenRefernceType().contains(
193: referenceType));
194: }
195: } else {
196: throw new Exception(
197: "No Assertions found!. Unmarshalling of "
198: + fileName + " failed!");
199: }
200: }
201:
202: }
|