use of org.eclipse.che.security.oauth1.BitbucketServerOAuthAuthenticator in project che-server by eclipse-che.
the class HttpBitbucketServerApiClientTest method start.
@BeforeMethod
void start() {
wireMockServer = new WireMockServer(wireMockConfig().notifier(new Slf4jNotifier(false)).dynamicPort());
wireMockServer.start();
WireMock.configureFor("localhost", wireMockServer.port());
wireMock = new WireMock("localhost", wireMockServer.port());
bitbucketServer = new HttpBitbucketServerApiClient(wireMockServer.url("/"), new BitbucketServerOAuthAuthenticator("", "", "", "") {
@Override
public String computeAuthorizationHeader(String userId, String requestMethod, String requestUrl) throws OAuthAuthenticationException {
return AUTHORIZATION_TOKEN;
}
});
}
use of org.eclipse.che.security.oauth1.BitbucketServerOAuthAuthenticator in project devspaces-images by redhat-developer.
the class HttpBitbucketServerApiClientTest method start.
@BeforeMethod
void start() {
wireMockServer = new WireMockServer(wireMockConfig().notifier(new Slf4jNotifier(false)).dynamicPort());
wireMockServer.start();
WireMock.configureFor("localhost", wireMockServer.port());
wireMock = new WireMock("localhost", wireMockServer.port());
bitbucketServer = new HttpBitbucketServerApiClient(wireMockServer.url("/"), new BitbucketServerOAuthAuthenticator("", "", "", "") {
@Override
public String computeAuthorizationHeader(String userId, String requestMethod, String requestUrl) throws OAuthAuthenticationException {
return AUTHORIZATION_TOKEN;
}
});
}
Aggregations