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: * EndorsingSupportingTokensTest.java
038: * JUnit based test
039: *
040: * Created on August 24, 2006, 12:26 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 com.sun.xml.ws.security.policy.AlgorithmSuiteValue;
051: import java.io.IOException;
052: import java.io.InputStreamReader;
053: import java.io.Reader;
054: import java.util.Iterator;
055:
056: import junit.framework.*;
057: import com.sun.xml.ws.policy.AssertionSet;
058: import com.sun.xml.ws.policy.PolicyAssertion;
059: import com.sun.xml.ws.policy.sourcemodel.AssertionData;
060: import java.util.Collection;
061: import javax.xml.namespace.QName;
062:
063: /**
064: *
065: * @author Mayank.Mishra@SUN.com
066: */
067: public class EndorsingSupportingTokensTest extends TestCase {
068:
069: public EndorsingSupportingTokensTest(String testName) {
070: super (testName);
071: }
072:
073: protected void setUp() throws Exception {
074: }
075:
076: protected void tearDown() throws Exception {
077: }
078:
079: public static Test suite() {
080: TestSuite suite = new TestSuite(
081: EndorsingSupportingTokensTest.class);
082:
083: return suite;
084: }
085:
086: private PolicySourceModel unmarshalPolicyResource(String resource)
087: throws PolicyException, IOException {
088: Reader reader = getResourceReader(resource);
089: PolicySourceModel model = PolicyModelUnmarshaller
090: .getXmlUnmarshaller().unmarshalModel(reader);
091: reader.close();
092: return model;
093: }
094:
095: private Reader getResourceReader(String resourceName) {
096: return new InputStreamReader(Thread.currentThread()
097: .getContextClassLoader().getResourceAsStream(
098: resourceName));
099: }
100:
101: public Policy unmarshalPolicy(String xmlFile) throws Exception {
102: PolicySourceModel model = unmarshalPolicyResource(xmlFile);
103: Policy mbp = PolicyModelTranslator.getTranslator().translate(
104: model);
105: return mbp;
106:
107: }
108:
109: public boolean isHeaderPresent(QName expected, Iterator headers) {
110: while (headers.hasNext()) {
111: Header header = (Header) headers.next();
112: if (expected.getLocalPart().equals(header.getLocalName())) {
113: if (expected.getNamespaceURI().equals(header.getURI())) {
114: return true;
115: }
116: }
117: }
118: return false;
119: }
120:
121: public void testEndorsingSupportingToken() throws Exception {
122: String fileName = "security/EndorsingSupportingToken.xml";
123: Policy policy = unmarshalPolicy(fileName);
124: Iterator<AssertionSet> itr = policy.iterator();
125: if (itr.hasNext()) {
126: AssertionSet as = itr.next();
127: for (PolicyAssertion assertion : as) {
128: assertEquals("Invalid assertion",
129: "EndorsingSupportingTokens", assertion
130: .getName().getLocalPart());
131: EndorsingSupportingTokens est = (EndorsingSupportingTokens) assertion;
132:
133: AlgorithmSuite aSuite = (AlgorithmSuite) est
134: .getAlgorithmSuite();
135: assertEquals("Unmatched Algorithm", aSuite
136: .getEncryptionAlgorithm(),
137: AlgorithmSuiteValue.TripleDesRsa15
138: .getEncAlgorithm());
139:
140: Iterator itrest = est.getTokens();
141: if (itrest.hasNext()) {
142: assertTrue(X509Token.WSSX509V3TOKEN10
143: .equals(((X509Token) itrest.next())
144: .getTokenType()));
145: }
146:
147: Iterator itrTkn = est.getSignedParts();
148: if (itrTkn.hasNext()) {
149: SignedParts sp = ((SignedParts) itrTkn.next());
150:
151: assertEquals("Body should be present", true, sp
152: .hasBody());
153: assertTrue(isHeaderPresent(
154: new QName(
155: "http://schemas.xmlsoap.org/ws/2004/08/addressing",
156: "To"), sp.getHeaders()));
157: assertTrue(isHeaderPresent(
158: new QName(
159: "http://schemas.xmlsoap.org/ws/2004/08/addressing",
160: "From"), sp.getHeaders()));
161: assertTrue(isHeaderPresent(
162: new QName(
163: "http://schemas.xmlsoap.org/ws/2004/08/addressing",
164: "FaultTo"), sp.getHeaders()));
165: assertTrue(isHeaderPresent(
166: new QName(
167: "http://schemas.xmlsoap.org/ws/2004/08/addressing",
168: "ReplyTo"), sp.getHeaders()));
169: assertTrue(isHeaderPresent(
170: new QName(
171: "http://schemas.xmlsoap.org/ws/2004/08/addressing",
172: "MessageID"), sp.getHeaders()));
173: assertTrue(isHeaderPresent(
174: new QName(
175: "http://schemas.xmlsoap.org/ws/2004/08/addressing",
176: "RelatesTo"), sp.getHeaders()));
177: assertTrue(isHeaderPresent(
178: new QName(
179: "http://schemas.xmlsoap.org/ws/2004/08/addressing",
180: "Action"), sp.getHeaders()));
181:
182: }
183: }
184: }
185: }
186: }
|