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: * SignedEndorsingSupportingTokensTest.java
038: * JUnit based test
039: *
040: * Created on August 24, 2006, 12:27 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 java.util.Collection;
058: import javax.xml.namespace.QName;
059: import com.sun.xml.ws.policy.AssertionSet;
060: import com.sun.xml.ws.policy.PolicyAssertion;
061: import com.sun.xml.ws.policy.sourcemodel.AssertionData;
062:
063: /**
064: *
065: * @author Mayank.Mishra@SUN.com
066: */
067: public class SignedEndorsingSupportingTokensTest extends TestCase {
068:
069: public SignedEndorsingSupportingTokensTest(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: SignedEndorsingSupportingTokensTest.class);
082:
083: return suite;
084: }
085:
086: public boolean hasXPathTarget(String xpathExpr, Iterator itr) {
087: while (itr.hasNext()) {
088: if (xpathExpr.equals(itr.next())) {
089: return true;
090: }
091: }
092: return false;
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:
118: public void testSignedEndorsingSupportingToken() throws Exception {
119: String fileName = "security/SignedEndorsingSupportingToken.xml";
120: Policy policy = unmarshalPolicy(fileName);
121: Iterator<AssertionSet> itr = policy.iterator();
122: if (itr.hasNext()) {
123: AssertionSet as = itr.next();
124: for (PolicyAssertion assertion : as) {
125: assertEquals("Invalid assertion",
126: "SignedEndorsingSupportingTokens", assertion
127: .getName().getLocalPart());
128: SignedEndorsingSupportingTokens sst = (SignedEndorsingSupportingTokens) assertion;
129:
130: AlgorithmSuite aSuite = (AlgorithmSuite) sst
131: .getAlgorithmSuite();
132: assertEquals("Unmatched Algorithm", aSuite
133: .getEncryptionAlgorithm(),
134: AlgorithmSuiteValue.TripleDesRsa15
135: .getEncAlgorithm());
136:
137: Iterator itrest = sst.getTokens();
138: if (itrest.hasNext()) {
139: assertTrue(X509Token.WSSX509V3TOKEN10
140: .equals(((X509Token) itrest.next())
141: .getTokenType()));
142: }
143:
144: Iterator itrSparts = sst.getSignedElements();
145: if (itrSparts.hasNext()) {
146: SignedElements se = (SignedElements) itrSparts
147: .next();
148: assertTrue(hasXPathTarget("//soapEnv:Body", se
149: .getTargets()));
150: assertTrue(hasXPathTarget("//addr:To", se
151: .getTargets()));
152: assertTrue(hasXPathTarget("//addr:From", se
153: .getTargets()));
154: assertTrue(hasXPathTarget("//addr:RealtesTo", se
155: .getTargets()));
156: }
157: }
158: }
159: }
160:
161: }
|