89af5263826e22c9c261198badb976acaf84d0b8
[portal.git] / ecomp-portal-BE-common / src / test / java / org / onap / portalapp / service / sessionmgt / SessionCommunicationTest.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software 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  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.onap.portalapp.service.sessionmgt;
39
40 import static org.junit.Assert.assertEquals;
41 import static org.junit.Assert.assertTrue;
42
43 import java.net.HttpURLConnection;
44 import java.net.URL;
45
46 import org.junit.Before;
47 import org.junit.Test;
48 import org.junit.runner.RunWith;
49 import org.mockito.InjectMocks;
50 import org.mockito.MockitoAnnotations;
51 import org.onap.portalapp.portal.transport.OnboardingApp;
52 import org.powermock.api.mockito.PowerMockito;
53 import org.powermock.core.classloader.annotations.PrepareForTest;
54 import org.powermock.modules.junit4.PowerMockRunner;
55
56 @RunWith(PowerMockRunner.class)
57 @PrepareForTest({URL.class, HttpURLConnection.class})
58 public class SessionCommunicationTest {
59         
60         @Before
61         public void setup() {
62                 MockitoAnnotations.initMocks(this);
63         }
64         
65         @InjectMocks
66         SessionCommunication sessionCommunication = new SessionCommunication();
67         
68         
69         @Test
70         public void sendGetConnectionRefusedTest() throws Exception {
71                 OnboardingApp app = new OnboardingApp();
72                 app.setRestrictedApp(false);
73                 app.setUebKey("test");
74                 app.setUebSecret("test");
75                 app.setUebTopicName("test");
76                 app.isCentralAuth = true;
77                 app.isEnabled = true;
78                 app.isOpen =false;
79                 app.name = "test";
80                 app.restUrl ="http://localhost:1234";
81                 app.username = "test";
82                 app.appPassword = "xyz";
83                 URL u = PowerMockito.mock(URL.class);
84                 HttpURLConnection huc = PowerMockito.mock(HttpURLConnection.class);
85                 String url = "http://localhost:1234/sessionTimeOuts";
86                 PowerMockito.whenNew(URL.class).withArguments(url).thenReturn(u);
87                 PowerMockito.whenNew(HttpURLConnection.class).withAnyArguments().thenReturn(huc);
88                 PowerMockito.when(huc.getResponseCode()).thenReturn(200);
89                 String actual = sessionCommunication.sendGet(app);
90                 assertEquals("", actual);
91         }
92         
93         @Test
94         public void pingSessionConnectionRefusedTest() throws Exception {
95                 OnboardingApp app = new OnboardingApp();
96                 app.setRestrictedApp(false);
97                 app.setUebKey("test");
98                 app.setUebSecret("test");
99                 app.setUebTopicName("test");
100                 app.isCentralAuth = true;
101                 app.isEnabled = true;
102                 app.isOpen =false;
103                 app.name = "test";
104                 app.restUrl ="http://localhost:1234";
105                 app.username = "test";
106                 app.appPassword = "xyz";
107                 URL u = PowerMockito.mock(URL.class);
108                 HttpURLConnection huc = PowerMockito.mock(HttpURLConnection.class);
109                 String url = "http://localhost:1234/sessionTimeOuts";
110                 PowerMockito.whenNew(URL.class).withArguments(url).thenReturn(u);
111                 PowerMockito.whenNew(HttpURLConnection.class).withAnyArguments().thenReturn(huc);
112                 PowerMockito.when(huc.getResponseCode()).thenReturn(200);
113                 Boolean actual = sessionCommunication.pingSession(app, "test");
114                 assertTrue(actual);
115         }
116         
117         
118         @Test
119         public void timeoutSessionConnectionRefusedTest() throws Exception {
120                 OnboardingApp app = new OnboardingApp();
121                 app.setRestrictedApp(false);
122                 app.setUebKey("test");
123                 app.setUebSecret("test");
124                 app.setUebTopicName("test");
125                 app.isCentralAuth = true;
126                 app.isEnabled = true;
127                 app.isOpen =false;
128                 app.name = "test";
129                 app.restUrl ="http://localhost:1234";
130                 app.username = "test";
131                 app.appPassword = "xyz";
132                 URL u = PowerMockito.mock(URL.class);
133                 HttpURLConnection huc = PowerMockito.mock(HttpURLConnection.class);
134                 String url = "http://localhost:1234/sessionTimeOuts";
135                 PowerMockito.whenNew(URL.class).withArguments(url).thenReturn(u);
136                 PowerMockito.whenNew(HttpURLConnection.class).withAnyArguments().thenReturn(huc);
137                 PowerMockito.when(huc.getResponseCode()).thenReturn(200);
138                 Boolean actual = sessionCommunication.timeoutSession(app, "test");
139                 assertTrue(actual);
140         }       
141 }