Initial TCA commit into DCAEGEN2
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-tca / src / test / java / org / openecomp / dcae / apod / analytics / cdap / tca / worker / TCADMaaPPublisherWorkerTest.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.tca.worker;
22
23 import co.cask.cdap.api.worker.WorkerConfigurer;
24 import co.cask.cdap.api.worker.WorkerContext;
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.openecomp.dcae.apod.analytics.cdap.common.CDAPComponentsConstants;
28 import org.openecomp.dcae.apod.analytics.cdap.common.exception.CDAPSettingsException;
29 import org.openecomp.dcae.apod.analytics.cdap.tca.BaseAnalyticsCDAPTCAUnitTest;
30
31 import static org.mockito.ArgumentMatchers.anyString;
32 import static org.mockito.ArgumentMatchers.eq;
33 import static org.mockito.Mockito.doNothing;
34 import static org.mockito.Mockito.mock;
35 import static org.mockito.Mockito.times;
36 import static org.mockito.Mockito.verify;
37 import static org.mockito.Mockito.when;
38
39 /**
40  * @author Rajiv Singla . Creation Date: 12/20/2016.
41  */
42 public class TCADMaaPPublisherWorkerTest extends BaseAnalyticsCDAPTCAUnitTest {
43
44     private static final String VES_ALERTS_TABLE_NAME = "vesAlertsTable";
45
46     private WorkerConfigurer workerConfigurer;
47     private WorkerContext workerContext;
48     private TCADMaaPPublisherWorker publisherWorker;
49
50     @Before
51     public void before() throws Exception {
52         workerConfigurer = mock(WorkerConfigurer.class);
53         workerContext = mock(WorkerContext.class);
54         doNothing().when(workerConfigurer).setName(anyString());
55         doNothing().when(workerConfigurer).setDescription(anyString());
56         publisherWorker = new TCADMaaPPublisherWorker(VES_ALERTS_TABLE_NAME);
57
58     }
59
60     @Test
61     public void testConfigure() throws Exception {
62         publisherWorker.configure(workerConfigurer);
63         verify(workerConfigurer, times(1))
64                 .setName(eq(CDAPComponentsConstants.TCA_FIXED_DMAAP_PUBLISHER_WORKER));
65         verify(workerConfigurer, times(1))
66                 .setDescription(eq(CDAPComponentsConstants.TCA_FIXED_DMAAP_PUBLISHER_DESCRIPTION_WORKER));
67     }
68
69     @Test(expected = CDAPSettingsException.class)
70     public void testInitializeWhenSettingsHaveErrors() throws Exception {
71         publisherWorker.initialize(workerContext);
72     }
73
74     @Test
75     public void testInitializeWhenSettingsAreValid() throws Exception {
76         when(workerContext.getRuntimeArguments()).thenReturn(getPreferenceMap());
77         publisherWorker.initialize(workerContext);
78     }
79
80 }