Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / taf / test / JU_TrustNotTafResp.java
1 /*******************************************************************************
2  * ============LICENSE_START====================================================
3  * * org.onap.aaf
4  * * ===========================================================================
5  * * Copyright © 2017 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.test;
23
24 import static org.junit.Assert.*;
25 import static org.hamcrest.CoreMatchers.*;
26 import static org.mockito.Mockito.*;
27 import org.junit.*;
28 import org.mockito.*;
29
30 import java.io.IOException;
31
32 import org.onap.aaf.cadi.Access;
33 import org.onap.aaf.cadi.taf.TafResp;
34 import org.onap.aaf.cadi.taf.TafResp.RESP;
35 import org.onap.aaf.cadi.taf.TrustNotTafResp;
36 import org.onap.aaf.cadi.principal.TaggedPrincipal;
37
38 public class JU_TrustNotTafResp {
39
40     @Mock
41     TafResp delegateMock;
42
43     @Mock
44     TaggedPrincipal principalMock;
45
46     @Mock
47     Access accessMock;
48
49     private final String description = "Example Description";
50
51     @Before
52     public void setup() throws IOException {
53         MockitoAnnotations.initMocks(this);
54
55         when(delegateMock.getPrincipal()).thenReturn(principalMock);
56         when(delegateMock.getAccess()).thenReturn(accessMock);
57     }
58
59     @Test
60     public void test() throws IOException {
61         TrustNotTafResp ttr = new TrustNotTafResp(delegateMock, description);
62         assertThat(ttr.isValid(), is(false));
63         assertThat(ttr.desc(), is(description));
64         assertThat(ttr.authenticate(), is(RESP.NO_FURTHER_PROCESSING));
65         assertThat(ttr.isAuthenticated(), is(RESP.NO_FURTHER_PROCESSING));
66         assertThat(ttr.getPrincipal(), is(principalMock));
67         assertThat(ttr.getAccess(), is(accessMock));
68         assertThat(ttr.isFailedAttempt(), is(true));
69         assertThat(ttr.toString(), is(description));
70     }
71
72 }