52ed99e73047d49bb7725ac25b816f6e3d80e5c2
[oom/platform/cert-service.git] / certService / src / test / java / org / onap / oom / certservice / certification / X509CertificateBuilderTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  * PROJECT
4  * ================================================================================
5  * Copyright (C) 2020 Nokia. 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.oom.certservice.certification;
22
23 import org.bouncycastle.cert.X509CertificateHolder;
24 import org.bouncycastle.cert.X509v3CertificateBuilder;
25 import org.bouncycastle.operator.ContentSigner;
26 import org.bouncycastle.operator.OperatorCreationException;
27 import org.bouncycastle.pkcs.PKCS10CertificationRequest;
28 import org.junit.jupiter.api.BeforeEach;
29 import org.junit.jupiter.api.Test;
30 import org.onap.oom.certservice.certification.exception.DecryptionException;
31 import org.onap.oom.certservice.certification.model.CsrModel;
32
33 import java.io.IOException;
34 import java.security.PrivateKey;
35
36 import static org.assertj.core.api.Assertions.assertThat;
37 import static org.onap.oom.certservice.certification.TestUtils.createCsrModel;
38
39 class X509CertificateBuilderTest {
40
41     private X509CertificateBuilder certificateBuilder;
42
43
44     @BeforeEach
45     void setUp() {
46         certificateBuilder = new X509CertificateBuilder();
47     }
48
49     @Test
50     void shouldBuildCertificateBuilderWhenGivenProperCertificationRequest()
51             throws DecryptionException, IOException, OperatorCreationException {
52         // Given
53         CsrModel testCsrModel = createCsrModel();
54         PKCS10CertificationRequest testCertificationRequest = testCsrModel.getCsr();
55         PrivateKey testPrivateKey = testCsrModel.getPrivateKey();
56         RsaContentSignerBuilder rsaContentSignerBuilder = new RsaContentSignerBuilder();
57         ContentSigner createdContentSigner = rsaContentSignerBuilder.build(testCertificationRequest, testPrivateKey);
58
59         // When
60         X509v3CertificateBuilder certificateBuilder = this.certificateBuilder.build(testCertificationRequest);
61         X509CertificateHolder certificateHolder = certificateBuilder.build(createdContentSigner);
62
63         // Then
64         assertThat(certificateHolder.getIssuer())
65                 .isEqualToComparingFieldByField(testCsrModel.getSubjectData());
66         assertThat(certificateHolder.getSubjectPublicKeyInfo())
67                 .isEqualToComparingFieldByField(testCertificationRequest.getSubjectPublicKeyInfo());
68     }
69 }