Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / taf / cert / test / JU_X509HttpTafResp.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.cert.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 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.principal.TaggedPrincipal;
37 import org.onap.aaf.cadi.taf.TafResp.RESP;
38 import org.onap.aaf.cadi.taf.cert.X509HttpTafResp;
39
40 public class JU_X509HttpTafResp {
41
42     private final static String description = "description";
43     private final static RESP status = RESP.IS_AUTHENTICATED;
44
45     private PropAccess access;
46
47     @Mock private TaggedPrincipal princMock;
48
49     @Before
50     public void setup() {
51         MockitoAnnotations.initMocks(this);
52         access = new PropAccess(new PrintStream(new ByteArrayOutputStream()), new String[0]);
53     }
54
55     @Test
56     public void test() throws IOException {
57         X509HttpTafResp resp = new X509HttpTafResp(access, princMock, description, status);
58         assertThat(resp.authenticate(), is(RESP.TRY_ANOTHER_TAF));
59         assertThat(resp.isAuthenticated(), is(status));
60         assertThat(resp.toString(), is(status.name()));
61     }
62
63 }