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