557f544487b956a3efc730cc456874f013a426e0
[portal/sdk.git] /
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal SDK
4  * ===================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  * Modifications Copyright (C) 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 package org.onap.portalsdk.external.authorization.domain;
41
42 import static org.junit.Assert.assertEquals;
43 import static org.junit.Assert.assertTrue;
44
45 import java.util.ArrayList;
46 import java.util.List;
47
48 import org.junit.Before;
49 import org.junit.Test;
50
51 public class ExternalAccessRoleTest {
52     
53     private ExternalAccessRole mockRole;
54     private ExternalAccessRole role;
55     private ExternalAccessRole role1;
56
57     public ExternalAccessRole mockExternalAccessRoleTest() {
58         ExternalAccessRole mockRole = new ExternalAccessRole();
59         ExternalAccessRoleDescription roleDesc =  new ExternalAccessRoleDescription();
60         ExternalAccessPerms ecPerm =  new ExternalAccessPerms();
61         List<ExternalAccessPerms> ecPerms = new ArrayList<>();
62         ecPerm.setAction("test_action");
63         ecPerm.setType("test_type");
64         ecPerm.setInstance("test_instance");
65         ecPerm.setDescription("test_description");
66         roleDesc.setActive("true");
67         roleDesc.setAppId("1");
68         mockRole.setName("test_role");
69         mockRole.setPerms(ecPerms);
70         mockRole.setDescription(roleDesc);
71         return mockRole;
72     }
73     
74     @Before
75     public void setUp()
76     {
77         mockRole = mockExternalAccessRoleTest();
78         role = new ExternalAccessRole(mockRole.getName(), mockRole.getPerms(), mockRole.getDescription());
79         role1= new ExternalAccessRole(mockRole.getName(), mockRole.getPerms(), mockRole.getDescription());;
80     }
81
82     @Test
83     public void externalAccessRolePermsTest() {
84         
85         assertEquals(role.getName(), mockExternalAccessRoleTest().getName());
86         assertEquals(role.getPerms(), mockExternalAccessRoleTest().getPerms());
87         assertEquals(role.getDescription(), mockExternalAccessRoleTest().getDescription());
88     }
89     
90     @Test
91     public void testEquals() {
92         
93         assertTrue(role.equals(role1));
94         }
95     
96     @Test
97     public void testHashCode () {
98         assertTrue((Integer)role.hashCode() instanceof Integer);
99         
100     }
101 }