Merge "[OOM-CERT-SERVICE] Add Certification Request functionality"
[oom/platform/cert-service.git] / certService / src / test / java / org / onap / oom / certservice / certification / conversion / RsaContentSignerBuilderTest.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.conversion;
22
23 import static org.assertj.core.api.Assertions.assertThat;
24 import static org.onap.oom.certservice.certification.TestUtils.createCsrModel;
25
26 import java.io.IOException;
27 import java.security.PrivateKey;
28 import org.bouncycastle.operator.ContentSigner;
29 import org.bouncycastle.operator.OperatorCreationException;
30 import org.bouncycastle.pkcs.PKCS10CertificationRequest;
31 import org.junit.jupiter.api.BeforeEach;
32 import org.junit.jupiter.api.Test;
33 import org.onap.oom.certservice.certification.exception.DecryptionException;
34 import org.onap.oom.certservice.certification.model.CsrModel;
35
36 class RsaContentSignerBuilderTest {
37
38     private RsaContentSignerBuilder rsaContentSignerBuilder;
39
40     @BeforeEach
41     void setUp() {
42         rsaContentSignerBuilder = new RsaContentSignerBuilder();
43     }
44
45     @Test
46     void shouldBuildProperContentSignerWhenProvidedCertificationRequestAndPrivateKey()
47             throws IOException, OperatorCreationException, DecryptionException {
48         // Given
49         CsrModel testCsrModel = createCsrModel();
50         PKCS10CertificationRequest testCertificationRequest = testCsrModel.getCsr();
51         PrivateKey testPrivateKey = testCsrModel.getPrivateKey();
52
53         // When
54         ContentSigner createdContentSigner = rsaContentSignerBuilder.build(testCertificationRequest, testPrivateKey);
55
56         // Then
57         assertThat(createdContentSigner.getAlgorithmIdentifier())
58                 .isEqualTo(testCertificationRequest.getSignatureAlgorithm());
59     }
60
61 }