Security/ Package Name changes
[portal.git] / ecomp-portal-BE-common / src / test / java / org / onap / portalapp / portal / transport / CentralRoleTest.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.onap.portalapp.portal.transport;
39
40 import static org.junit.Assert.assertEquals;
41 import static org.junit.Assert.assertTrue;
42
43 import org.junit.Test;
44
45 public class CentralRoleTest {
46
47         public CentralV2Role mockCentralRole(){
48                 CentralV2Role centralV2Role = new CentralV2Role((long)1, null, null, (long)1, (long)1, (long)1,
49                                 "test", false, 1, null, null, null);
50             
51             centralV2Role.setId((long)1);
52             centralV2Role.setCreatedId((long)1);
53             centralV2Role.setModifiedId((long)1);
54             centralV2Role.setRowNum((long)1);
55             centralV2Role.setName("test");
56             centralV2Role.setActive(false);
57             centralV2Role.setPriority(1);
58             
59             centralV2Role.setCreated(null);
60             centralV2Role.setModified(null);
61             centralV2Role.setRoleFunctions(null);
62             centralV2Role.setChildRoles(null);
63             centralV2Role.setParentRoles(null);
64             
65                 return centralV2Role;
66         }
67         
68         @Test
69         public void centralRoleTest(){
70                 CentralV2Role centralV2Role = mockCentralRole();
71                 
72                 CentralV2Role centralRole1 = new CentralV2Role((long)1, null, null, (long)1, (long)1, (long)1,
73                                 "test", false, 1, null, null, null);
74                 
75                 CentralV2Role centralRole2 = new CentralV2Role((long)1, "test");
76                 
77                 assertEquals(centralV2Role.getId(), new Long(1));
78                 assertEquals(centralV2Role.getCreatedId(), new Long(1));
79                 assertEquals(centralV2Role.getModifiedId(), new Long(1));
80                 assertEquals(centralV2Role.getRowNum(), new Long(1));
81                 assertEquals(centralV2Role.getName(), "test");
82                 assertEquals(centralV2Role.isActive(), false);
83                 assertEquals(centralV2Role.getCreated(), null);
84                 assertEquals(centralV2Role.getModified(), null);
85                 assertEquals(centralV2Role.getRoleFunctions(), null);
86                 assertEquals(centralV2Role.getChildRoles(), null);
87                 assertEquals(centralV2Role.getParentRoles(), null);             
88                 assertEquals(centralV2Role.getPriority().toString(), "1");
89                 assertEquals(centralV2Role.hashCode(), centralRole1.hashCode());
90                 assertTrue(centralV2Role.equals(centralRole1));
91                 assertEquals(centralV2Role, centralRole1);
92                 assertEquals(centralRole2, new CentralV2Role((long)1, "test"));
93         }
94         
95         
96 }