2b6c68a67c4a005b4a6a07b0283f4d7a794aa88f
[dcaegen2/analytics/tca.git] / dcae-analytics-dmaap / src / test / java / org / openecomp / dcae / apod / analytics / dmaap / it / DMaaPMRPublisherImplIT.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.it;
22
23 import org.junit.Assert;
24 import org.junit.Before;
25 import org.junit.Ignore;
26 import org.junit.Test;
27 import org.openecomp.dcae.apod.analytics.dmaap.DMaaPMRFactory;
28 import org.openecomp.dcae.apod.analytics.dmaap.domain.response.DMaaPMRPublisherResponse;
29 import org.openecomp.dcae.apod.analytics.dmaap.service.publisher.DMaaPMRPublisher;
30
31 /**
32  * @author Rajiv Singla . Creation Date: 10/13/2016.
33  */
34 @Ignore
35 public class DMaaPMRPublisherImplIT extends BaseAnalyticsDMaaPIT {
36
37     private DMaaPMRPublisher dMaaPMRPublisher;
38
39     @Before
40     public void before() throws Exception {
41         DMaaPMRFactory dMaaPMRFactory = DMaaPMRFactory.create();
42         dMaaPMRPublisher = dMaaPMRFactory.createPublisher(getPublisherConfig());
43     }
44
45     @Test
46     public void testPublish() throws Exception {
47         long pendingMessageCount = publishTwoSampleMessages(dMaaPMRPublisher).getPendingMessagesCount();
48         Assert.assertTrue("Published Message Count must be 2", pendingMessageCount == 2);
49     }
50
51     @Test
52     public void testFlush() throws Exception {
53         publishTwoSampleMessages(dMaaPMRPublisher);
54         DMaaPMRPublisherResponse publisherResponse = dMaaPMRPublisher.flush();
55         Integer responseCode = publisherResponse.getResponseCode();
56         Assert.assertTrue("Server Response code must be 200", responseCode == 200);
57     }
58 }