2  * ============LICENSE_START==========================================
 
   4  * ===================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 
   6  * ===================================================================
 
   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
 
  13  *             http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  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
 
  26  *             https://creativecommons.org/licenses/by/4.0/
 
  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.
 
  34  * ============LICENSE_END============================================
 
  36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  38 package org.onap.portalapp.service.sessionmgt;
 
  40 import static org.junit.Assert.assertEquals;
 
  41 import static org.junit.Assert.assertTrue;
 
  43 import java.net.HttpURLConnection;
 
  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;
 
  56 @RunWith(PowerMockRunner.class)
 
  57 @PrepareForTest({URL.class, HttpURLConnection.class})
 
  58 public class SessionCommunicationTest {
 
  62                 MockitoAnnotations.initMocks(this);
 
  66         SessionCommunication sessionCommunication = new SessionCommunication();
 
  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;
 
  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);
 
  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;
 
 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");
 
 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;
 
 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");