f0a0a69e9a8f12b6f0312924d3c3ad3a55546469
[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.Test;
49
50 public class ExternalAccessUserRoleDetailTest {
51
52     public ExternalAccessUserRoleDetail mockExternalAccessUserRoleDetailTest() {
53         ExternalAccessRole role = new ExternalAccessRole();
54         List<ExternalAccessPerms> mockPerms = new ArrayList<>();
55         ExternalAccessPerms mockExtPermsTest = new ExternalAccessPerms();
56         mockExtPermsTest.setAction("*");
57         mockExtPermsTest.setDescription("test_name");
58         mockExtPermsTest.setType("test_type");
59         mockExtPermsTest.setInstance("test_instance");
60         mockPerms.add(mockExtPermsTest);
61         ExternalAccessRoleDescription mockRoleDesc = new ExternalAccessRoleDescription();
62         mockRoleDesc.setActive("true");
63         mockRoleDesc.setAppId("1");
64         mockRoleDesc.setAppRoleId("1");
65         mockRoleDesc.setId("1");
66         mockRoleDesc.setPriority("1");
67         mockRoleDesc.setName("test");
68         mockRoleDesc.setName("com.test.app.rolename");
69         role.setPerms(mockPerms);
70         role.setDescription(mockRoleDesc);
71         ExternalAccessUserRoleDetail mockExtUserRoleDetailTest = new ExternalAccessUserRoleDetail(role);
72         return mockExtUserRoleDetailTest;
73     }
74
75     @Test
76     public void externalAccessPermsTest() {
77         ExternalAccessUserRoleDetail extUserRoleDetailTest2 = mockExternalAccessUserRoleDetailTest();
78         ExternalAccessRole role =  extUserRoleDetailTest2.getRole();
79         assertEquals(role.getName(), mockExternalAccessUserRoleDetailTest().getRole().getName());
80         assertEquals(role.getPerms(), mockExternalAccessUserRoleDetailTest().getRole().getPerms());
81         assertEquals(role.getDescription(), mockExternalAccessUserRoleDetailTest().getRole().getDescription());
82
83     }
84     
85     @Test
86     public void testGetSetRole() {
87         ExternalAccessUserRoleDetail externalAccessUserRoleDetail= new ExternalAccessUserRoleDetail();
88         ExternalAccessRole role = new ExternalAccessRole();
89         externalAccessUserRoleDetail.setRole(role);
90         assertEquals(role, externalAccessUserRoleDetail.getRole());
91     }
92     
93     @Test
94     public void testhashCode() {
95         ExternalAccessUserRoleDetail externalAccessUserRoleDetail= new ExternalAccessUserRoleDetail();
96         ExternalAccessRole role = new ExternalAccessRole();
97         externalAccessUserRoleDetail.setRole(role);
98         assertTrue((Integer)(externalAccessUserRoleDetail.hashCode()) instanceof Integer);
99         
100     }
101     
102     @Test
103     public void testEquals() {
104         ExternalAccessUserRoleDetail externalAccessUserRoleDetail= new ExternalAccessUserRoleDetail();
105         ExternalAccessUserRoleDetail externalAccessUserRoleDetail1= new ExternalAccessUserRoleDetail();
106         ExternalAccessRole role = new ExternalAccessRole();
107         externalAccessUserRoleDetail.setRole(role);
108         externalAccessUserRoleDetail1.setRole(role);
109         assertTrue(externalAccessUserRoleDetail.equals(externalAccessUserRoleDetail1));
110         
111     }
112 }