Add initial version of documentation
[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.oransc.portal.nonrtric.controlpanel.ControlpanelConstants;
33 import org.oransc.portal.nonrtric.controlpanel.ControlpanelUserManager;
34 import org.slf4j.Logger;
35 import org.slf4j.LoggerFactory;
36 import org.springframework.test.context.ActiveProfiles;
37
38 @ActiveProfiles("test")
39 public class ControlpanelUserManagerTest {
40
41     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
42
43     public static EcompUser createEcompUser(String loginId) {
44         EcompUser user = new EcompUser();
45         user.setActive(true);
46         user.setLoginId(loginId);
47         user.setFirstName("First");
48         user.setLastName("Last");
49         EcompRole role = new EcompRole();
50         role.setId(1L);
51         role.setName(ControlpanelConstants.ROLE_NAME_ADMIN);
52         Set<EcompRole> roles = new HashSet<>();
53         roles.add(role);
54         user.setRoles(roles);
55         return user;
56     }
57
58     @Test
59     public void testUserMgr() throws Exception {
60         final String loginId = "demo";
61         ControlpanelUserManager dum = new ControlpanelUserManager(true);
62         EcompUser user = createEcompUser(loginId);
63         dum.createUser(user);
64         logger.info("Created user {}", user);
65         try {
66             dum.createUser(user);
67             throw new Exception("Unexpected success");
68         } catch (PortalAPIException ex) {
69             logger.info("caught expected exception: {}", ex.toString());
70         }
71         Assert.assertFalse(dum.getUsers().isEmpty());
72         EcompUser fetched = dum.getUser(loginId);
73         Assert.assertEquals(fetched, user);
74         fetched.setLastName("Lastier");
75         dum.updateUser(loginId, fetched);
76         EcompUser missing = dum.getUser("foo");
77         Assert.assertNull(missing);
78         EcompUser unk = createEcompUser("unknown");
79         try {
80             dum.updateUser("unk", unk);
81         } catch (PortalAPIException ex) {
82             logger.info("caught expected exception: {}", ex.toString());
83         }
84     }
85
86 }