View Javadoc

1   /*
2    * Copyright 2005-2007 The Kuali Foundation
3    * 
4    * 
5    * Licensed under the Educational Community License, Version 2.0 (the "License");
6    * you may not use this file except in compliance with the License.
7    * You may obtain a copy of the License at
8    * 
9    * http://www.opensource.org/licenses/ecl2.php
10   * 
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.kuali.rice.ksb.messaging;
18  
19  import java.util.List;
20  
21  import javax.xml.namespace.QName;
22  
23  import org.junit.Test;
24  import org.kuali.rice.core.config.ConfigContext;
25  import org.kuali.rice.core.resourceloader.GlobalResourceLoader;
26  import org.kuali.rice.ksb.messaging.remotedservices.BaseballCard;
27  import org.kuali.rice.ksb.messaging.remotedservices.BaseballCardCollectionService;
28  import org.kuali.rice.ksb.messaging.remotedservices.Inbox;
29  import org.kuali.rice.ksb.messaging.remotedservices.InboxResource;
30  import org.kuali.rice.ksb.messaging.remotedservices.Message;
31  import org.kuali.rice.ksb.messaging.remotedservices.MessageResource;
32  import org.kuali.rice.ksb.messaging.serviceconnectors.ResourceFacade;
33  import org.kuali.rice.ksb.test.KSBTestCase;
34  
35  
36  /**
37   * Test that RESTful services work over the KSB
38   *
39   * @author Kuali Rice Team (rice.collab@kuali.org)
40   */
41  public class RESTServiceTest extends KSBTestCase {
42  
43      private static final String BBCARD_SERVICE = "baseballCardCollectionService";
44      private static final String KMS_SERVICE = "kms";
45      private static final String KMS_MESSAGE_RESOURCE = "kms::message";
46      private static final String NAMESPACE = "test";
47  
48  
49      public boolean startClient1() {
50          return true;
51      }
52  
53      private String getBaseBusUrl() {
54          return "http://localhost:" + 
55          getClient1Port() +
56          "/TestClient1/remoting/";
57      }
58  
59      private String getEndpointUrl() {
60          return getBaseBusUrl() + BBCARD_SERVICE;
61      }
62  
63  
64      private String getClient1Port() {
65          return ConfigContext.getCurrentContextConfig().getProperty("ksb.client1.port");
66      }
67  
68      @Test
69      public void testMessagingService() throws Exception {
70      	ResourceFacade kmsService =
71              (ResourceFacade) GlobalResourceLoader.getService(
72                  new QName(NAMESPACE, KMS_SERVICE));
73  
74      	// Get service by resource name
75      	InboxResource inboxResource = kmsService.getResource("inbox");
76  //    	kmsService.getRe...
77      	// Get service by resource class
78      	MessageResource messageResource = kmsService.getResource(MessageResource.class);
79  
80      	exerciseMessagingService(inboxResource, messageResource);
81      }
82  
83      /**
84  	 * This method ...
85  	 *
86  	 * @param inboxResource
87  	 * @param messageResource
88  	 */
89  	private void exerciseMessagingService(InboxResource inboxResource,
90  			MessageResource messageResource) {
91  		Inbox inbox = new Inbox();
92      	inbox.setOwner("Joe Q. Tester");
93  
94      	inbox = inboxResource.createInbox(inbox);
95  
96      	Message message = new Message();
97      	message.setRecipient("Joe Q. Tester");
98      	message.setSubject("Hello new world!");
99      	message.setText("This is a test message.");
100 
101     	Message createdMessage = messageResource.createMessage(message);
102 
103     	List<String> messages = inbox.getMessages();
104     	messages.add(createdMessage.getId());
105 
106     	inboxResource.updateInbox(inbox);
107 
108     	inbox = inboxResource.retrieveInbox(inbox.getId());
109 
110     	List<String> updatedMessages = inbox.getMessages();
111 
112     	String updatedMessageId = updatedMessages.get(0);
113 
114     	Message retrievedMessage = messageResource.retrieve(updatedMessageId);
115 
116     	assertTrue(retrievedMessage.getSubject().equals("Hello new world!"));
117 	}
118 
119     /**
120      * Exercise our RESTful {@link BaseballCardCollectionService} over the KSB
121      */
122     @Test
123     public void testBaseballCardCollectionService() {
124         BaseballCard cardA = new BaseballCard("Mickey Mantle", "Topps", 1952);
125         BaseballCard cardB = new BaseballCard("Ted Williams", "Bowman", 1954);
126         BaseballCard cardC = new BaseballCard("Willie Mays", "Bowman", 1951);
127         BaseballCard cardD = new BaseballCard("Willie Mays Hayes", "Bogus", 1989);
128 
129         BaseballCardCollectionService service = 
130             (BaseballCardCollectionService) GlobalResourceLoader.getService(
131                     new QName(NAMESPACE, BBCARD_SERVICE)
132             );
133 
134         // test @POST
135         service.add(cardA);
136         service.add(cardB);
137         Integer willieMaysId = service.add(cardC);
138 
139         // test @GET
140         List<BaseballCard> allCards = service.getAll();
141         assertNotNull(allCards);
142         assertTrue(allCards.size() == 3);
143         assertTrue(allCards.contains(cardA));
144         assertTrue(allCards.contains(cardB));
145         assertTrue(allCards.contains(cardC));
146 
147         // test @PUT
148         service.update(willieMaysId, cardD); // replace Willie Mays w/ Willie Mays Hayes
149         allCards = service.getAll();
150         assertNotNull(allCards);
151         assertTrue(allCards.size() == 3);
152         assertFalse(allCards.contains(cardC)); // this one was replaced
153         assertTrue(allCards.contains(cardD));  // this was the replacement
154 
155         // test @DELETE
156         service.delete(willieMaysId); // delete Willie
157         allCards = service.getAll();
158         assertNotNull(allCards);
159         assertTrue(allCards.size() == 2);
160         assertFalse(allCards.contains(cardD)); // should be gone
161 
162         // test that adding a card already in the collection in fact adds to the collection. 
163         service.add(cardA);
164         service.add(cardA);
165         service.add(cardA);
166         allCards = service.getAll();
167         assertTrue(allCards.size() == 5);
168         
169         try {
170             service.unannotatedMethod();
171             fail("Magic?  You can't remotely invoke a method that doesn't have JAX-RS annotations in the resource class!");
172         } catch (Exception e) {
173             // I expect this to throw an exception
174             e.printStackTrace();
175         }
176     }
177 
178 
179     /**
180      * By defualt, CXF has a special Service List page that you can see by 
181      * appending /services to a RESTful service URL.  We've purposefully disabled it,
182      * so let's verify that it isn't there.
183      * 
184      * @throws Exception
185      */
186    /* @Test
187     public void testCXFServiceListIsDisabled() throws Exception {
188         // if CXF's service list is enabled, this URL will return the service list
189         URL url = new URL(getEndpointUrl()+"/services");
190 
191         try {
192             InputStream contentStream = (InputStream)url.getContent();
193             fail("the service list shouldn't be available!");
194         } catch (IOException e) {
195             // this is what should happen
196         }
197     }*/
198 
199 }