modify listeners to only start when props present
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / test / java / org / onap / appc / listener / TestAppcDmaapListenerActivator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.listener;
26
27 import static org.junit.Assert.assertNotNull;
28 import static org.junit.Assert.fail;
29
30 import java.io.IOException;
31 import java.io.InputStream;
32 import java.util.Properties;
33
34 import org.junit.Test;
35 import org.mockito.Mockito;
36
37 import static org.mockito.Mockito.doReturn;
38
39 import org.onap.appc.listener.AppcEventListenerActivator;
40
41 public class TestAppcDmaapListenerActivator {
42
43     @Test
44     public void testStartStopDefaultProperties() {
45         AppcEventListenerActivator appc = new AppcEventListenerActivator();
46         try {
47             appc.start(null);
48             Thread.sleep(1000);
49             appc.stop(null);
50         } catch (Exception e) {
51             e.printStackTrace();
52             fail(e.getMessage());
53         }
54         assertNotNull(appc.getName());
55     }
56     
57     @Test
58     public void testStartStopEmptyProperties() {
59         InputStream input = getClass().getResourceAsStream("/org/onap/appc/empty.properties");
60         Properties props = new Properties();
61          try {
62              props.load(input);
63          } catch (IOException e) {
64              e.printStackTrace();
65          }
66
67         AppcEventListenerActivator appc = new AppcEventListenerActivator();
68         AppcEventListenerActivator spyAppc = Mockito.spy(appc);
69         doReturn(props).when(spyAppc).getProperties();
70         
71         try {
72             spyAppc.start(null);
73             Thread.sleep(1000);
74             spyAppc.stop(null);
75         } catch (Exception e) {
76             e.printStackTrace();
77             fail(e.getMessage());
78         }
79         assertNotNull(spyAppc.getName());
80     }
81 }