68887740c0e0fd1606397bd7f7af259b1a9ec09e
[portal/ric-dashboard.git] / dashboard / webapp-backend / src / test / java / org / oransc / ric / portal / dashboard / DashboardUserManagerTest.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 package org.oransc.ric.portal.dashboard;
21
22 import java.lang.invoke.MethodHandles;
23 import java.util.HashSet;
24 import java.util.Set;
25
26 import org.junit.Assert;
27 import org.junit.jupiter.api.Assertions;
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 DashboardUserManagerTest {
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(DashboardConstants.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                 DashboardUserManager dum = new DashboardUserManager(true);
60                 EcompUser user = createEcompUser(loginId);
61                 dum.createUser(user);
62                 logger.info("Created user {}", user);
63                 Assertions.assertThrows(PortalAPIException.class, () -> {
64                         dum.createUser(user);
65                 });
66                 Assert.assertFalse(dum.getUsers().isEmpty());
67                 EcompUser fetched = dum.getUser(loginId);
68                 Assert.assertEquals(fetched, user);
69                 fetched.setLastName("Lastier");
70                 dum.updateUser(loginId, fetched);
71                 EcompUser missing = dum.getUser("foo");
72                 Assert.assertNull(missing);
73                 EcompUser unk = createEcompUser("unknown");
74                 Assertions.assertThrows(PortalAPIException.class, () -> {
75                         dum.updateUser("unk", unk);
76                 });
77         }
78
79 }