Remove Tabs, per Jococo
[aaf/authz.git] / auth / auth-certman / src / test / java / org / onap / aaf / auth / cm / ca / JU_X509ChainWithIssuerTest.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.ca;
22
23 import static org.junit.Assert.assertNull;
24 import static org.mockito.Mockito.when;
25 import static org.mockito.MockitoAnnotations.initMocks;
26
27 import java.io.IOException;
28 import java.io.Reader;
29 import java.security.Principal;
30 import java.security.cert.Certificate;
31 import java.security.cert.X509Certificate;
32 import java.util.ArrayList;
33 import java.util.List;
34
35 import org.junit.Before;
36 import org.junit.Test;
37 import org.mockito.Mock;
38 import org.onap.aaf.cadi.configure.CertException;
39
40 public class JU_X509ChainWithIssuerTest {
41
42     @Mock
43     X509Certificate x509;
44
45     @Mock
46     X509ChainWithIssuer orig;
47     @Mock
48     Principal subject;
49     @Mock
50     Reader reader;
51
52     @Before
53     public void setUp() throws Exception {
54         initMocks(this);
55         // when(subject.get)
56         when(x509.getSubjectDN()).thenReturn(subject);
57         when(x509.getEncoded()).thenReturn("x509".getBytes());
58     }
59
60     @Test
61     public void test() throws IOException, CertException {
62         X509ChainWithIssuer x509Chain = new X509ChainWithIssuer(orig, x509);
63
64         assertNull(x509Chain.getIssuerDN());
65         Certificate[] certs = { x509 };
66         // Certificate cert = ;
67         x509Chain = new X509ChainWithIssuer(certs);
68         List<Reader> rdrs = new ArrayList<Reader>();
69         rdrs.add(null);
70
71         x509Chain = new X509ChainWithIssuer(rdrs);
72     }
73
74 }