blob: 445999eb6afac98eaee96567f1a52756daeb56bb [file] [log] [blame]
package org.apache.synapse.samples.n2n;
import org.apache.synapse.SynapseConstants;
import samples.userguide.StockQuoteClient;
/**
*
*/
public class SynapseSample_101_Integration extends AbstractAutomationTestCase {
protected void setUp() throws Exception {
System.setProperty(SynapseConstants.SYNAPSE_XML, SAMPLE_CONFIG_ROOT_PATH + "synapse_sample_101.xml");
super.setUp();
}
public void testSample() throws Exception {
System.setProperty("addurl", SYNAPSE_BASE_URL + "soap/StockQuoteProxy1");
String resultString = getStringResultOfTest(StockQuoteClient.executeTestClient());
assertXpathExists("ns:getQuoteResponse", resultString);
assertXpathExists("ns:getQuoteResponse/ns:return", resultString);
System.setProperty("addurl", SYNAPSE_BASE_URL + "soap/StockQuoteProxy2");
resultString = getStringResultOfTest(StockQuoteClient.executeTestClient());
assertXpathExists("ns:getQuoteResponse", resultString);
assertXpathExists("ns:getQuoteResponse/ns:return", resultString);
}
}