d2221ea42832e3658e4331067b89aba12a0f3e3a
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-plugins / src / test / java / org / openecomp / dcae / apod / analytics / cdap / plugins / streaming / dmaap / MockDMaaPMRReceiverTest.java
1 /*\r
2  * ===============================LICENSE_START======================================\r
3  *  dcae-analytics\r
4  * ================================================================================\r
5  *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  *  Licensed under the Apache License, Version 2.0 (the "License");\r
8  *  you may not use this file except in compliance with the License.\r
9  *   You may obtain a copy of the License at\r
10  *\r
11  *          http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  *  Unless required by applicable law or agreed to in writing, software\r
14  *  distributed under the License is distributed on an "AS IS" BASIS,\r
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  *  See the License for the specific language governing permissions and\r
17  *  limitations under the License.\r
18  *  ============================LICENSE_END===========================================\r
19  */\r
20 \r
21 package org.openecomp.dcae.apod.analytics.cdap.plugins.streaming.dmaap;\r
22 \r
23 import co.cask.cdap.api.data.format.StructuredRecord;\r
24 import org.apache.spark.storage.StorageLevel;\r
25 import org.junit.Test;\r
26 import org.openecomp.dcae.apod.analytics.cdap.plugins.BaseAnalyticsCDAPPluginsUnitTest;\r
27 import org.openecomp.dcae.apod.analytics.cdap.plugins.domain.config.dmaap.DMaaPMRSourcePluginConfig;\r
28 import org.openecomp.dcae.apod.analytics.cdap.plugins.domain.config.dmaap.TestDMaaPMRSourcePluginConfig;\r
29 import org.openecomp.dcae.apod.analytics.cdap.plugins.domain.schema.dmaap.DMaaPSourceOutputSchema;\r
30 \r
31 import java.util.concurrent.TimeUnit;\r
32 \r
33 /**\r
34  * @author Rajiv Singla . Creation Date: 2/20/2017.\r
35  */\r
36 public class MockDMaaPMRReceiverTest extends BaseAnalyticsCDAPPluginsUnitTest {\r
37 \r
38     protected class TestMockDMaaPMRReceiverTest extends MockDMaaPMRReceiver {\r
39 \r
40         private boolean canStop = false;\r
41 \r
42         public TestMockDMaaPMRReceiverTest(StorageLevel storageLevel, DMaaPMRSourcePluginConfig pluginConfig) {\r
43             super(storageLevel, pluginConfig);\r
44         }\r
45 \r
46         @Override\r
47         public boolean isStopped() {\r
48             return canStop;\r
49         }\r
50 \r
51         @Override\r
52         public void store(StructuredRecord dataItem) {\r
53             LOG.debug("Mocking storing dataItem - {}",\r
54                     dataItem.get(DMaaPSourceOutputSchema.FETCHED_MESSAGE.getSchemaColumnName()));\r
55         }\r
56 \r
57         public void setCanStop(boolean canStop) {\r
58             this.canStop = canStop;\r
59         }\r
60     }\r
61 \r
62     @Test\r
63     public void testStoreStructuredRecords() throws Exception {\r
64         final TestDMaaPMRSourcePluginConfig testDMaaPMRSourcePluginConfig = getTestDMaaPMRSourcePluginConfig();\r
65         testDMaaPMRSourcePluginConfig.setPollingInterval(100);\r
66         final TestMockDMaaPMRReceiverTest mockDMaaPMRReceiver = new TestMockDMaaPMRReceiverTest(StorageLevel\r
67                 .MEMORY_ONLY(),\r
68                 testDMaaPMRSourcePluginConfig);\r
69         new Thread(new Runnable() {\r
70             @Override\r
71             public void run() {\r
72                 mockDMaaPMRReceiver.storeStructuredRecords(null);\r
73             }\r
74         }).start();\r
75         TimeUnit.MILLISECONDS.sleep(1000);\r
76         LOG.info("Killing Mock Subscriber after 1 ms");\r
77         mockDMaaPMRReceiver.setCanStop(true);\r
78 \r
79     }\r
80 \r
81 }\r