use of com.yahoo.vespa.clustercontroller.core.restapiv2.Response in project sonarqube by SonarSource.
the class CeHttpServerTest method start_starts_http_server_and_publishes_URL_in_IPC.
@Test
public void start_starts_http_server_and_publishes_URL_in_IPC() throws Exception {
Response response = call(underTest.getUrl() + "/pompom?toto=2");
assertIsPomPomResponse(response);
}
use of com.yahoo.vespa.clustercontroller.core.restapiv2.Response in project sonarqube by SonarSource.
the class HttpHeadersTest method verify_headers_of_js_provided_by_plugins.
@Test
public void verify_headers_of_js_provided_by_plugins() throws Exception {
Response response = call(orchestrator.getServer().getUrl() + "/static/uiextensionsplugin/extension.js");
verifySecurityHeaders(response);
verifyContentType(response, "application/javascript");
}
use of com.yahoo.vespa.clustercontroller.core.restapiv2.Response in project sonarqube by SonarSource.
the class SsoAuthenticationTest method display_message_in_ui_but_not_in_log_when_unauthorized_exception.
@Test
public void display_message_in_ui_but_not_in_log_when_unauthorized_exception() throws Exception {
Response response = doCall("invalid login $", null, null, null);
assertThat(response.code()).isEqualTo(200);
assertThat(response.request().url().toString()).contains("sessions/unauthorized");
List<String> logsLines = FileUtils.readLines(orchestrator.getServer().getWebLogs(), UTF_8);
assertThat(logsLines).doesNotContain("org.sonar.server.exceptions.BadRequestException: Use only letters, numbers, and .-_@ please.");
USER_RULE.verifyUserDoesNotExist(USER_LOGIN);
}
use of com.yahoo.vespa.clustercontroller.core.restapiv2.Response in project sonarqube by SonarSource.
the class HttpHeadersTest method verify_headers_of_images.
@Test
public void verify_headers_of_images() throws Exception {
Response response = call(orchestrator.getServer().getUrl() + "/images/logo.svg");
verifySecurityHeaders(response);
verifyContentType(response, "image/svg+xml");
assertCacheInBrowser(response);
}
use of com.yahoo.vespa.clustercontroller.core.restapiv2.Response in project sonarqube by SonarSource.
the class HttpHeadersTest method verify_headers_of_ws.
@Test
public void verify_headers_of_ws() throws Exception {
Response response = call(orchestrator.getServer().getUrl() + "/api/issues/search");
verifySecurityHeaders(response);
verifyContentType(response, "application/json");
assertNoCacheInBrowser(response);
}
Aggregations