06ea9e6ed8793c71366c20314c441117acfe10f9
[aaf/authz.git] / auth / auth-certman / src / test / java / org / onap / aaf / auth / cm / ca / JU_X509ChainTest.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.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25 import static org.mockito.Mockito.when;
26 import static org.mockito.MockitoAnnotations.initMocks;
27
28 import java.io.IOException;
29 import java.io.Reader;
30 import java.security.Principal;
31 import java.security.cert.Certificate;
32 import java.security.cert.X509Certificate;
33 import java.util.ArrayList;
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_X509ChainTest {
41
42         @Mock
43         X509Certificate x509;
44
45         @Mock
46         X509ChainWithIssuer orig;
47         @Mock
48         Principal subject;
49         @Mock
50         Reader reader;
51         @Mock
52         X509Certificate cert;
53
54         @Before
55         public void setUp() throws Exception {
56                 initMocks(this);
57                 // when(subject.get)
58                 // when(x509.getSubjectDN()).thenReturn(subject);
59                 when(cert.getEncoded()).thenReturn("x509".getBytes());
60         }
61
62         @Test
63         public void test() throws IOException, CertException {
64                 Certificate[] certs = { x509 };
65                 X509andChain x509Chain = new X509andChain(cert, new ArrayList<String>());
66                 x509Chain.addTrustChainEntry(cert);
67
68                 assertNotNull(x509Chain.getX509());
69                 assertEquals(2, x509Chain.getTrustChain().length);
70         }
71
72 }