Update Batch from Testing
[aaf/authz.git] / auth / auth-batch / src / test / java / org / onap / aaf / auth / batch / helpers / test / JU_Perm.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 static org.junit.Assert.*;
25 import org.junit.After;
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.mockito.Mock;
29 import org.mockito.Mockito;
30 import org.onap.aaf.auth.batch.helpers.Perm;
31
32 import junit.framework.Assert;
33
34 import static org.mockito.Mockito.*;
35
36 import java.util.HashSet;
37 import java.util.Set;
38
39 import org.junit.Test;
40
41 public class JU_Perm {
42     
43     Perm perm;
44     Set set;
45     
46     @Before
47     public void setUp() {
48         set = new HashSet();
49         perm = new Perm("ns","type", "instance", "action","description", set);
50     }
51
52     @Test
53     public void testFullType() {
54         Assert.assertEquals("ns.type", perm.fullType());
55     }
56     
57     @Test
58     public void testFullPerm() {
59         Assert.assertEquals("ns.type|instance|action", perm.fullPerm());
60     }
61     
62     @Test
63     public void testEncode() {
64         Assert.assertEquals("ns|type|instance|action", perm.encode());
65     }
66     
67     @Test
68     public void testHashCode() {
69         Assert.assertEquals(850667666, perm.hashCode());
70     }
71     
72     @Test
73     public void testToString() {
74         Assert.assertEquals("ns|type|instance|action", perm.toString());
75     }
76     
77     @Test
78     public void testEquals() {
79         Perm perm1 = new Perm("ns","type", "instance", "action","description", set);
80         Assert.assertEquals(false, perm.equals(perm1));
81     }
82     
83     @Test
84     public void testCompareTo() {
85         Perm perm1 = new Perm("ns","type", "instance", "action","description", set);
86         Perm perm2 = new Perm("ns1","type", "instance", "action","description", set);
87         
88         Assert.assertEquals(0, perm.compareTo(perm1));
89         Assert.assertEquals(75, perm.compareTo(perm2));
90     }
91     
92     @Test
93     public void testStageRemove() {
94         Perm perm1 = new Perm("ns","type", "instance", "action","description", set);
95         perm.stageRemove(perm1);
96     }
97
98 }