Frontend EI Coordinator
[portal/nonrtric-controlpanel.git] / webapp-backend / src / test / java / org / oransc / portal / nonrtric / controlpanel / ControlPanelUserManagerTest.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
6  * Modifications Copyright (C) 2020 Nordix Foundation
7  * %%
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ========================LICENSE_END===================================
20  */
21 package org.oransc.portal.nonrtric.controlpanel;
22
23 import java.lang.invoke.MethodHandles;
24 import java.util.HashSet;
25 import java.util.Set;
26
27 import org.junit.Assert;
28 import org.junit.jupiter.api.Test;
29 import org.onap.portalsdk.core.onboarding.exception.PortalAPIException;
30 import org.onap.portalsdk.core.restful.domain.EcompRole;
31 import org.onap.portalsdk.core.restful.domain.EcompUser;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34
35 class ControlPanelUserManagerTest {
36
37     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
38
39     public static EcompUser createEcompUser(String loginId) {
40         EcompUser user = new EcompUser();
41         user.setActive(true);
42         user.setLoginId(loginId);
43         user.setFirstName("First");
44         user.setLastName("Last");
45         EcompRole role = new EcompRole();
46         role.setId(1L);
47         role.setName(ControlPanelConstants.ROLE_NAME_ADMIN);
48         Set<EcompRole> roles = new HashSet<>();
49         roles.add(role);
50         user.setRoles(roles);
51         return user;
52     }
53
54     @Test
55     void testUserMgr() throws Exception {
56         final String loginId = "demo";
57         ControlPanelUserManager dum = new ControlPanelUserManager(true);
58         EcompUser user = createEcompUser(loginId);
59         dum.createUser(user);
60         logger.info("Created user {}", user);
61         try {
62             dum.createUser(user);
63             throw new Exception("Unexpected success");
64         } catch (PortalAPIException ex) {
65             logger.info("caught expected exception: {}", ex.toString());
66         }
67         Assert.assertFalse(dum.getUsers().isEmpty());
68         EcompUser fetched = dum.getUser(loginId);
69         Assert.assertEquals(fetched, user);
70         fetched.setLastName("Lastier");
71         dum.updateUser(loginId, fetched);
72         EcompUser missing = dum.getUser("foo");
73         Assert.assertNull(missing);
74         EcompUser unk = createEcompUser("unknown");
75         try {
76             dum.updateUser("unk", unk);
77         } catch (PortalAPIException ex) {
78             logger.info("caught expected exception: {}", ex.toString());
79         }
80     }
81
82 }