3cc6762f3703eb9d565eb9418aea91ceba275e5b
[portal.git] / ecomp-portal-BE-common / src / test / java / org / onap / portalapp / portal / service / EPLeftMenuServiceImplTest.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.portal.service;
39
40 import static org.junit.Assert.assertNotEquals;
41
42 import java.util.ArrayList;
43 import java.util.HashMap;
44 import java.util.List;
45 import java.util.Map;
46 import java.util.Set;
47 import java.util.TreeSet;
48
49 import org.json.JSONObject;
50 import org.junit.Before;
51 import org.junit.Test;
52 import org.mockito.InjectMocks;
53 import org.mockito.Matchers;
54 import org.mockito.Mock;
55 import org.mockito.Mockito;
56 import org.mockito.MockitoAnnotations;
57 import org.onap.portalapp.portal.core.MockEPUser;
58 import org.onap.portalapp.portal.domain.CentralizedApp;
59 import org.onap.portalapp.portal.domain.EPUser;
60 import org.onap.portalsdk.core.domain.MenuData;
61 import org.onap.portalsdk.core.service.DataAccessService;
62 import org.onap.portalsdk.core.service.DataAccessServiceImpl;
63
64 public class EPLeftMenuServiceImplTest {
65
66         @Mock
67         DataAccessService dataAccessService = new DataAccessServiceImpl();
68         
69         @Mock
70         ExternalAccessRolesServiceImpl externalAccessRolesServiceImpl = new ExternalAccessRolesServiceImpl();
71
72         @Before
73         public void setup() {
74                 MockitoAnnotations.initMocks(this);
75         }
76         
77         @InjectMocks
78         EPLeftMenuServiceImpl epLeftMenuServiceImpl = new EPLeftMenuServiceImpl();
79         
80         
81         MockEPUser mockUser = new MockEPUser();
82         
83         @Test
84         public void getLeftMenuItemsTest() {
85                 EPUser user = mockUser.mockEPUser();
86                 Set<MenuData> fullMenuSet = new TreeSet<>();
87                 MenuData menuData =  new MenuData();
88                 menuData.setAction("test");
89                 menuData.setFunctionCd("test_1");
90                 menuData.setActive(true);
91                 menuData.setExternalUrl("test");
92                 menuData.setId(1l);
93                 menuData.setMenuSetCode("test");
94                 menuData.setSortOrder((short) 1);
95                 menuData.setSeparator(true);
96                 fullMenuSet.add(menuData);
97                 Set<String> roleFunctionSet = new TreeSet<>();
98                 roleFunctionSet.add("test");
99                 roleFunctionSet.add("test2");
100                 Map<String, String> params = new HashMap<>();
101                 params.put("userId", user.getOrgUserId());
102                 List<CentralizedApp> applicationsList = new ArrayList<>();
103                 List<CentralizedApp> applicationsList2 = new ArrayList<>();
104                 CentralizedApp centralizedApp = new CentralizedApp();
105                 centralizedApp.setAppId(1);
106                 centralizedApp.setAppName("test");
107                 applicationsList.add(centralizedApp);
108                 applicationsList2.add(centralizedApp);
109                 Mockito.when(dataAccessService.executeNamedQuery(Matchers.anyString(), Matchers.anyMap(), Matchers.anyMap())).thenReturn(applicationsList);
110                 Mockito.when(externalAccessRolesServiceImpl.getCentralizedAppsOfUser(Matchers.anyString())).thenReturn(applicationsList2);
111                 String actual = epLeftMenuServiceImpl.getLeftMenuItems(user, fullMenuSet, roleFunctionSet);
112                 JSONObject notExpected = new JSONObject();
113                 assertNotEquals(notExpected.toString(), actual);
114         }
115
116
117 }