Package com.consol.citrus.channel

Source Code of com.consol.citrus.channel.ChannelEndpointProducerTest

/*
* Copyright 2006-2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.consol.citrus.channel;

import com.consol.citrus.exceptions.CitrusRuntimeException;
import com.consol.citrus.message.DefaultMessage;
import com.consol.citrus.message.Message;
import com.consol.citrus.testng.AbstractTestNGUnitTest;
import org.easymock.EasyMock;
import org.springframework.integration.core.MessagingTemplate;
import org.springframework.messaging.MessageChannel;
import org.springframework.messaging.MessageDeliveryException;
import org.springframework.messaging.core.DestinationResolver;
import org.testng.Assert;
import org.testng.annotations.Test;

import static org.easymock.EasyMock.*;

/**
* @author Christoph Deppisch
*/
public class ChannelEndpointProducerTest extends AbstractTestNGUnitTest {

    private MessagingTemplate messagingTemplate = EasyMock.createMock(MessagingTemplate.class);
    private MessageChannel channel = EasyMock.createMock(MessageChannel.class);
    private DestinationResolver channelResolver = EasyMock.createMock(DestinationResolver.class);
   
    @Test
    @SuppressWarnings({ "unchecked", "rawtypes" })
    public void testSendMessage() {
        ChannelEndpoint endpoint = new ChannelEndpoint();
        endpoint.getEndpointConfiguration().setMessagingTemplate(messagingTemplate);

        endpoint.getEndpointConfiguration().setChannel(channel);
       
        final Message message = new DefaultMessage("<TestRequest><Message>Hello World!</Message></TestRequest>");
       
        reset(messagingTemplate, channel);
       
        messagingTemplate.send(eq(channel), anyObject(org.springframework.messaging.Message.class));
        expectLastCall().once();
       
        replay(messagingTemplate, channel);

        endpoint.createProducer().send(message, context);
       
        verify(messagingTemplate, channel);
    }
   
    @Test
    @SuppressWarnings({ "unchecked", "rawtypes" })
    public void testSendMessageChannelNameResolver() {
        ChannelEndpoint endpoint = new ChannelEndpoint();
        endpoint.getEndpointConfiguration().setMessagingTemplate(messagingTemplate);

        endpoint.getEndpointConfiguration().setChannelName("testChannel");

        endpoint.getEndpointConfiguration().setChannelResolver(channelResolver);
       
        final Message message = new DefaultMessage("<TestRequest><Message>Hello World!</Message></TestRequest>");
       
        reset(messagingTemplate, channel, channelResolver);
       
        expect(channelResolver.resolveDestination("testChannel")).andReturn(channel).once();
       
        messagingTemplate.send(eq(channel), anyObject(org.springframework.messaging.Message.class));
        expectLastCall().once();
       
        replay(messagingTemplate, channel, channelResolver);

        endpoint.createProducer().send(message, context);
       
        verify(messagingTemplate, channel, channelResolver);
    }
   
    @Test
    @SuppressWarnings({ "unchecked", "rawtypes" })
    public void testSendMessageFailed() {
        ChannelEndpoint endpoint = new ChannelEndpoint();
        endpoint.getEndpointConfiguration().setMessagingTemplate(messagingTemplate);

        endpoint.getEndpointConfiguration().setChannel(channel);
       
        final Message message = new DefaultMessage("<TestRequest><Message>Hello World!</Message></TestRequest>");
       
        reset(messagingTemplate, channel);
       
        messagingTemplate.send(eq(channel), anyObject(org.springframework.messaging.Message.class));
        expectLastCall().andThrow(new MessageDeliveryException("Internal error!")).once();
       
        replay(messagingTemplate, channel);

        try {
            endpoint.createProducer().send(message, context);
        } catch(CitrusRuntimeException e) {
            Assert.assertTrue(e.getLocalizedMessage().startsWith("Failed to send message to channel: "));
            Assert.assertNotNull(e.getCause());
            Assert.assertEquals(e.getCause().getClass(), MessageDeliveryException.class);
            Assert.assertEquals(e.getCause().getLocalizedMessage(), "Internal error!");
            verify(messagingTemplate, channel);
            return;
        }
       
        Assert.fail("Missing " + CitrusRuntimeException.class + " because no message was received");   
    }
   
}
TOP

Related Classes of com.consol.citrus.channel.ChannelEndpointProducerTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.