Search in sources :

Example 1 with InsufficientBalanceExceptionSender

use of org.apache.camel.component.cm.test.mocks.cmsender.InsufficientBalanceExceptionSender in project camel by apache.

the class CMTest method testInsufficientBalanceException.

@Test(expected = InsufficientBalanceException.class)
public void testInsufficientBalanceException() throws Exception {
    // Change sending strategy
    CMEndpoint endpoint = (CMEndpoint) camelContext.getEndpoint(applicationContext.getBean(CamelTestConfiguration.class).getUri());
    CMProducer producer = endpoint.createProducer();
    producer.setSender(new InsufficientBalanceExceptionSender());
    // Body
    final SMSMessage smsMessage = new SMSMessage(generateIdAsString(), generateGSM0338Message(), validNumber, null);
    send(producer, smsMessage);
}
Also used : CMEndpoint(org.apache.camel.component.cm.CMEndpoint) InsufficientBalanceExceptionSender(org.apache.camel.component.cm.test.mocks.cmsender.InsufficientBalanceExceptionSender) SMSMessage(org.apache.camel.component.cm.client.SMSMessage) CMProducer(org.apache.camel.component.cm.CMProducer) Test(org.junit.Test)

Aggregations

CMEndpoint (org.apache.camel.component.cm.CMEndpoint)1 CMProducer (org.apache.camel.component.cm.CMProducer)1 SMSMessage (org.apache.camel.component.cm.client.SMSMessage)1 InsufficientBalanceExceptionSender (org.apache.camel.component.cm.test.mocks.cmsender.InsufficientBalanceExceptionSender)1 Test (org.junit.Test)1