blob: 395365b8c3ce031549e16fbd9910a44c7f0cb15d [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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.apache.camel.loanbroker.webservice.version;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class LoanBrokerWSTest extends Assert {
AbstractApplicationContext applicationContext;
@Before
public void startServices() throws Exception {
if (!"true".equalsIgnoreCase(System.getProperty("skipStartingCamelContext"))) {
applicationContext = new ClassPathXmlApplicationContext(new String[]{"/META-INF/spring/webServiceCamelContext.xml"});
} else {
System.out.println("Skipping starting CamelContext as system property skipStartingCamelContext is set to be true.");
}
}
@After
public void stopServices() throws Exception {
if (applicationContext != null) {
applicationContext.stop();
}
}
@Test
public void testInvocation() {
Client client = new Client();
String result = null;
LoanBrokerWS loanBroker = client.getProxy(Constants.LOANBROKER_ADDRESS);
long startTime = System.currentTimeMillis();
result = loanBroker.getLoanQuote("Sequential SSN", 1000.54, 10);
long endTime = System.currentTimeMillis();
long delta1 = endTime - startTime;
assertTrue(result.startsWith("The best rate is [ ssn:Sequential SSN bank:bank"));
LoanBrokerWS paralleLoanBroker = client.getProxy(Constants.PARALLEL_LOANBROKER_ADDRESS);
startTime = System.currentTimeMillis();
result = paralleLoanBroker.getLoanQuote("Parallel SSN", 1000.54, 10);
endTime = System.currentTimeMillis();
long delta2 = endTime - startTime;
assertTrue(result.startsWith("The best rate is [ ssn:Parallel SSN bank:bank"));
assertTrue(delta2 < delta1);
}
}