Search Java Code Snippets


  Help us in improving the repository. Add new snippets through 'Submit Code Snippet ' link.





Java - Code Samples

 Sample 1. Code Sample / Example / Snippet of org.apache.hc.core5.http.impl.io.HttpService

    public void testBasicProtocolDowngrade() throws Exception {

final HttpProcessor httprocessor = Mockito.mock(HttpProcessor.class);

final ConnectionReuseStrategy connReuseStrategy = Mockito.mock(ConnectionReuseStrategy.class);

final HttpResponseFactory responseFactory = Mockito.mock(HttpResponseFactory.class);

final HttpRequestHandlerMapper handlerResolver = Mockito.mock(HttpRequestHandlerMapper.class);



final HttpService httpservice = new HttpService(

httprocessor,

connReuseStrategy,

responseFactory,

handlerResolver);

final HttpCoreContext context = HttpCoreContext.create();

final HttpServerConnection conn = Mockito.mock(HttpServerConnection.class);

final HttpRequest request = new BasicHttpRequest("GET", "/", new HttpVersion(20, 45));

Mockito.when(conn.receiveRequestHeader()).thenReturn(request);

final HttpResponse response = new BasicHttpResponse(200, "OK");

Mockito.when(responseFactory.newHttpResponse(200, context)).thenReturn(response);

Mockito.when(connReuseStrategy.keepAlive(request, response, context)).thenReturn(Boolean.FALSE);



httpservice.handleRequest(conn, context);



Mockito.verify(responseFactory).newHttpResponse(200, context);

}


   Like      Feedback      org.apache.hc.core5.http.impl.io.HttpService



Subscribe to Java News and Posts. Get latest updates and posts on Java from Buggybread.com
Enter your email address:
Delivered by FeedBurner