630adacbf4acdc89a62f3a6772991a05af2c477f
[aaf/authz.git] / cadi / aaf / src / test / java / org / onap / aaf / cadi / oauth / test / JU_OAuth2Principal.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.cadi.oauth.test;
23
24 import static org.junit.Assert.assertThat;
25 import static org.hamcrest.CoreMatchers.is; 
26 import static org.mockito.Mockito.when;
27
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.mockito.Mock;
31 import org.mockito.MockitoAnnotations;
32 import org.onap.aaf.cadi.oauth.OAuth2Principal;
33 import org.onap.aaf.cadi.oauth.TokenPerm;
34
35 public class JU_OAuth2Principal {
36
37     @Mock TokenPerm tpMock;
38     
39     
40     private static final String username = "username";
41     
42     private static final byte[] hash = "hashstring".getBytes();
43     
44     @Before
45     public void setup() {
46         MockitoAnnotations.initMocks(this);
47         
48         when(tpMock.getUsername()).thenReturn(username);
49     }
50
51     @Test
52     public void test() {
53         OAuth2Principal princ = new OAuth2Principal(tpMock, hash);
54         assertThat(princ.getName(), is(username));
55         assertThat(princ.tokenPerm(), is(tpMock));
56         assertThat(princ.tag(), is("OAuth"));
57         assertThat(princ.personalName(), is(username));
58     }
59
60 }