Batch, Remove unneeded Classes, refine, etc
[aaf/authz.git] / auth / auth-batch / src / test / java / org / onap / aaf / auth / batch / helpers / test / JU_Role.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.auth.batch.helpers.test;
23
24 import java.util.HashSet;
25 import java.util.Set;
26
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.onap.aaf.auth.batch.helpers.Role;
30
31 import junit.framework.Assert;
32
33 public class JU_Role {
34     
35     Role shortRole;
36     Role longRole;
37     Set set;
38     
39     @Before
40     public void setUp() {
41         set = new HashSet();
42         shortRole = new Role("full");
43         longRole = new Role("ns", "name", "description", set);
44     }
45
46     @Test
47     public void testEncode() {
48         Assert.assertEquals("ns|name", longRole.encode());
49     }
50     
51     @Test
52     public void testFullName() {
53         Assert.assertEquals("ns.name", longRole.fullName());
54         Assert.assertEquals("full", shortRole.fullName());
55         
56         longRole.fullName("test");
57     }
58     
59     @Test
60     public void testToString() {
61         Assert.assertEquals("ns|name", longRole.toString());
62     }
63     
64     @Test
65     public void testHashCode() {
66         Assert.assertEquals(-2043567518, longRole.hashCode());
67     }
68     
69     @Test
70     public void testEquals() {
71         Assert.assertEquals(false, longRole.equals(longRole));
72     }
73     
74     @Test
75     public void testCompareTo() {
76         Assert.assertEquals(-14, longRole.compareTo(shortRole));
77         Assert.assertEquals(14, shortRole.compareTo(longRole));
78     }
79     
80     @Test
81     public void testStageRemove() {
82         longRole.stageRemove(shortRole);
83     }
84
85 }