use of org.apache.synapse.samples.framework.SampleClientResult in project wso2-synapse by wso2.
the class Sample15 method testMessageEnrichment.
public void testMessageEnrichment() {
String trpUrl = "http://localhost:8280/services/StockQuote";
StockQuoteSampleClient client = getStockQuoteClient();
log.info("Running test: Message Enrichment through Synapse");
SampleClientResult result = client.requestStandardQuote(null, trpUrl, null, "IBM", null);
assertResponseReceived(result);
}
use of org.apache.synapse.samples.framework.SampleClientResult in project wso2-synapse by wso2.
the class Sample4 method testErrorHandling.
public void testErrorHandling() {
String addUrl = "http://localhost:9000/services/SimpleStockQuoteService";
String trpUrl = "http://localhost:8280";
StockQuoteSampleClient client = getStockQuoteClient();
log.info("Running test: Introduction to error handling");
SampleClientResult result = client.requestStandardQuote(addUrl, trpUrl, null, "IBM", null);
assertResponseReceived(result);
result = client.requestStandardQuote(addUrl, trpUrl, null, "MSFT", null);
assertFalse("Must not get a response", result.responseReceived());
Exception resultEx = result.getException();
assertNotNull("Did not receive expected error", resultEx);
log.info("Got an error as expected: " + resultEx.getMessage());
assertTrue("Did not receive expected error", resultEx instanceof AxisFault);
result = client.requestStandardQuote(addUrl, trpUrl, null, "SUN", null);
assertFalse("Must not get a response", result.responseReceived());
Exception resultEx2 = result.getException();
assertNotNull("Did not receive expected error", resultEx);
log.info("Got an error as expected: " + resultEx.getMessage());
assertTrue("Did not receive expected error", resultEx2 instanceof AxisFault);
}
use of org.apache.synapse.samples.framework.SampleClientResult in project wso2-synapse by wso2.
the class Sample150 method testBasicProxy.
public void testBasicProxy() {
String addUrl = "http://localhost:8280/services/StockQuoteProxy";
log.info("Running test: Introduction to proxy services");
StockQuoteSampleClient client = getStockQuoteClient();
SampleClientResult result = client.requestStandardQuote(addUrl, null, null, "IBM", null);
assertTrue("Client did not get run successfully ", result.responseReceived());
}
use of org.apache.synapse.samples.framework.SampleClientResult in project wso2-synapse by wso2.
the class Sample268 method testLocalTransport.
public void testLocalTransport() throws Exception {
String addUrl = "http://localhost:8280/services/LocalTransportProxy";
StockQuoteSampleClient client = getStockQuoteClient();
SampleClientResult result = client.placeOrder(addUrl, null, null, "IBM");
assertResponseReceived(result);
}
use of org.apache.synapse.samples.framework.SampleClientResult in project wso2-synapse by wso2.
the class Sample266 method testTCPtoHTTP.
public void testTCPtoHTTP() throws Exception {
String trpUrl = "tcp://localhost:6060/services/StockQuoteProxy";
StockQuoteSampleClient client = getStockQuoteClient();
SampleClientResult result = client.placeOrder(trpUrl, trpUrl, null, "IBM");
assertResponseReceived(result);
}
Aggregations