Package org.springframework.jms.annotation

Source Code of org.springframework.jms.annotation.JmsListenerAnnotationBeanPostProcessorTests$MetaAnnotationTestBean

/*
* Copyright 2002-2014 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 org.springframework.jms.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.junit.Test;

import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.jms.config.AbstractJmsListenerEndpoint;
import org.springframework.jms.config.JmsListenerContainerTestFactory;
import org.springframework.jms.config.JmsListenerEndpoint;
import org.springframework.jms.config.JmsListenerEndpointRegistry;
import org.springframework.jms.config.MessageListenerTestContainer;
import org.springframework.jms.config.MethodJmsListenerEndpoint;
import org.springframework.jms.listener.SimpleMessageListenerContainer;
import org.springframework.stereotype.Component;

import static org.junit.Assert.*;

/**
* @author Stephane Nicoll
* @author Juergen Hoeller
*/
public class JmsListenerAnnotationBeanPostProcessorTests {

  @Test
  public void simpleMessageListener() {
    ConfigurableApplicationContext context = new AnnotationConfigApplicationContext(
        Config.class, SimpleMessageListenerTestBean.class);

    JmsListenerContainerTestFactory factory = context.getBean(JmsListenerContainerTestFactory.class);
    assertEquals("One container should have been registered", 1, factory.getListenerContainers().size());
    MessageListenerTestContainer container = factory.getListenerContainers().get(0);

    JmsListenerEndpoint endpoint = container.getEndpoint();
    assertEquals("Wrong endpoint type", MethodJmsListenerEndpoint.class, endpoint.getClass());
    MethodJmsListenerEndpoint methodEndpoint = (MethodJmsListenerEndpoint) endpoint;
    assertNotNull(methodEndpoint.getBean());
    assertNotNull(methodEndpoint.getMethod());

    SimpleMessageListenerContainer listenerContainer = new SimpleMessageListenerContainer();
    methodEndpoint.setupListenerContainer(listenerContainer);
    assertNotNull(listenerContainer.getMessageListener());

    assertTrue("Should have been started " + container, container.isStarted());
    context.close(); // Close and stop the listeners
    assertTrue("Should have been stopped " + container, container.isStopped());
  }

  @Test
  public void metaAnnotationIsDiscovered() {
    ConfigurableApplicationContext context = new AnnotationConfigApplicationContext(
        Config.class, MetaAnnotationTestBean.class);

    JmsListenerContainerTestFactory factory = context.getBean(JmsListenerContainerTestFactory.class);
    assertEquals("one container should have been registered", 1, factory.getListenerContainers().size());
    JmsListenerEndpoint endpoint = factory.getListenerContainers().get(0).getEndpoint();
    assertEquals("metaTestQueue", ((AbstractJmsListenerEndpoint) endpoint).getDestination());
  }


  @Component
  static class SimpleMessageListenerTestBean {

    @JmsListener(destination = "testQueue")
    public void handleIt(String body) {
    }

  }


  @Component
  static class MetaAnnotationTestBean {

    @FooListener
    public void handleIt(String body) {
    }
  }


  @JmsListener(destination = "metaTestQueue")
  @Target(ElementType.METHOD)
  @Retention(RetentionPolicy.RUNTIME)
  static @interface FooListener {
  }


  @Configuration
  static class Config {

    @Bean
    public JmsListenerAnnotationBeanPostProcessor postProcessor() {
      JmsListenerAnnotationBeanPostProcessor postProcessor = new JmsListenerAnnotationBeanPostProcessor();
      postProcessor.setEndpointRegistry(jmsListenerEndpointRegistry());
      postProcessor.setContainerFactoryBeanName("testFactory");
      return postProcessor;
    }

    @Bean
    public JmsListenerEndpointRegistry jmsListenerEndpointRegistry() {
      return new JmsListenerEndpointRegistry();
    }

    @Bean
    public JmsListenerContainerTestFactory testFactory() {
      return new JmsListenerContainerTestFactory();
    }
  }

}
TOP

Related Classes of org.springframework.jms.annotation.JmsListenerAnnotationBeanPostProcessorTests$MetaAnnotationTestBean

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.