Remove Tabs, per Jococo
[aaf/authz.git] / auth / auth-certman / src / test / java / org / onap / aaf / auth / cm / data / JU_CertReqTest.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 package org.onap.aaf.auth.cm.data;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.mockito.Mockito.when;
25 import static org.mockito.MockitoAnnotations.initMocks;
26
27 import java.io.IOException;
28 import java.security.GeneralSecurityException;
29 import java.util.ArrayList;
30
31 import org.junit.Before;
32 import org.junit.Test;
33 import org.mockito.Mock;
34 import org.onap.aaf.auth.cm.ca.CA;
35 import org.onap.aaf.auth.cm.cert.CSRMeta;
36 import org.onap.aaf.cadi.configure.CertException;
37
38 public class JU_CertReqTest {
39
40     @Mock
41     CA ca;
42
43     @Mock
44     CSRMeta csr;
45
46     @Before
47     public void setUp() throws Exception {
48         initMocks(this);
49         when(ca.newCSRMeta()).thenReturn(csr);
50         when(csr.cn()).thenReturn("cn123");
51         when(csr.mechID()).thenReturn("mechId");
52     }
53
54     @Test
55     public void testCertResp() throws IOException, GeneralSecurityException, CertException {
56         CertReq req = new CertReq();
57         req.certAuthority = ca;
58         req.fqdns = new ArrayList<String>();
59
60         assertEquals(csr, req.getCSRMeta());
61     }
62 }