Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-oauth / src / test / java / org / onap / aaf / auth / oauth / facade / JU_OAFacadeFactory.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 package org.onap.aaf.auth.oauth.facade;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.mockito.Mockito.when;
25 import static org.mockito.MockitoAnnotations.initMocks;
26
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.mockito.Mock;
30 import org.onap.aaf.auth.dao.cass.OAuthTokenDAO.Data;
31 import org.onap.aaf.auth.env.AuthzTrans;
32 import org.onap.aaf.auth.layer.Result;
33 import org.onap.aaf.auth.oauth.service.OAuthService;
34 import org.onap.aaf.misc.env.APIException;
35
36 import aafoauth.v2_0.Introspect;
37
38 public class JU_OAFacadeFactory {
39
40     @Mock
41     private OAuthService service;
42
43     private String token;
44
45     private AuthzTrans trans;
46     @Mock
47     private Result<Data> rs;
48
49     @Before
50     public void setUp() throws Exception {
51         initMocks(this);
52     }
53
54     @Test
55     public void testStatusNotOk() throws APIException {
56         when(service.introspect(trans, token)).thenReturn(rs);
57         when(rs.notOK()).thenReturn(true);
58
59         DirectIntrospect<Introspect> direct = OAFacadeFactory.directV1_0(service);
60         Result<Introspect> rti = direct.mappedIntrospect(trans, token);
61
62         assertEquals(rti.status, 0);
63     }
64
65     @Test
66     public void testStatusOk() throws APIException {
67         when(service.introspect(trans, token)).thenReturn(rs);
68         when(rs.notOK()).thenReturn(false);
69
70         DirectIntrospect<Introspect> directV1_0 = OAFacadeFactory.directV1_0(service);
71         Result<Introspect> rti = directV1_0.mappedIntrospect(trans, token);
72
73         assertEquals(rti.status, 0);
74     }
75
76     @Test
77     public void testStatusOkWithResultSetEmpty() throws APIException {
78         when(service.introspect(trans, token)).thenReturn(rs);
79         when(rs.isEmpty()).thenReturn(true);
80         when(rs.notOK()).thenReturn(false);
81
82         DirectIntrospect<Introspect> directV1_0 = OAFacadeFactory.directV1_0(service);
83         Result<Introspect> rti = directV1_0.mappedIntrospect(trans, token);
84
85         assertEquals(rti.status, Result.ERR_NotFound);
86     }
87 }