Update Batch from Testing
[aaf/authz.git] / auth / auth-batch / src / test / java / org / onap / aaf / auth / batch / actions / test / JU_CredPrintTest.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.auth.batch.actions.test;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.mockito.Mockito.when;
26 import static org.mockito.MockitoAnnotations.initMocks;
27
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.mockito.Mock;
31 import org.onap.aaf.auth.batch.actions.CredPrint;
32 import org.onap.aaf.auth.dao.cass.CredDAO;
33 import org.onap.aaf.auth.dao.cass.CredDAO.Data;
34 import org.onap.aaf.auth.env.AuthzTrans;
35 import org.onap.aaf.auth.layer.Result;
36 import org.onap.aaf.misc.env.LogTarget;
37
38 public class JU_CredPrintTest {
39
40         @Mock
41         private AuthzTrans trans;
42         private Data cred;
43         @Mock
44         LogTarget target;
45
46         @Before
47         public void setUp() throws Exception {
48                 initMocks(this);
49                 when(trans.info()).thenReturn(target);
50                 cred = new CredDAO.Data();
51                 cred.type = CredDAO.BASIC_AUTH;
52         }
53
54         @Test
55         public void testCred() {
56                 CredPrint print = new CredPrint("text");
57
58                 Result<Void> result = print.exec(trans, cred, "text");
59
60                 assertEquals(result.status, result.ok().status);
61                 assertEquals(CredPrint.type(CredDAO.BASIC_AUTH), "OLD");
62                 assertEquals(CredPrint.type(CredDAO.BASIC_AUTH_SHA256), "U/P");
63                 assertEquals(CredPrint.type(CredDAO.CERT_SHA256_RSA), "Cert");
64                 assertEquals(CredPrint.type(0), "Unknown");
65         }
66
67 }