Add multi-layer RIC instance selector
[portal/ric-dashboard.git] / dashboard / webapp-backend / src / test / java / org / oransc / ric / portal / dashboard / config / AdminMockConfiguration.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.config;
21
22 import java.io.IOException;
23 import java.lang.invoke.MethodHandles;
24 import java.util.HashSet;
25 import java.util.Set;
26
27 import org.onap.portalsdk.core.onboarding.exception.PortalAPIException;
28 import org.onap.portalsdk.core.restful.domain.EcompRole;
29 import org.onap.portalsdk.core.restful.domain.EcompUser;
30 import org.oransc.ric.portal.dashboard.DashboardUserManager;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.beans.factory.annotation.Autowired;
34 import org.springframework.context.annotation.Bean;
35 import org.springframework.context.annotation.Configuration;
36 import org.springframework.context.annotation.Profile;
37
38 /**
39  * Creates a user manager with mock data.
40  */
41 @Configuration
42 @Profile("test")
43 public class AdminMockConfiguration {
44
45         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
46
47         @Autowired
48         public AdminMockConfiguration() {
49         }
50
51         @Bean
52         // The bean (method) name must be globally unique
53         public DashboardUserManager userManager() throws IOException, PortalAPIException {
54                 logger.debug("userManager: adding mock data");
55                 DashboardUserManager mgr = new DashboardUserManager(true);
56                 String[] firsts = { "John", "Alice", "Pierce", "Paul", "Jack" };
57                 String[] lasts = { "Doe", "Nolan", "King", "Smith", "Reacher" };
58                 String[] logins = { "jdoe", "anolan", "pking", "psmith", "jreacher" };
59                 boolean[] actives = { true, true, false, false, true };
60                 EcompRole role = new EcompRole();
61                 role.setName("view");
62                 Set<EcompRole> roles = new HashSet<>();
63                 roles.add(role);
64                 for (int i = 0; i < firsts.length; ++i) {
65                         EcompUser eu = new EcompUser();
66                         eu.setFirstName(firsts[i]);
67                         eu.setLastName(lasts[i]);
68                         eu.setLoginId(logins[i]);
69                         eu.setActive(actives[i]);
70                         eu.setRoles(roles);
71                         mgr.createUser(eu);
72                 }
73                 return mgr;
74         }
75
76 }