Initial TCA commit into DCAEGEN2
[dcaegen2/analytics/tca.git] / dcae-analytics-dmaap / src / test / java / org / openecomp / dcae / apod / analytics / dmaap / DMaaPMRFactoryTest.java
1 /*
2  * ===============================LICENSE_START======================================
3  *  dcae-analytics
4  * ================================================================================
5  *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *   You may obtain a copy of the License at
10  *
11  *          http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  *  ============================LICENSE_END===========================================
19  */
20
21 package org.openecomp.dcae.apod.analytics.dmaap;
22
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.openecomp.dcae.apod.analytics.dmaap.domain.response.DMaaPMRPublisherResponse;
26 import org.openecomp.dcae.apod.analytics.dmaap.domain.response.DMaaPMRSubscriberResponse;
27 import org.openecomp.dcae.apod.analytics.dmaap.module.AnalyticsDMaaPTestModule;
28 import org.openecomp.dcae.apod.analytics.dmaap.service.publisher.DMaaPMRPublisher;
29 import org.openecomp.dcae.apod.analytics.dmaap.service.subscriber.DMaaPMRSubscriber;
30 import org.openecomp.dcae.apod.analytics.test.annotation.GuiceModules;
31
32 import static org.hamcrest.Matchers.is;
33 import static org.junit.Assert.assertThat;
34
35 /**
36  * @author Manjesh Gowda. Creation Date: 11/7/2016.
37  */
38 @GuiceModules(AnalyticsDMaaPTestModule.class)
39 public class DMaaPMRFactoryTest extends BaseAnalyticsDMaaPGuiceUnitTest {
40
41     private DMaaPMRFactory dmaapMRFactory;
42
43     @Before
44     public void setUp() throws Exception {
45         dmaapMRFactory = new DMaaPMRFactory(new AnalyticsDMaaPTestModule());
46     }
47
48     @Test
49     public void createPublisher() throws Exception {
50         DMaaPMRPublisher publisher = dmaapMRFactory.createPublisher(getPublisherConfig());
51         DMaaPMRPublisherResponse response = publisher.publish(null);
52         assertThat(response.getResponseCode(), is(102));
53     }
54
55     @Test
56     public void createSubscriber() throws Exception {
57         DMaaPMRSubscriber dmaapMRSubscriber = dmaapMRFactory.createSubscriber(getSubscriberConfig("", ""));
58         DMaaPMRSubscriberResponse response = dmaapMRSubscriber.fetchMessages();
59         assertThat(response.getResponseCode(), is(102));
60     }
61
62     @Test
63     public void create() throws Exception {
64
65     }
66
67 }