/* * Copyright 2013, The Sporting Exchange Limited * Copyright 2015, Simon Matić Langford * * 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 UpdatedComponentTests/Concurrency/Rest/Rest_MultipleOperations_ConcurrentRequests_JSONJSON.xls; package com.betfair.cougar.tests.updatedcomponenttests.concurrency.rest; import com.betfair.cougar.testing.concurrency.RestConcurrentRequestsAcrossMultipleOperationsTest; import com.betfair.testing.utils.cougar.assertions.AssertionUtils; import com.betfair.testing.utils.cougar.beans.HttpResponseBean; import com.betfair.testing.utils.cougar.enums.CougarMessageContentTypeEnum; import com.betfair.testing.utils.cougar.enums.CougarMessageProtocolRequestTypeEnum; import org.testng.annotations.Test; import java.util.Map; /** * Ensure that when concurrent Rest JSON requests from multiple operations are performed against Cougar, each request is successfully sent and the JSON response is correctly handled */ public class RestMultipleOperationsConcurrentRequestsJSONJSONTest { @Test public void doTest() throws Exception { // Execute the test, creating the given number of threads and making the given number of JSON calls per thread RestConcurrentRequestsAcrossMultipleOperationsTest.RestConcurrentRequestsAcrossMultipleOperationsTestResultBean executeTest3 = new RestConcurrentRequestsAcrossMultipleOperationsTest().executeTest(4, 400, CougarMessageProtocolRequestTypeEnum.RESTJSON, CougarMessageContentTypeEnum.JSON); // Get the expected responses to the requests made Map<String, HttpResponseBean> getExpectedResponses4 = executeTest3.getExpectedResponses(); // Check the actual responses against the expected ones (with a date tolerance of 2000ms) Long oldTolerance = AssertionUtils.setDateTolerance(2000L); try { AssertionUtils.multiAssertEquals(getExpectedResponses4, executeTest3.getActualResponses()); } finally { AssertionUtils.setDateTolerance(oldTolerance); } } }