7c69bd52693a5b07bb52f8430b01f6d1c26e2a42
[oom/platform/cert-service.git] / certService / src / test / java / org / onap / oom / certservice / certification / TestUtils.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.encoders.Base64;
24 import org.bouncycastle.util.io.pem.PemObject;
25 import org.bouncycastle.util.io.pem.PemWriter;
26 import org.onap.oom.certservice.certification.exception.DecryptionException;
27 import org.onap.oom.certservice.certification.exception.KeyDecryptionException;
28 import org.onap.oom.certservice.certification.model.CsrModel;
29
30 import java.io.IOException;
31 import java.io.StringWriter;
32
33 import static org.onap.oom.certservice.certification.TestData.TEST_CSR;
34 import static org.onap.oom.certservice.certification.TestData.TEST_PK;
35
36
37 public final class TestUtils {
38
39     private TestUtils() {
40     }
41
42     public static String pemObjectToString(PemObject pemObject) throws KeyDecryptionException {
43         try (StringWriter output = new StringWriter()) {
44             PemWriter pemWriter = new PemWriter(output);
45             pemWriter.writeObject(pemObject);
46             pemWriter.close();
47             return output.getBuffer().toString();
48
49         } catch (IOException e) {
50             throw new KeyDecryptionException("Writing PAM Object to string failed", e);
51         }
52     }
53
54     public static CsrModel createCsrModel() throws DecryptionException {
55         CsrModelFactory csrModelFactory = new CsrModelFactory();
56         String encoderCsr = new String(Base64.encode(TEST_CSR.getBytes()));
57         String encoderPK = new String(Base64.encode(TEST_PK.getBytes()));
58         return csrModelFactory
59                 .createCsrModel(new CsrModelFactory.StringBase64(encoderCsr), new CsrModelFactory.StringBase64(encoderPK));
60     }
61 }