Package org.deftserver.util

Examples of org.deftserver.util.HttpRequestHelper.removeHeader()


  @Test
  public void testHostVerification_nonExisting_HTTP_1_0() {
    HttpRequestHelper helper = new HttpRequestHelper();
    helper.setVersion("1.0");
    helper.removeHeader("Host");
    HttpRequest request = HttpRequest.of(helper.getRequestAsByteBuffer());
    boolean requestOk = HttpUtil.verifyRequest(request);
    assertTrue(requestOk);
  }
View Full Code Here


  }

  @Test
  public void testHostVerification_nonExisting_HTTP_1_1() {
    HttpRequestHelper helper = new HttpRequestHelper();
    helper.removeHeader("Host");
    HttpRequest request = HttpRequest.of(helper.getRequestAsByteBuffer());
    boolean requestOk = HttpUtil.verifyRequest(request);
    assertFalse(requestOk);
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.