package com.epam.wilma.gepard.test.messagemarker; /*========================================================================== Copyright 2013-2017 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 Tamas Kohegyi * */ public class MessageMarkingSwitch { private static final int STATUS_OK = 200; private static final String URL_TEMPLATE = "%sconfig/admin/messagemarking/%s"; /** * Set message marking 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 setMessageMarkingModeTo(final WilmaTestLogDecorator tc, final String host, final String state) throws Exception { String url = String.format(URL_TEMPLATE, host, state); tc.logStep("Switching message marking in Wilma to: " + url.split("messagemarking/")[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("Message marking switch failed."); } tc.logComment("Message marking is: " + url.split("messagemarking/")[1]); return responseCode; } }