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: * UsernameTokenTest.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.Collection;
062: import java.util.Iterator;
063: import java.util.Map;
064: import java.util.UUID;
065: import java.util.logging.Level;
066: import javax.xml.namespace.QName;
067: import static com.sun.xml.ws.security.impl.policy.Constants.logger;
068:
069: /**
070: *
071: * @author Mayank.Mishra@SUN.com
072: */
073: public class UsernameTokenTest extends TestCase {
074:
075: public UsernameTokenTest(String testName) {
076: super (testName);
077: }
078:
079: protected void setUp() throws Exception {
080: }
081:
082: protected void tearDown() throws Exception {
083: }
084:
085: public static Test suite() {
086: TestSuite suite = new TestSuite(UsernameTokenTest.class);
087:
088: return suite;
089: }
090:
091: private PolicySourceModel unmarshalPolicyResource(String resource)
092: throws PolicyException, IOException {
093: Reader reader = getResourceReader(resource);
094: PolicySourceModel model = PolicyModelUnmarshaller
095: .getXmlUnmarshaller().unmarshalModel(reader);
096: reader.close();
097: return model;
098: }
099:
100: private Reader getResourceReader(String resourceName) {
101: return new InputStreamReader(Thread.currentThread()
102: .getContextClassLoader().getResourceAsStream(
103: resourceName));
104: }
105:
106: public Policy unmarshalPolicy(String xmlFile) throws Exception {
107: PolicySourceModel model = unmarshalPolicyResource(xmlFile);
108: Policy mbp = PolicyModelTranslator.getTranslator().translate(
109: model);
110: return mbp;
111:
112: }
113:
114: public void testUserNameTokenAssertions_8() throws Exception {
115: testTokenAssertionsType(
116: "security/UserNameTokenAssertions1.xml",
117: com.sun.xml.ws.security.policy.UserNameToken.WSS_USERNAME_TOKEN_10);
118: testTokenAssertionsType(
119: "security/UserNameTokenAssertions2.xml",
120: com.sun.xml.ws.security.policy.UserNameToken.WSS_USERNAME_TOKEN_10);
121: testTokenAssertionsType(
122: "security/UserNameTokenAssertions3.xml",
123: com.sun.xml.ws.security.policy.UserNameToken.WSS_USERNAME_TOKEN_10);
124: testTokenAssertionsType(
125: "security/UserNameTokenAssertions4.xml",
126: com.sun.xml.ws.security.policy.UserNameToken.WSS_USERNAME_TOKEN_10);
127: testTokenAssertionsType(
128: "security/UserNameTokenAssertions5.xml",
129: com.sun.xml.ws.security.policy.UserNameToken.WSS_USERNAME_TOKEN_11);
130: testTokenAssertionsType(
131: "security/UserNameTokenAssertions6.xml",
132: com.sun.xml.ws.security.policy.UserNameToken.WSS_USERNAME_TOKEN_11);
133: testTokenAssertionsType(
134: "security/UserNameTokenAssertions7.xml",
135: com.sun.xml.ws.security.policy.UserNameToken.WSS_USERNAME_TOKEN_11);
136: testTokenAssertionsType(
137: "security/UserNameTokenAssertions8.xml",
138: com.sun.xml.ws.security.policy.UserNameToken.WSS_USERNAME_TOKEN_11);
139: }
140:
141: public void testTokenAssertionsType(String fileName,
142: String tokenType) throws Exception {
143: Policy policy = unmarshalPolicy(fileName);
144: assertNotNull(policy);
145: Iterator<AssertionSet> itr = policy.iterator();
146: if (itr.hasNext()) {
147: AssertionSet as = itr.next();
148: for (PolicyAssertion assertion : as) {
149: assertEquals("Invalid assertion", "UsernameToken",
150: assertion.getName().getLocalPart());
151: com.sun.xml.ws.security.policy.UserNameToken ut = (com.sun.xml.ws.security.policy.UserNameToken) assertion;
152: assertTrue(tokenType.equals(ut.getType()));
153: }
154: } else {
155: throw new Exception(
156: "No Assertions found!. Unmarshalling of "
157: + fileName + " failed!");
158: }
159: }
160:
161: }
|