Automation adds INFO.yaml
[oom/platform/cert-service.git] / certService / src / test / java / org / onap / oom / certservice / certification / PemObjectFactoryTest.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.util.io.pem.PemObject;
24 import org.junit.jupiter.api.BeforeEach;
25 import org.junit.jupiter.api.Test;
26 import org.onap.oom.certservice.certification.exception.DecryptionException;
27
28 import static org.junit.jupiter.api.Assertions.assertEquals;
29 import static org.junit.jupiter.api.Assertions.assertThrows;
30 import static org.junit.jupiter.api.Assertions.assertTrue;
31 import static org.onap.oom.certservice.certification.TestData.TEST_PEM;
32 import static org.onap.oom.certservice.certification.TestData.TEST_WRONG_PEM;
33 import static org.onap.oom.certservice.certification.TestUtils.pemObjectToString;
34
35
36 class PemObjectFactoryTest {
37
38
39     private PemObjectFactory pemObjectFactory;
40
41     @BeforeEach
42     void setUp() {
43         pemObjectFactory = new PemObjectFactory();
44     }
45
46     @Test
47     void shouldTransformStringInToPemObjectAndBackToString() throws DecryptionException {
48         // when
49         PemObject pemObject = pemObjectFactory.createPemObject(TEST_PEM).orElseThrow(
50                 () -> new DecryptionException("Pem decryption failed")
51         );
52         String parsedPemObject = pemObjectToString(pemObject);
53
54         // then
55         assertEquals(TEST_PEM, parsedPemObject);
56     }
57
58     @Test
59     void shouldThrowExceptionWhenParsingPemFailed() {
60         // given
61         String expectedMessage = "Unable to create PEM";
62
63         // when
64         Exception exception = assertThrows(
65                 DecryptionException.class, () -> pemObjectFactory.createPemObject(TEST_WRONG_PEM).orElseThrow(
66                         () -> new DecryptionException(expectedMessage)
67                 )
68         );
69
70         String actualMessage = exception.getMessage();
71
72         // then
73         assertTrue(actualMessage.contains(expectedMessage));
74     }
75
76 }