All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.axway.apim.WiremockWrapper Maven / Gradle / Ivy

The newest version!
package com.axway.apim;

import com.github.tomakehurst.wiremock.WireMockServer;
import com.github.tomakehurst.wiremock.common.ConsoleNotifier;
import com.github.tomakehurst.wiremock.common.Notifier;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.options;

public class WiremockWrapper {

    private static final Logger LOG = LoggerFactory.getLogger(WiremockWrapper.class);

    WireMockServer wireMockServer;


    public void initWiremock() {
        Notifier notifier;
        boolean wiremockFlag = Boolean.parseBoolean(System.getenv().getOrDefault("wiremock_debug", "false"));
        if(wiremockFlag){
            notifier = new ConsoleNotifier(true);
        }else {
            notifier = new ConsoleNotifier(false);
        }

        wireMockServer = new WireMockServer(options().httpsPort(8075).jettyIdleTimeout(30000L).jettyStopTimeout(10000L).httpDisabled(true)
            .templatingEnabled(false)
            .notifier(notifier)
            .usingFilesUnderClasspath("wiremock_apim"));
        System.setProperty("http.keepAlive", "false");
        wireMockServer.start();
        LOG.info("Wiremock server started");
    }

    public void close() {
        wireMockServer.stop();
        LOG.info("Wiremock server stopped");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy