Search in sources :

Example 1 with InvalidProductTokenExceptionSender

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

the class CMTest method testInvalidProductTokenException.

@Test(expected = InvalidProductTokenException.class)
public void testInvalidProductTokenException() throws Exception {
    // Change sending strategy
    CMEndpoint endpoint = (CMEndpoint) camelContext.getEndpoint(applicationContext.getBean(CamelTestConfiguration.class).getUri());
    CMProducer producer = endpoint.createProducer();
    producer.setSender(new InvalidProductTokenExceptionSender());
    // Body
    final SMSMessage smsMessage = new SMSMessage(generateIdAsString(), generateUnicodeMessage(), validNumber, null);
    send(producer, smsMessage);
}
Also used : CMEndpoint(org.apache.camel.component.cm.CMEndpoint) SMSMessage(org.apache.camel.component.cm.client.SMSMessage) CMProducer(org.apache.camel.component.cm.CMProducer) InvalidProductTokenExceptionSender(org.apache.camel.component.cm.test.mocks.cmsender.InvalidProductTokenExceptionSender) 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 InvalidProductTokenExceptionSender (org.apache.camel.component.cm.test.mocks.cmsender.InvalidProductTokenExceptionSender)1 Test (org.junit.Test)1