From f626a9868b89d7ce928504c131d3d4109accc947 Mon Sep 17 00:00:00 2001 From: Bogumil Zebek Date: Mon, 25 Jun 2018 13:44:15 +0200 Subject: Fix component creation Change-Id: I08606ec83b53cd87005f7d52301e0fe8792d744e Issue-ID: AAI-1236 Signed-off-by: Bogumil Zebek --- .../config/AAIDmaapEventJMSConsumerBeanTest.java | 70 ++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 aai-core/src/test/java/org/onap/aai/config/AAIDmaapEventJMSConsumerBeanTest.java (limited to 'aai-core/src/test/java') diff --git a/aai-core/src/test/java/org/onap/aai/config/AAIDmaapEventJMSConsumerBeanTest.java b/aai-core/src/test/java/org/onap/aai/config/AAIDmaapEventJMSConsumerBeanTest.java new file mode 100644 index 00000000..5ffd868e --- /dev/null +++ b/aai-core/src/test/java/org/onap/aai/config/AAIDmaapEventJMSConsumerBeanTest.java @@ -0,0 +1,70 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.aai + * ================================================================================ + * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved. + * Copyright © 2017-2018 Nokia. All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + */ +package org.onap.aai.config; + +import static org.junit.Assert.assertNotNull; + +import org.apache.activemq.ActiveMQConnectionFactory; +import org.apache.activemq.broker.BrokerService; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.onap.aai.dmaap.AAIDmaapEventJMSConsumer; +import org.onap.aai.dmaap.AAIDmaapEventJMSProducer; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Qualifier; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.context.ApplicationContext; +import org.springframework.test.context.ActiveProfiles; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.context.support.AnnotationConfigContextLoader; + +/** + * Created by Bogumil Zebek on 6/25/18. + */ +@RunWith(SpringJUnit4ClassRunner.class) +@ContextConfiguration(classes = {DmaapConfig.class, + EventClientPublisher.class}, loader = AnnotationConfigContextLoader.class) +@ActiveProfiles(profiles = "dmaap") +public class AAIDmaapEventJMSConsumerBeanTest { + + @MockBean + AAIDmaapEventJMSProducer jmsProducer; + + @MockBean + BrokerService brokerService; + + @MockBean + ActiveMQConnectionFactory activeMQConnectionFactory; + + @Autowired + @Qualifier("jmsConsumer") + AAIDmaapEventJMSConsumer jmsConsumer; + + @Autowired + private ApplicationContext ctx; + + @Test + public void shouldCreateJmsConsumerProperly_allDependenciesInjectedByContainer() { + assertNotNull(jmsConsumer); + } + +} -- cgit 1.2.3-korg