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