Package org.apache.shindig.gadgets.oauth.OAuthResponseParams

Examples of org.apache.shindig.gadgets.oauth.OAuthResponseParams.OAuthRequestException


  @Test
  public void testException() {
    HttpRequest req = new HttpRequest(Uri.parse("http://www"));
    HttpResponse ok = new HttpResponseBuilder().setHttpStatusCode(200).create();
    params.addRequestTrace(req, ok);
    OAuthRequestException e = params.oauthRequestException("error", "errorText");
    checkStringContains(e.toString(), "[error,errorText]");
    params.addRequestTrace(null, null);
    Throwable cause = new RuntimeException();
    e = params.oauthRequestException(OAuthError.UNAUTHENTICATED, "errorText", cause);
    checkStringContains(e.toString(), "[UNAUTHENTICATED,errorText]");
    assertEquals(cause, e.getCause());
  }
View Full Code Here

TOP

Related Classes of org.apache.shindig.gadgets.oauth.OAuthResponseParams.OAuthRequestException

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.