com.github.tomakehurst.wiremock.client.WireMockBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wiremock-standalone Show documentation
Show all versions of wiremock-standalone Show documentation
A web service test double for all occasions - standalone edition
/*
* Copyright (C) 2017-2021 Thomas Akehurst
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.tomakehurst.wiremock.client;
import com.github.tomakehurst.wiremock.security.ClientAuthenticator;
import com.github.tomakehurst.wiremock.security.ClientBasicAuthenticator;
import com.github.tomakehurst.wiremock.security.NoClientAuthenticator;
public class WireMockBuilder {
private static final String DEFAULT_HOST = "localhost";
private static final int DEFAULT_PORT = 8080;
private int port = DEFAULT_PORT;
private String host = DEFAULT_HOST;
private String urlPathPrefix = "";
private String scheme = "http";
private String hostHeader = null;
private String proxyHost = null;
private int proxyPort = 0;
private ClientAuthenticator authenticator = new NoClientAuthenticator();
public WireMockBuilder port(int port) {
this.port = port;
return this;
}
public WireMockBuilder host(String host) {
this.host = host;
return this;
}
public WireMockBuilder urlPathPrefix(String urlPathPrefix) {
this.urlPathPrefix = urlPathPrefix;
return this;
}
public WireMockBuilder scheme(String scheme) {
this.scheme = scheme;
return this;
}
public WireMockBuilder http() {
return scheme("http");
}
public WireMockBuilder https() {
return scheme("https");
}
public WireMockBuilder hostHeader(String hostHeader) {
this.hostHeader = hostHeader;
return this;
}
public WireMockBuilder proxyHost(String proxyHost) {
this.proxyHost = proxyHost;
return this;
}
public WireMockBuilder proxyPort(int proxyPort) {
this.proxyPort = proxyPort;
return this;
}
public WireMockBuilder authenticator(ClientAuthenticator authenticator) {
this.authenticator = authenticator;
return this;
}
public WireMockBuilder basicAuthenticator(String username, String password) {
return authenticator(new ClientBasicAuthenticator(username, password));
}
public WireMock build() {
return new WireMock(
scheme, host, port, urlPathPrefix, hostHeader, proxyHost, proxyPort, authenticator);
}
}