Update DCAE Startup Info
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / lur / test / JU_LocalPermission.java
1 /*******************************************************************************
2  * ============LICENSE_START====================================================
3  * * org.onap.aaf
4  * * ===========================================================================
5  * * Copyright © 2017 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,Z
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
23 package org.onap.aaf.cadi.lur.test;
24
25 import static org.junit.Assert.*;
26
27 import static org.hamcrest.CoreMatchers.*;
28 import org.junit.*;
29 import org.mockito.Mock;
30 import org.mockito.MockitoAnnotations;
31 import static org.mockito.Mockito.*;
32
33 import org.onap.aaf.cadi.lur.LocalPermission;
34 import org.onap.aaf.cadi.Permission;
35
36 public class JU_LocalPermission {
37
38     @Mock
39     Permission perm;
40
41     private LocalPermission localPerm;
42     private String role = "Fake Role";
43
44     @Before
45     public void setup() {
46         MockitoAnnotations.initMocks(this);
47         when(perm.getKey()).thenReturn(role);
48
49         localPerm = new LocalPermission(role);
50     }
51
52     @Test
53     public void getKeyTest() {
54         assertThat(localPerm.getKey(), is(role));
55     }
56
57     @Test
58     public void toStringTest() {
59         assertThat(localPerm.toString(), is(role));
60     }
61
62     @Test
63     public void matchTest() {
64         assertTrue(localPerm.match(perm));
65     }
66
67     @Test
68     public void permTypeTest() {
69         assertThat(localPerm.permType(), is("LOCAL"));
70     }
71
72 }