183c90d3c5d67af422ace2a54624b049fae73c69
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-plugins / src / test / java / org / openecomp / dcae / apod / analytics / cdap / plugins / streaming / dmaap / MockDMaaPMRReceiverTest.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.cdap.plugins.streaming.dmaap;
22
23 import co.cask.cdap.api.data.format.StructuredRecord;
24 import org.apache.spark.storage.StorageLevel;
25 import org.junit.Test;
26 import org.openecomp.dcae.apod.analytics.cdap.plugins.BaseAnalyticsCDAPPluginsUnitTest;
27 import org.openecomp.dcae.apod.analytics.cdap.plugins.domain.config.dmaap.DMaaPMRSourcePluginConfig;
28 import org.openecomp.dcae.apod.analytics.cdap.plugins.domain.config.dmaap.TestDMaaPMRSourcePluginConfig;
29 import org.openecomp.dcae.apod.analytics.cdap.plugins.domain.schema.dmaap.DMaaPSourceOutputSchema;
30
31 import java.util.concurrent.TimeUnit;
32
33 /**
34  * @author Rajiv Singla . Creation Date: 2/20/2017.
35  */
36 public class MockDMaaPMRReceiverTest extends BaseAnalyticsCDAPPluginsUnitTest {
37
38     protected class TestMockDMaaPMRReceiverTest extends MockDMaaPMRReceiver {
39
40         private boolean canStop = false;
41
42         public TestMockDMaaPMRReceiverTest(StorageLevel storageLevel, DMaaPMRSourcePluginConfig pluginConfig) {
43             super(storageLevel, pluginConfig);
44         }
45
46         @Override
47         public boolean isStopped() {
48             return canStop;
49         }
50
51         @Override
52         public void store(StructuredRecord dataItem) {
53             LOG.debug("Mocking storing dataItem - {}",
54                     dataItem.get(DMaaPSourceOutputSchema.FETCHED_MESSAGE.getSchemaColumnName()));
55         }
56
57         public void setCanStop(boolean canStop) {
58             this.canStop = canStop;
59         }
60     }
61
62     @Test
63     public void testStoreStructuredRecords() throws Exception {
64         final TestDMaaPMRSourcePluginConfig testDMaaPMRSourcePluginConfig = getTestDMaaPMRSourcePluginConfig();
65         testDMaaPMRSourcePluginConfig.setPollingInterval(100);
66         final TestMockDMaaPMRReceiverTest mockDMaaPMRReceiver = new TestMockDMaaPMRReceiverTest(StorageLevel
67                 .MEMORY_ONLY(),
68                 testDMaaPMRSourcePluginConfig);
69         new Thread(new Runnable() {
70             @Override
71             public void run() {
72                 mockDMaaPMRReceiver.storeStructuredRecords(null);
73             }
74         }).start();
75         TimeUnit.MILLISECONDS.sleep(1000);
76         LOG.info("Killing Mock Subscriber after 1 ms");
77         mockDMaaPMRReceiver.setCanStop(true);
78
79     }
80
81 }