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: * RelTokenTest.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.policy.spi.PolicyAssertionCreator;
051: import java.io.IOException;
052: import java.io.InputStreamReader;
053: import java.io.Reader;
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.PolicyAssertion;
058: import com.sun.xml.ws.policy.sourcemodel.AssertionData;
059: import com.sun.xml.ws.security.policy.SecurityAssertionValidator;
060: import java.util.ArrayList;
061: import java.util.Collection;
062: import java.util.Collections;
063: import java.util.Iterator;
064: import java.util.List;
065: import java.util.Set;
066: import java.util.UUID;
067: import java.util.logging.Level;
068: import javax.xml.namespace.QName;
069: import static com.sun.xml.ws.security.impl.policy.Constants.*;
070: import com.sun.xml.ws.security.impl.policy.RelToken;
071:
072: /**
073: *
074: * @author Mayank.Mishra@sun.com
075: */
076: public class RelTokenTest extends TestCase {
077:
078: public RelTokenTest(String testName) {
079: super (testName);
080: }
081:
082: protected void setUp() throws Exception {
083: }
084:
085: protected void tearDown() throws Exception {
086: }
087:
088: public static Test suite() {
089: TestSuite suite = new TestSuite(RelTokenTest.class);
090:
091: return suite;
092: }
093:
094: private PolicySourceModel unmarshalPolicyResource(String resource)
095: throws PolicyException, IOException {
096: Reader reader = getResourceReader(resource);
097: PolicySourceModel model = PolicyModelUnmarshaller
098: .getXmlUnmarshaller().unmarshalModel(reader);
099: reader.close();
100: return model;
101: }
102:
103: private Reader getResourceReader(String resourceName) {
104: return new InputStreamReader(Thread.currentThread()
105: .getContextClassLoader().getResourceAsStream(
106: resourceName));
107: }
108:
109: public Policy unmarshalPolicy(String xmlFile) throws Exception {
110: PolicySourceModel model = unmarshalPolicyResource(xmlFile);
111: Policy mbp = PolicyModelTranslator.getTranslator().translate(
112: model);
113: return mbp;
114: }
115:
116: public void testRelToken1() throws Exception {
117: testRelToken_Keys_Reference("security/RelToken1.xml", "");
118: testRelToken_Keys_Reference("security/RelToken2.xml",
119: "RequireKeyIdentifierReference");
120: }
121:
122: public void testRelToken2() throws Exception {
123: testRelTokenType(
124: "security/RelToken1.xml",
125: com.sun.xml.ws.security.policy.RelToken.WSS_REL_V10_TOKEN10);
126: testRelTokenType(
127: "security/RelToken2.xml",
128: com.sun.xml.ws.security.policy.RelToken.WSS_REL_V20_TOKEN10);
129: testRelTokenType(
130: "security/RelToken3.xml",
131: com.sun.xml.ws.security.policy.RelToken.WSS_REL_V10_TOKEN11);
132: testRelTokenType(
133: "security/RelToken4.xml",
134: com.sun.xml.ws.security.policy.RelToken.WSS_REL_V20_TOKEN11);
135: }
136:
137: public void testRelToken_Keys_Reference(String fileName,
138: String param) throws Exception {
139: Policy policy = unmarshalPolicy(fileName);
140: Iterator<AssertionSet> itr = policy.iterator();
141: if (itr.hasNext()) {
142: AssertionSet as = itr.next();
143: for (PolicyAssertion assertion : as) {
144: assertEquals("Invalid assertion", "RelToken", assertion
145: .getName().getLocalPart());
146: com.sun.xml.ws.security.impl.policy.RelToken rt = (com.sun.xml.ws.security.impl.policy.RelToken) assertion;
147: if (param.equals(""))
148: assertTrue(rt.isRequireDerivedKeys());
149: else {
150: Iterator itrRt = rt.getTokenRefernceType();
151: if (itrRt.hasNext()) {
152: assertTrue(((String) itrRt.next())
153: .equals(com.sun.xml.ws.security.policy.RelToken.REQUIRE_KEY_IDENTIFIER_REFERENCE));
154: }
155: }
156: }
157: } else {
158: throw new Exception(
159: "No Assertions found!. Unmarshalling of "
160: + fileName + " failed!");
161: }
162: }
163:
164: public void testRelTokenType(String fileName, String tokenType)
165: throws Exception {
166: Policy policy = unmarshalPolicy(fileName);
167: Iterator<AssertionSet> itr = policy.iterator();
168: if (itr.hasNext()) {
169: AssertionSet as = itr.next();
170: for (PolicyAssertion assertion : as) {
171: assertEquals("Invalid assertion", "RelToken", assertion
172: .getName().getLocalPart());
173: assertion = (PolicyAssertion) assertion;
174: com.sun.xml.ws.security.impl.policy.RelToken rt = (com.sun.xml.ws.security.impl.policy.RelToken) assertion;
175: assertTrue(rt.getTokenType().equals(tokenType));
176: }
177: } else {
178: throw new Exception(
179: "No Assertions found!. Unmarshalling of "
180: + fileName + " failed!");
181: }
182: }
183:
184: }
|