8eba1fafe66e34ca2d7939f37f9d25e768045746
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / taf / basic / test / JU_BasicHttpTafResp.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.taf.basic.test;
23
24 import static org.hamcrest.CoreMatchers.is;
25 import static org.junit.Assert.assertThat;
26
27 import java.io.ByteArrayOutputStream;
28 import java.io.IOException;
29 import java.io.PrintStream;
30
31 import javax.servlet.http.HttpServletResponse;
32
33 import org.junit.Before;
34 import org.junit.Test;
35 import org.mockito.Mock;
36 import org.mockito.MockitoAnnotations;
37 import org.onap.aaf.cadi.PropAccess;
38 import org.onap.aaf.cadi.principal.TaggedPrincipal;
39 import org.onap.aaf.cadi.taf.TafResp.RESP;
40 import org.onap.aaf.cadi.taf.basic.BasicHttpTafResp;
41
42 public class JU_BasicHttpTafResp {
43
44         private final static String realm = "realm";
45         private final static String description = "description";
46
47         private PropAccess access;
48
49         @Mock private HttpServletResponse respMock;
50         @Mock private TaggedPrincipal princMock;
51
52         @Before
53         public void setup() {
54                 MockitoAnnotations.initMocks(this);
55                 access = new PropAccess(new PrintStream(new ByteArrayOutputStream()), new String[0]);
56         }
57
58         @Test
59         public void test() throws IOException {
60                 BasicHttpTafResp tafResp = new BasicHttpTafResp(access, princMock, description, RESP.IS_AUTHENTICATED, respMock, realm, false);
61
62                 assertThat(tafResp.authenticate(), is(RESP.HTTP_REDIRECT_INVOKED));
63                 assertThat(tafResp.isAuthenticated(), is (RESP.IS_AUTHENTICATED));
64                 assertThat(tafResp.isFailedAttempt(), is(false));
65         }
66
67 }