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