Package org.apache.shindig.social.opensocial.service

Examples of org.apache.shindig.social.opensocial.service.RestfulRequestItem


    verifyItemDispatchMethodCalled("POST");
    verifyItemDispatchMethodCalled("GET");
  }

  private void verifyItemDispatchMethodCalled(String methodName) throws Exception {
    RestfulRequestItem request = new RestfulRequestItem(null, methodName, null, null);
    assertEquals(methodName, drh.handleItem(request).get());
  }
View Full Code Here


    verifyExceptionThrown("  ");
    verifyExceptionThrown("HEAD");
  }

  private void verifyExceptionThrown(String methodName) throws Exception {
    RestfulRequestItem request = new RestfulRequestItem(null, methodName, null, null);
    Future<?> err = drh.handleItem(request);
    try {
      err.get();
    } catch (ExecutionException ee) {
      assertTrue(ee.getCause() instanceof SocialSpiException);
View Full Code Here

TOP

Related Classes of org.apache.shindig.social.opensocial.service.RestfulRequestItem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.