Fix: Update Sonar needed parameters
[oam/tr069-adapter.git] / acs / application-booter / src / test / java / org / commscope / tr069adapter / acs / cpe / test / acsnbi / InformForwarderTest.java
1 /*\r
2  * ============LICENSE_START========================================================================\r
3  * ONAP : tr-069-adapter\r
4  * =================================================================================================\r
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
6  * =================================================================================================\r
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
9  * may obtain a copy of the License at\r
10  *\r
11  * http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
14  * either express or implied. See the License for the specific language governing permissions and\r
15  * limitations under the License.\r
16  * ===============LICENSE_END=======================================================================\r
17  */\r
18 \r
19 package org.commscope.tr069adapter.acs.cpe.test.acsnbi;\r
20 \r
21 import static org.junit.Assert.assertTrue;\r
22 import static org.junit.Assert.fail;\r
23 \r
24 import java.util.ArrayList;\r
25 import java.util.List;\r
26 \r
27 import org.apache.activemq.broker.BrokerService;\r
28 import org.commscope.tr069adapter.acs.booter.ACSServiceBooter;\r
29 import org.commscope.tr069adapter.acs.common.DeviceInform;\r
30 import org.commscope.tr069adapter.acs.common.InformType;\r
31 import org.commscope.tr069adapter.acs.common.dto.TR069DeviceDetails;\r
32 import org.commscope.tr069adapter.acs.common.dto.TR069InformType;\r
33 import org.commscope.tr069adapter.acs.nbi.impl.DeviceInformForwarder;\r
34 import org.commscope.tr069adapter.acs.nbi.util.MapperSrvcDependencyConfig;\r
35 import org.junit.After;\r
36 import org.junit.Test;\r
37 import org.junit.runner.RunWith;\r
38 import org.mockito.Mockito;\r
39 import org.springframework.beans.factory.annotation.Autowired;\r
40 import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;\r
41 import org.springframework.boot.test.context.SpringBootTest;\r
42 import org.springframework.boot.test.mock.mockito.MockBean;\r
43 import org.springframework.test.context.ContextConfiguration;\r
44 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;\r
45 import org.springframework.web.client.RestTemplate;\r
46 \r
47 @SpringBootTest(classes = {ACSServiceBooter.class})\r
48 @RunWith(SpringJUnit4ClassRunner.class)\r
49 @AutoConfigureMockMvc\r
50 @ContextConfiguration\r
51 public class InformForwarderTest {\r
52 \r
53   @MockBean\r
54   MapperSrvcDependencyConfig mapperSrvcDependencyConfig;\r
55 \r
56   @MockBean\r
57   RestTemplate restTemplate;\r
58 \r
59   @Autowired\r
60   private DeviceInformForwarder deviceInformForwarder;\r
61 \r
62   @Autowired\r
63   BrokerService broker;\r
64 \r
65   @Test\r
66   public void processInformPnPTest() throws Exception {\r
67 \r
68     try {\r
69 \r
70       Mockito.when(restTemplate.postForEntity(Mockito.anyString(), Mockito.any(DeviceInform.class),\r
71           Mockito.any(Class.class))).thenReturn(null);\r
72 \r
73       TR069DeviceDetails tr069DeviceDetails = new TR069DeviceDetails();\r
74       tr069DeviceDetails.setDeviceId("0005B9519095");\r
75       DeviceInform inform = new DeviceInform();\r
76       inform.setDeviceDetails(tr069DeviceDetails);\r
77       List<InformType> informTypeList = new ArrayList<InformType>();\r
78       informTypeList.add(TR069InformType.BOOTSTRAP);\r
79       inform.setInformTypeList(informTypeList);\r
80       deviceInformForwarder.onMessage(inform);\r
81       assertTrue(true);\r
82     } catch (Exception e) {\r
83       fail(e.getMessage());\r
84     }\r
85   }\r
86 \r
87   @After\r
88   public void stopBroker() throws Exception {\r
89     try {\r
90       System.out.println("Tearing down the broker");\r
91       broker.stop();\r
92       broker.waitUntilStopped();\r
93       broker = null;\r
94     } catch (Exception e) {\r
95       e.printStackTrace();\r
96     }\r
97   }\r
98 \r
99 }\r