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