Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / aaf / src / test / java / org / onap / aaf / cadi / oauth / test / JU_OAuth2HttpTafResp.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.hamcrest.CoreMatchers.is;
25 import static org.junit.Assert.assertThat;
26
27 import java.io.IOException;
28
29 import javax.servlet.http.HttpServletResponse;
30
31 import org.junit.Before;
32 import org.junit.Test;
33 import org.mockito.Mock;
34 import org.mockito.MockitoAnnotations;
35 import org.onap.aaf.cadi.PropAccess;
36 import org.onap.aaf.cadi.oauth.OAuth2HttpTafResp;
37 import org.onap.aaf.cadi.oauth.OAuth2Principal;
38 import org.onap.aaf.cadi.principal.TrustPrincipal;
39 import org.onap.aaf.cadi.taf.TafResp.RESP;
40
41 public class JU_OAuth2HttpTafResp {
42
43     private static final String description = "description";
44
45     @Mock private TrustPrincipal princMock;
46     @Mock private OAuth2Principal oauthMock;
47     @Mock private HttpServletResponse respMock;
48
49     private PropAccess access;
50
51     private RESP status;
52
53     @Before
54     public void setup() {
55         MockitoAnnotations.initMocks(this);
56         status = RESP.NO_FURTHER_PROCESSING;
57     }
58
59     @Test
60     public void test() throws IOException {
61         OAuth2HttpTafResp resp = new OAuth2HttpTafResp(access, princMock,  description, status, respMock);
62         resp = new OAuth2HttpTafResp(access, oauthMock,  description, status, respMock, true);
63         assertThat(resp.isFailedAttempt(), is(true));
64         assertThat(resp.isAuthenticated(), is(status));
65         assertThat(resp.authenticate(), is(RESP.HTTP_REDIRECT_INVOKED));
66     }
67
68 }