mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-08 06:25:45 +01:00
38 lines
1.1 KiB
Java
38 lines
1.1 KiB
Java
package sonia.scm.it;
|
|
|
|
import io.restassured.RestAssured;
|
|
import io.restassured.specification.RequestSpecification;
|
|
|
|
import java.net.URI;
|
|
|
|
import static java.net.URI.create;
|
|
|
|
public class RestUtil {
|
|
|
|
public static final URI BASE_URL = create("http://localhost:8081/scm/");
|
|
public static final URI REST_BASE_URL = BASE_URL.resolve("api/rest/v2/");
|
|
|
|
public static URI createResourceUrl(String path) {
|
|
return REST_BASE_URL.resolve(path);
|
|
}
|
|
|
|
public static final String ADMIN_USERNAME = "scmadmin";
|
|
public static final String ADMIN_PASSWORD = "scmadmin";
|
|
|
|
public static RequestSpecification given() {
|
|
return RestAssured.given()
|
|
.auth().preemptive().basic(ADMIN_USERNAME, ADMIN_PASSWORD);
|
|
}
|
|
|
|
public static RequestSpecification given(String mediaType) {
|
|
return given(mediaType, ADMIN_USERNAME, ADMIN_PASSWORD);
|
|
}
|
|
|
|
public static RequestSpecification given(String mediaType, String username, String password) {
|
|
return RestAssured.given()
|
|
.contentType(mediaType)
|
|
.accept(mediaType)
|
|
.auth().preemptive().basic(username, password);
|
|
}
|
|
}
|