001: /**
002: * JOnAS: Java(TM) Open Application Server
003: * Copyright (C) 2006 Bull S.A.
004: * Contact: jonas-team@objectweb.org
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2.1 of the License, or any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
019: * USA
020: *
021: * --------------------------------------------------------------------------
022: * $Id: F_WsSecuredMultipleEndpoint.java 9445 2006-08-23 09:19:39Z sauthieg $
023: * --------------------------------------------------------------------------
024: */package org.objectweb.jonas.jtests.clients.wssecured;
025:
026: import java.rmi.RemoteException;
027:
028: import javax.xml.namespace.QName;
029: import javax.xml.rpc.Call;
030: import javax.xml.rpc.Service;
031: import javax.xml.rpc.ServiceFactory;
032:
033: import junit.framework.Test;
034: import junit.framework.TestSuite;
035:
036: import org.objectweb.jonas.jtests.util.JWebServicesTestCase;
037:
038: /**
039: * Test secured endpoints.
040: * @author Guillaume Sauthier
041: */
042: public class F_WsSecuredMultipleEndpoint extends JWebServicesTestCase {
043:
044: /**
045: * First proectedt endpoint.
046: */
047: private static final String ADDRESSBOOK_URL = "/ws-secured/addressbook";
048:
049: /**
050: * Seconf protected endpoint.
051: */
052: private static final String ADDRESSBOOK2_URL = "/ws-secured/addressbook2";
053:
054: /**
055: * HTTP port to use (default to 9000).
056: */
057: private String port = "9000";
058:
059: /**
060: * @param s
061: */
062: public F_WsSecuredMultipleEndpoint(String s) {
063: super (s);
064: }
065:
066: public static Test suite() {
067: return new TestSuite(F_WsSecuredMultipleEndpoint.class);
068: }
069:
070: public void setUp() throws Exception {
071: super .setUp();
072: port = System.getProperty("http.port");
073: useWar("ws-secured");
074: }
075:
076: public void tearDown() throws Exception {
077: super .tearDown();
078: }
079:
080: public void testAuthorizedAddressBookEndpoint1() throws Exception {
081:
082: Service service = ServiceFactory.newInstance().createService(
083: new QName("jonas:AddressBook", "AddressBookService"));
084: Call call = service.createCall(new QName("AddressBookPort"),
085: new QName("isPresent"));
086: call.setTargetEndpointAddress("http://localhost:" + port
087: + ADDRESSBOOK_URL);
088: call.setProperty(Call.USERNAME_PROPERTY, "jonas");
089: call.setProperty(Call.PASSWORD_PROPERTY, "jonas");
090: Boolean present = (Boolean) call
091: .invoke(new Object[] { "JOnAS" });
092:
093: assertNotNull("ServiceEndpoint performed succesfully", present);
094: }
095:
096: public void testUnauthorizedAddressBookEndpoint1() throws Exception {
097:
098: Service service = ServiceFactory.newInstance().createService(
099: new QName("jonas:AddressBook", "AddressBookService"));
100: Call call = service.createCall(new QName("AddressBookPort"),
101: new QName("isPresent"));
102: call.setTargetEndpointAddress("http://localhost:" + port
103: + ADDRESSBOOK_URL);
104: try {
105: call.invoke(new Object[] { "JOnAS" });
106: fail("AddressBookService was not URL protected !");
107: } catch (RemoteException re) {
108: // expected Exception
109: }
110: }
111:
112: public void testAuthorizedAddressBookEndpoint2() throws Exception {
113:
114: Service service = ServiceFactory.newInstance().createService(
115: new QName("jonas:AddressBook", "AddressBookService"));
116: Call call = service.createCall(new QName("AddressBookPort"),
117: new QName("isPresent"));
118: call.setTargetEndpointAddress("http://localhost:" + port
119: + ADDRESSBOOK2_URL);
120: call.setProperty(Call.USERNAME_PROPERTY, "jonas");
121: call.setProperty(Call.PASSWORD_PROPERTY, "jonas");
122: Boolean present = (Boolean) call
123: .invoke(new Object[] { "JOnAS" });
124:
125: assertNotNull("ServiceEndpoint performed succesfully", present);
126: }
127:
128: public void testUnauthorizedAddressBookEndpoint2() throws Exception {
129:
130: Service service = ServiceFactory.newInstance().createService(
131: new QName("jonas:AddressBook", "AddressBookService"));
132: Call call = service.createCall(new QName("AddressBookPort"),
133: new QName("isPresent"));
134: call.setTargetEndpointAddress("http://localhost:" + port
135: + ADDRESSBOOK2_URL);
136: try {
137: call.invoke(new Object[] { "JOnAS" });
138: fail("AddressBookService was not URL protected !");
139: } catch (RemoteException re) {
140: // expected Exception
141: }
142: }
143:
144: }
|