Search in sources :

Example 1 with CMResponseExceptionSender

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

the class CMTest method testCMResponseException.

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