Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / taf / test / JU_TrustTafResp.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.TrustTafResp;
36 import org.onap.aaf.cadi.principal.TaggedPrincipal;
37
38 public class JU_TrustTafResp {
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     private final String anotherDescription = "Another Description";
51     private final String name = "name";
52
53     private final RESP resp = RESP.IS_AUTHENTICATED;
54
55     @Before
56     public void setup() throws IOException {
57         MockitoAnnotations.initMocks(this);
58
59         when(delegateMock.desc()).thenReturn(anotherDescription);
60         when(delegateMock.isValid()).thenReturn(true);
61         when(delegateMock.isAuthenticated()).thenReturn(resp);
62         when(delegateMock.authenticate()).thenReturn(resp);
63         when(delegateMock.getAccess()).thenReturn(accessMock);
64         when(delegateMock.isFailedAttempt()).thenReturn(true);
65
66         when(principalMock.getName()).thenReturn(name);
67     }
68
69     @Test
70     public void test() throws IOException {
71         TrustTafResp ttr = new TrustTafResp(delegateMock, principalMock, description);
72         assertThat(ttr.isValid(), is(true));
73         assertThat(ttr.desc(), is(description + ' ' + anotherDescription));
74         assertThat(ttr.authenticate(), is(resp));
75         assertThat(ttr.isAuthenticated(), is(resp));
76         assertThat(ttr.getPrincipal(), is(principalMock));
77         assertThat(ttr.getAccess(), is(accessMock));
78         assertThat(ttr.isFailedAttempt(), is(true));
79         assertThat(ttr.toString(), is(name + " by trust of " + description + ' ' + anotherDescription));
80     }
81
82 }