/* * Copyright 2013, The Sporting Exchange Limited * * 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. */ // Originally from ClientTests/Transport/StandardTesting/Client_Rescript_Get_RequestTypes_Parameters_ListOfStrings.xls; package com.betfair.cougar.tests.clienttests.standardtesting; import com.betfair.baseline.v2.BaselineSyncClient; import com.betfair.baseline.v2.to.NonMandatoryParamsOperationResponseObject; import com.betfair.cougar.api.ExecutionContext; import com.betfair.cougar.tests.clienttests.ClientTestsHelper; import com.betfair.cougar.tests.clienttests.CougarClientResponseTypeUtils; import com.betfair.cougar.tests.clienttests.CougarClientWrapper; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; import java.util.List; import static org.testng.AssertJUnit.assertEquals; /** * Ensure that when a stringList is passed to cougar via a cougar client the request is sent and the response is handled correctly */ public class ClientGetRequestTypesParametersListOfStringsTest { @Test(dataProvider = "TransportType") public void doTest(CougarClientWrapper.TransportType tt) throws Exception { // Set up the client to use rescript transport CougarClientWrapper cougarClientWrapper1 = CougarClientWrapper.getInstance(tt); CougarClientWrapper wrapper = cougarClientWrapper1; BaselineSyncClient client = cougarClientWrapper1.getClient(); ExecutionContext context = cougarClientWrapper1.getCtx(); // Build list to pass as parameter CougarClientResponseTypeUtils cougarClientResponseTypeUtils2 = new CougarClientResponseTypeUtils(); List<String> queryList = cougarClientResponseTypeUtils2.buildList("query1,queryTwo,query3,query4"); // Build list to pass as parameter CougarClientResponseTypeUtils cougarClientResponseTypeUtils3 = new CougarClientResponseTypeUtils(); List<String> headerList = cougarClientResponseTypeUtils3.buildList("header1,headerTwo,header3,header4"); // Make call to the method via client and validate the same lists have been echoed in response NonMandatoryParamsOperationResponseObject response4 = client.stringListOperation(context, headerList, queryList); assertEquals("query1,queryTwo,query3,query4", response4.getQueryParameter()); assertEquals("header1,headerTwo,header3,header4", response4.getHeaderParameter()); } @DataProvider(name="TransportType") public Object[][] clients() { return ClientTestsHelper.clientsToTest(); } }