summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/WidgetsCatalogControllerTest.java
blob: 4087a5997697b20555b68bb75d2c4aca04b4b2de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
//package org.openecomp.portalapp.portal.controller;
//
//import javax.servlet.http.HttpServletRequest;
//import javax.servlet.http.HttpServletResponse;
//
//import org.junit.Before;
//import org.junit.runner.RunWith;
//import org.mockito.InjectMocks;
//import org.mockito.Mock;
//import org.mockito.MockitoAnnotations;
//import org.openecomp.portalapp.portal.core.MockEPUser;
//import org.openecomp.portalapp.portal.framework.MockitoTestSuite;
//import org.openecomp.portalapp.portal.service.ConsulHealthService;
//import org.openecomp.portalapp.portal.service.ConsulHealthServiceImpl;
//import org.openecomp.portalapp.portal.service.MicroserviceService;
//import org.openecomp.portalapp.portal.service.MicroserviceServiceImpl;
//import org.openecomp.portalapp.portal.service.WidgetParameterService;
//import org.openecomp.portalapp.portal.service.WidgetParameterServiceImpl;
//import org.openecomp.portalapp.util.EPUserUtils;
//import org.powermock.core.classloader.annotations.PrepareForTest;
//import org.powermock.modules.junit4.PowerMockRunner;
//
//@RunWith(PowerMockRunner.class)
//@PrepareForTest({EPUserUtils.class})
//public class WidgetsCatalogControllerTest {
//
//	@Mock
//	ConsulHealthService consulHealthService = new ConsulHealthServiceImpl();
//	
//	@Mock
//	MicroserviceService microserviceService = new MicroserviceServiceImpl();
//	
//	@Mock
//	WidgetParameterService widgetParameterService = new WidgetParameterServiceImpl();
//	
//	@InjectMocks
//	WidgetsCatalogController widgetsCatalogController = new WidgetsCatalogController();
//
//	@Before
//	public void setup() {
//		MockitoAnnotations.initMocks(this);
//	}
//
//	MockitoTestSuite mockitoTestSuite = new MockitoTestSuite();
//
//	HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest();
//	HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse();
//
//	NullPointerException nullPointerException = new NullPointerException();
//	
//	MockEPUser mockUser = new MockEPUser();
//	
//	/*public List<WidgetCatalog> getUserWidgetCatalog(HttpServletRequest request, HttpServletResponse response,
//			@PathVariable("loginName") String loginName) throws RestClientException, Exception {
//		List<WidgetCatalog> widgets = new ArrayList<>();
//		try {
//			CustomLoggingFilter d;
//			ResponseEntity<ArrayList> ans = template.exchange(
//					EcompPortalUtils.widgetMsProtocol() + "://" + consulHealthService.getServiceLocation(whatService,
//							SystemProperties.getProperty("microservices.widget.local.port"))
//							+ "/widget/microservices/widgetCatalog/" + loginName,
//					HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), ArrayList.class);
//			widgets = ans.getBody();
//		} catch (Exception e) {
//			logger.error(EELFLoggerDelegate.errorLogger, "getUserWidgetCatalog failed", e);
//			// returning null because null help check on the UI if there was a
//			// communication problem with Microservice.
//			return null;
//		}
//		return widgets;
//	}
//	
//	@Test
//	public void getWidgetDataTest(){
//		
//		String resourceType = null;
//		List<WidgetCatalog> expectedData = new ArrayList<WidgetCatalog>();
//		expectedData.setStatus(PortalRestStatusEnum.ERROR);
//		expectedData.setMessage("Unexpected resource type null");
//		expectedData.setResponse(null);
//		
//		PortalRestResponse<CommonWidgetMeta> actualResponse = 	dashboardController.getWidgetData(mockedRequest, resourceType);
//		assertEquals(expectedData,actualResponse);	
//		
//		
//	}*/
//}