com.epam.wilma.gepard.test.localhost.BlockLocalhostUsageSwitch.java Source code

Java tutorial

Introduction

Here is the source code for com.epam.wilma.gepard.test.localhost.BlockLocalhostUsageSwitch.java

Source

package com.epam.wilma.gepard.test.localhost;
/*==========================================================================
Copyright 2013-2016 EPAM Systems
    
This file is part of Wilma.
    
Wilma is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
    
Wilma is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
    
You should have received a copy of the GNU General Public License
along with Wilma.  If not, see <http://www.gnu.org/licenses/>.
===========================================================================*/

import com.epam.wilma.gepard.test.helper.WilmaTestLogDecorator;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.methods.GetMethod;

/**
 * Enables/disables blocking requests which are directed to localhost.
 * @author Adam_Csaba_Kiraly
 *
 */
public class BlockLocalhostUsageSwitch {

    private static final int STATUS_OK = 200;
    private static final String URL_TEMPLATE = "%sconfig/admin/localhost/%s";

    /**
     * Set localhost blocking to on/off.
     *
     * @param tc is the caller Test Case
     * @param host Wilma host:port string
     * @param state is the expected state of the switch
     * @return with response code
     * @throws Exception in case of error
     */
    public String setLocalhostBlockingModeTo(final WilmaTestLogDecorator tc, final String host, final String state)
            throws Exception {
        String url = String.format(URL_TEMPLATE, host, state);
        tc.logStep("Switching localhost blocking in Wilma to: " + url.split("localhost/")[1]);
        tc.logGetRequestEvent(url);

        HttpClient httpClient = new HttpClient();
        GetMethod httpGet = new GetMethod(url);
        int statusCode = httpClient.executeMethod(httpGet);
        String responseCode = "status code: " + statusCode + "\n";
        if (statusCode != STATUS_OK) {
            tc.naTestCase("Localhost blocking switch failed.");
        }
        tc.logComment("Localhost blocking is: " + url.split("localhost/")[1]);
        return responseCode;
    }
}