9b829000498394fb0417b0fd6515ed4b8e61f05e
[appc.git] / appc-dg / appc-dg-shared / appc-dg-common / src / test / java / org / openecomp / appc / dg / common / impl / DCAEReporterPluginImplTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.dg.common.impl;
23
24 import org.junit.*;
25 import org.junit.runner.RunWith;
26 import org.mockito.*;
27 import org.openecomp.appc.adapter.dmaap.EventSender;
28 import org.openecomp.appc.adapter.dmaap.DmaapDestination;
29 import org.openecomp.appc.adapter.dmaap.event.EventMessage;
30 import org.openecomp.appc.dg.common.impl.Constants;
31 import org.openecomp.appc.dg.common.impl.DCAEReporterPluginImpl;
32 import org.openecomp.appc.exceptions.APPCException;
33 import org.openecomp.sdnc.sli.SvcLogicContext;
34 import org.osgi.framework.Bundle;
35 import org.osgi.framework.BundleContext;
36 import org.osgi.framework.FrameworkUtil;
37 import org.osgi.framework.ServiceReference;
38 import org.powermock.api.mockito.PowerMockito;
39 import org.powermock.core.classloader.annotations.PrepareForTest;
40 import org.powermock.modules.junit4.PowerMockRunner;
41 import java.util.HashMap;
42 import java.util.Map;
43
44
45 @RunWith(PowerMockRunner.class)
46 @PrepareForTest({DCAEReporterPluginImpl.class, FrameworkUtil.class})
47 public class DCAEReporterPluginImplTest {
48     private SvcLogicContext ctx;
49     private Map<String, String> params;
50
51     private final BundleContext bundleContext=Mockito.mock(BundleContext.class);
52     private final Bundle bundleService=Mockito.mock(Bundle.class);
53     private final ServiceReference sref=Mockito.mock(ServiceReference.class);
54
55
56     private DCAEReporterPluginImpl dcaeReporterPlugin;
57     private EventSenderMock eventSender;
58
59     private String apiVer = "2.0.0";
60     private String requestId = "123";
61     private String error = "test-error";
62
63     @Before
64     public void setUp() throws NoSuchFieldException, IllegalAccessException {
65         eventSender = new EventSenderMock();
66         PowerMockito.mockStatic(FrameworkUtil.class);
67         PowerMockito.when(FrameworkUtil.getBundle(Matchers.any(Class.class))).thenReturn(bundleService);
68         PowerMockito.when(bundleService.getBundleContext()).thenReturn(bundleContext);
69         PowerMockito.when(bundleContext.getServiceReference(Matchers.any(Class.class))).thenReturn(sref);
70         PowerMockito.when(bundleContext.getService(sref)).thenReturn(eventSender);
71         dcaeReporterPlugin = new DCAEReporterPluginImpl();
72
73     }
74
75
76
77
78     @Test
79     public void testReportBwcTrue() throws Exception {
80
81         ctx = new SvcLogicContext();
82         params = new HashMap<>();
83         ctx.setAttribute("isBwcMode", "true");
84         params.put(Constants.DG_ERROR_FIELD_NAME, error);
85         ctx.setAttribute(Constants.API_VERSION_FIELD_NAME, apiVer);
86         ctx.setAttribute(Constants.REQ_ID_FIELD_NAME, requestId);
87
88             positiveAssert();
89     }
90
91     @Test
92     public void testReportErrorDescriptionNullBwcModeTrue() throws Exception {
93
94         ctx = new SvcLogicContext();
95         params = new HashMap<>();
96         ctx.setAttribute("isBwcMode", "true");
97         params.put(Constants.DG_ERROR_FIELD_NAME, null);
98         ctx.setAttribute(Constants.API_VERSION_FIELD_NAME, apiVer);
99         ctx.setAttribute(Constants.REQ_ID_FIELD_NAME, requestId);
100
101         errorReasonNullAssert();
102     }
103
104     @Test
105     public void testReportErrorDescriptionNullBwcModeFalse() throws Exception {
106
107         ctx = new SvcLogicContext();
108         params = new HashMap<>();
109         ctx.setAttribute("isBwcMode", "false");
110         params.put("output.status.message", null);
111         ctx.setAttribute("input.common-header.api-ver", apiVer);
112         ctx.setAttribute("input.common-header.request-id", requestId);
113
114         errorReasonNullAssert();
115     }
116
117
118     private void errorReasonNullAssert() throws APPCException {
119         dcaeReporterPlugin.report(params, ctx);
120         DmaapDestination destination = eventSender.getDestination();
121         EventMessage msg = eventSender.getMsg();
122         Assert.assertEquals("wrong API version", apiVer, msg.getEventHeader().getApiVer());
123         Assert.assertEquals("wrong requestId", requestId, msg.getEventHeader().getEventId());
124         Assert.assertEquals("wrong error message", "Unknown", msg.getEventStatus().getReason());
125         Assert.assertEquals("wrong destination", destination.name(), "DCAE");
126
127     }
128
129
130     private void positiveAssert() throws APPCException {
131         dcaeReporterPlugin.report(params, ctx);
132         DmaapDestination destination = eventSender.getDestination();
133         EventMessage msg = eventSender.getMsg();
134         Assert.assertEquals("wrong API version", apiVer, msg.getEventHeader().getApiVer());
135         Assert.assertEquals("wrong requestId", requestId, msg.getEventHeader().getEventId());
136         Assert.assertEquals("wrong error message", error, msg.getEventStatus().getReason());
137         Assert.assertEquals("wrong destination", destination.name(), "DCAE");
138
139     }
140
141
142     @Test
143             public void testReportBwcFalse() throws Exception {
144                 ctx = new SvcLogicContext();
145                 params = new HashMap<>();
146                 ctx.setAttribute("isBwcMode", "false");
147                 params.put("output.status.message", error);
148                 ctx.setAttribute("input.common-header.api-ver", apiVer);
149                 ctx.setAttribute("input.common-header.request-id", requestId);
150
151                 positiveAssert();
152
153             }
154         }