2 * ============LICENSE_START==========================================
4 * ===================================================================
5 * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6 * ===================================================================
7 * Modifications Copyright (C) 2018 IBM.
8 * ===================================================================
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
15 * http://www.apache.org/licenses/LICENSE-2.0
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.
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
28 * https://creativecommons.org/licenses/by/4.0/
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.
36 * ============LICENSE_END============================================
40 package org.onap.portalsdk.external.authorization.domain;
42 import static org.junit.Assert.assertEquals;
43 import static org.junit.Assert.assertTrue;
45 import java.util.ArrayList;
46 import java.util.List;
48 import org.junit.Before;
49 import org.junit.Test;
51 public class ExternalAccessRoleTest {
53 private ExternalAccessRole mockRole;
54 private ExternalAccessRole role;
55 private ExternalAccessRole role1;
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);
77 mockRole = mockExternalAccessRoleTest();
78 role = new ExternalAccessRole(mockRole.getName(), mockRole.getPerms(), mockRole.getDescription());
79 role1= new ExternalAccessRole(mockRole.getName(), mockRole.getPerms(), mockRole.getDescription());;
83 public void externalAccessRolePermsTest() {
85 assertEquals(role.getName(), mockExternalAccessRoleTest().getName());
86 assertEquals(role.getPerms(), mockExternalAccessRoleTest().getPerms());
87 assertEquals(role.getDescription(), mockExternalAccessRoleTest().getDescription());
91 public void testEquals() {
93 assertTrue(role.equals(role1));
97 public void testHashCode () {
98 assertTrue((Integer)role.hashCode() instanceof Integer);