Search in sources :

Example 21 with URLFetchResponse

use of com.google.appengine.api.urlfetch.URLFetchServicePb.URLFetchResponse in project appengine-java-standard by GoogleCloudPlatform.

the class URLFetchServiceImplTest method testSync_ResponseHeadersUncombined.

@Test
public void testSync_ResponseHeadersUncombined() throws Exception {
    URL url = new URL("http://google.com/foo");
    HTTPRequest request = new HTTPRequest(url);
    String responseContent = "<p>This is the desired response.</p>";
    URLFetchRequest requestProto = URLFetchRequest.newBuilder().setUrl(url.toString()).setMethod(RequestMethod.GET).setFollowRedirects(true).build();
    URLFetchResponse responseProto = URLFetchResponse.newBuilder().setStatusCode(200).setContent(ByteString.copyFromUtf8(responseContent)).addHeader(URLFetchResponse.Header.newBuilder().setKey("Test-Header").setValue("Response1")).addHeader(URLFetchResponse.Header.newBuilder().setKey("Test-Header").setValue("Response2")).build();
    when(delegate.makeSyncCall(same(ApiProxy.getCurrentEnvironment()), eq(URLFetchServiceImpl.PACKAGE), eq("Fetch"), eq(requestProto.toByteArray()))).thenReturn(responseProto.toByteArray());
    HTTPResponse response = new URLFetchServiceImpl().fetch(request);
    assertThat(response.getResponseCode()).isEqualTo(200);
    assertThat(new String(response.getContent(), UTF_8)).isEqualTo(responseContent);
    assertThat(response.getHeadersUncombined()).hasSize(2);
    assertThat(response.getHeadersUncombined().get(0).getName()).isEqualTo("Test-Header");
    assertThat(response.getHeadersUncombined().get(0).getValue()).isEqualTo("Response1");
    assertThat(response.getHeadersUncombined().get(1).getName()).isEqualTo("Test-Header");
    assertThat(response.getHeadersUncombined().get(1).getValue()).isEqualTo("Response2");
}
Also used : URLFetchResponse(com.google.appengine.api.urlfetch.URLFetchServicePb.URLFetchResponse) ByteString(com.google.protobuf.ByteString) URLFetchRequest(com.google.appengine.api.urlfetch.URLFetchServicePb.URLFetchRequest) URL(java.net.URL) Test(org.junit.Test)

Aggregations

URLFetchResponse (com.google.appengine.api.urlfetch.URLFetchServicePb.URLFetchResponse)21 URLFetchRequest (com.google.appengine.api.urlfetch.URLFetchServicePb.URLFetchRequest)19 URL (java.net.URL)18 Test (org.junit.Test)16 ByteString (com.google.protobuf.ByteString)11 SocketTimeoutException (java.net.SocketTimeoutException)3 ApiProxy (com.google.apphosting.api.ApiProxy)2 IOException (java.io.IOException)2 FutureWrapper (com.google.appengine.api.utils.FutureWrapper)1 LatencyPercentiles (com.google.appengine.tools.development.LatencyPercentiles)1 LocalRpcService (com.google.appengine.tools.development.LocalRpcService)1 ApplicationException (com.google.apphosting.api.ApiProxy.ApplicationException)1 SSLException (javax.net.ssl.SSLException)1 HttpEntity (org.apache.http.HttpEntity)1 HttpResponse (org.apache.http.HttpResponse)1 HttpRequestBase (org.apache.http.client.methods.HttpRequestBase)1 BasicHttpParams (org.apache.http.params.BasicHttpParams)1 HttpParams (org.apache.http.params.HttpParams)1