/* * Copyright (c) 2005-2010, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you 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. */ package org.wso2.carbon.esb.mediator.test.aggregate; import org.apache.axiom.om.OMElement; import org.apache.axiom.om.util.AXIOMUtil; import org.testng.Assert; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import org.wso2.esb.integration.common.utils.ESBIntegrationTest; import javax.xml.namespace.QName; import javax.xml.stream.XMLStreamException; import java.io.IOException; import java.util.Iterator; public class HighTimeoutWithLessMessagesTestCase extends ESBIntegrationTest { private AggregatedRequestClient aggregatedRequestClient; private final int no_of_requests = 300; @BeforeClass(alwaysRun = true) public void setEnvironment() throws Exception { super.init(); loadESBConfigurationFromClasspath("/artifacts/ESB/synapseconfig/highTimeoutValueConfig/synapse.xml"); aggregatedRequestClient = new AggregatedRequestClient(); aggregatedRequestClient.setProxyServiceUrl(getProxyServiceURLHttp("aggregateMediatorTestProxy")); aggregatedRequestClient.setSymbol("IBM"); aggregatedRequestClient.setNoOfIterations(no_of_requests); } @Test(groups = {"wso2.esb"}, description = "replacing a property by using an enrich mediator") public void maxValueTest() throws IOException, XMLStreamException { int responseCount = 0; String Response = aggregatedRequestClient.getResponse(); Assert.assertNotNull(Response); OMElement Response2 = AXIOMUtil.stringToOM(Response); OMElement soapBody = Response2.getFirstElement(); Iterator iterator = soapBody.getChildrenWithName(new QName("http://services.samples", "getQuoteResponse")); while (iterator.hasNext()) { responseCount++; OMElement getQuote = (OMElement) iterator.next(); Assert.assertTrue(getQuote.toString().contains("IBM")); } Assert.assertEquals(responseCount, no_of_requests, "GetQuoteResponse Element count mismatched"); } @AfterClass(alwaysRun = true) public void destroy() throws Exception { super.cleanup(); } }