added test cases in EPRoleTest.java
[portal.git] / ecomp-portal-BE-common / src / test / java / org / onap / portalapp / portal / domain / EPRoleTest.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *  Modifications Copyright © 2018 IBM.
8  * ================================================================================
9  *
10  * Unless otherwise specified, all software contained herein is licensed
11  * under the Apache License, Version 2.0 (the "License");
12  * you may not use this software except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *             http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  *
23  * Unless otherwise specified, all documentation contained herein is licensed
24  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25  * you may not use this documentation except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *             https://creativecommons.org/licenses/by/4.0/
29  *
30  * Unless required by applicable law or agreed to in writing, documentation
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  *
36  * ============LICENSE_END============================================
37  *
38  * 
39  */
40
41 package org.onap.portalapp.portal.domain;
42
43 import static org.junit.Assert.assertEquals;
44 import static org.junit.Assert.assertNotNull;
45
46 import java.util.SortedSet;
47 import java.util.TreeSet;
48
49 import org.junit.Test;
50 import org.onap.portalapp.portal.domain.EPRole;
51 import org.onap.portalsdk.core.domain.RoleFunction;
52 import org.onap.portalsdk.core.restful.domain.EcompRoleFunction;
53
54 public class EPRoleTest {
55
56     
57     @Test
58     public void testEpRole() {
59         EPRole role=new EPRole();
60         role.setActive(true);
61         role.setAppId(1l);
62         role.setAppRoleId(2l);
63         role.setId(3l);
64         role.setName("TEST_ADMIN");
65         SortedSet<EPRole> childRoles = new TreeSet<EPRole>();
66         EPRole child=new EPRole();
67         child.setActive(true);
68         child.setAppId(1l);
69         child.setAppRoleId(3l);
70         child.setId(6l);
71         child.setName("TEST_USER");
72         childRoles.add(child);
73         role.setChildRoles(childRoles);
74         SortedSet<EPRole> parentRoles = new TreeSet<EPRole>();
75         EPRole parent=new EPRole();
76         parent.setActive(true);
77         parent.setAppId(1l);
78         parent.setAppRoleId(3l);
79         parent.setId(6l);
80         parent.setName("TEST_USER");
81         parentRoles.add(parent);
82         role.setParentRoles(parentRoles);
83         
84         SortedSet<RoleFunction> rolefunction = new TreeSet<RoleFunction>();
85         RoleFunction function=new RoleFunction();
86         function.setAction("Test");;
87         function.setCode("code");
88         rolefunction.add(function);
89         role.setRoleFunctions(rolefunction);
90         role.setPriority(5);
91         role.setAppRoleId(3l);
92         assertEquals(3l, role.getAppRoleId().longValue());
93         assertNotNull(role.getChildRoles());
94         assertNotNull(role.getParentRoles());
95         assertNotNull(role.getRoleFunctions());
96         role.compareTo(role);
97         assertEquals(1l, role.getAppId().longValue());
98         assertEquals("TEST_ADMIN",role.getName());
99         role.removeChildRole(6l);
100         role.removeParentRole(6l);
101         assertEquals(role.toString(), "[Id = 3, name = TEST_ADMIN]");
102         role.removeRoleFunction("code");
103         role.addChildRole(child);
104         role.addParentRole(parent);
105         role.addRoleFunction(function);
106         
107         parent.setAppId(null);
108         child.setAppId((long) 1234);
109         assertEquals(parent.compareTo(child), -1);
110         
111         child.setAppId(null);
112         parent.setAppId((long) 1234);
113         assertEquals(parent.compareTo(child), 1);
114         
115         
116         
117     }
118     
119 }
120