Пример #1
0
  public void testThatOmittingCorsHeaderDoesNotReturnAnything() throws Exception {
    HttpResponse response = httpClient().method("GET").path("/").execute();

    assertThat(response.getStatusCode(), is(200));
    assertThat(response.getHeaders(), not(hasKey("Access-Control-Allow-Origin")));
    assertThat(response.getHeaders(), not(hasKey("Access-Control-Allow-Credentials")));
  }
Пример #2
0
 public void testThatRegularExpressionReturnsForbiddenOnNonMatch() throws Exception {
   HttpResponse response =
       httpClient()
           .method("GET")
           .path("/")
           .addHeader("User-Agent", "Mozilla Bar")
           .addHeader("Origin", "http://evil-host:9200")
           .execute();
   // a rejected origin gets a FORBIDDEN - 403
   assertThat(response.getStatusCode(), is(403));
   assertThat(response.getHeaders(), not(hasKey("Access-Control-Allow-Origin")));
 }
Пример #3
0
 public void testThatPreFlightRequestWorksOnMatch() throws Exception {
   String corsValue = "http://localhost:9200";
   HttpResponse response =
       httpClient()
           .method("OPTIONS")
           .path("/")
           .addHeader("User-Agent", "Mozilla Bar")
           .addHeader("Origin", corsValue)
           .addHeader(HttpHeaders.Names.ACCESS_CONTROL_REQUEST_METHOD, "GET")
           .execute();
   assertResponseWithOriginheader(response, corsValue);
   assertThat(response.getHeaders(), hasKey("Access-Control-Allow-Methods"));
 }
Пример #4
0
 public void testThatPreFlightRequestReturnsNullOnNonMatch() throws Exception {
   HttpResponse response =
       httpClient()
           .method("OPTIONS")
           .path("/")
           .addHeader("User-Agent", "Mozilla Bar")
           .addHeader("Origin", "http://evil-host:9200")
           .addHeader(HttpHeaders.Names.ACCESS_CONTROL_REQUEST_METHOD, "GET")
           .execute();
   // a rejected origin gets a FORBIDDEN - 403
   assertThat(response.getStatusCode(), is(403));
   assertThat(response.getHeaders(), not(hasKey("Access-Control-Allow-Origin")));
   assertThat(response.getHeaders(), not(hasKey("Access-Control-Allow-Methods")));
 }
Пример #5
0
  public void testCorsSettingDefaultBehaviourDoesNotReturnAnything() throws Exception {
    String corsValue = "http://localhost:9200";
    HttpResponse response =
        httpClient()
            .method("GET")
            .path("/")
            .addHeader("User-Agent", "Mozilla Bar")
            .addHeader("Origin", corsValue)
            .execute();

    assertThat(response.getStatusCode(), is(200));
    assertThat(response.getHeaders(), not(hasKey("Access-Control-Allow-Origin")));
    assertThat(response.getHeaders(), not(hasKey("Access-Control-Allow-Credentials")));
  }
  @Test
  public void testThatErrorTraceWorksByDefault() throws Exception {
    // Make the HTTP request
    HttpResponse response =
        new HttpRequestBuilder(HttpClients.createDefault())
            .httpTransport(internalCluster().getDataNodeInstance(HttpServerTransport.class))
            .path("/")
            .addParam("error_trace", "true")
            .method(HttpDeleteWithEntity.METHOD_NAME)
            .execute();

    assertThat(response.getHeaders().get("Content-Type"), containsString("application/json"));
    assertThat(
        response.getBody(), containsString("\"error_trace\":{\"message\":\"Validation Failed"));
  }
Пример #7
0
  public void testThatRegularExpressionWorksOnMatch() throws Exception {
    String corsValue = "http://localhost:9200";
    HttpResponse response =
        httpClient()
            .method("GET")
            .path("/")
            .addHeader("User-Agent", "Mozilla Bar")
            .addHeader("Origin", corsValue)
            .execute();
    assertResponseWithOriginheader(response, corsValue);

    corsValue = "https://localhost:9200";
    response =
        httpClient()
            .method("GET")
            .path("/")
            .addHeader("User-Agent", "Mozilla Bar")
            .addHeader("Origin", corsValue)
            .execute();
    assertResponseWithOriginheader(response, corsValue);
    assertThat(response.getHeaders(), hasKey("Access-Control-Allow-Credentials"));
    assertThat(response.getHeaders().get("Access-Control-Allow-Credentials"), is("true"));
  }
Пример #8
0
 public void testThatSendingNoOriginHeaderReturnsNoAccessControlHeader() throws Exception {
   HttpResponse response =
       httpClient().method("GET").path("/").addHeader("User-Agent", "Mozilla Bar").execute();
   assertThat(response.getStatusCode(), is(200));
   assertThat(response.getHeaders(), not(hasKey("Access-Control-Allow-Origin")));
 }
Пример #9
0
 protected static void assertResponseWithOriginheader(
     HttpResponse response, String expectedCorsHeader) {
   assertThat(response.getStatusCode(), is(200));
   assertThat(response.getHeaders(), hasKey("Access-Control-Allow-Origin"));
   assertThat(response.getHeaders().get("Access-Control-Allow-Origin"), is(expectedCorsHeader));
 }
Пример #10
0
 public void testThatRegularExpressionIsNotAppliedWithoutCorrectBrowserOnMatch() throws Exception {
   HttpResponse response = httpClient().method("GET").path("/").execute();
   assertThat(response.getStatusCode(), is(200));
   assertThat(response.getHeaders(), not(hasKey("Access-Control-Allow-Origin")));
 }