Return hardcoded CA certs and certification chain.
[oom/platform/cert-service.git] / certService / src / test / java / org / onap / aaf / certservice / certification / CertificationModelFactoryTest.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.junit.jupiter.api.BeforeEach;
24 import org.junit.jupiter.api.Test;
25 import org.onap.aaf.certservice.certification.model.CertificationModel;
26 import org.onap.aaf.certservice.certification.model.CsrModel;
27
28 import static org.assertj.core.api.Assertions.assertThat;
29 import static org.junit.jupiter.api.Assertions.assertEquals;
30 import static org.mockito.Mockito.mock;
31 import static org.onap.aaf.certservice.certification.CertificationData.CA_CERT;
32 import static org.onap.aaf.certservice.certification.CertificationData.ENTITY_CERT;
33 import static org.onap.aaf.certservice.certification.CertificationData.INTERMEDIATE_CERT;
34 import static org.onap.aaf.certservice.certification.CertificationData.EXTRA_CA_CERT;
35
36
37 class CertificationModelFactoryTest {
38
39
40     private CertificationModelFactory certificationModelFactory;
41
42     @BeforeEach
43     void setUp() {
44         certificationModelFactory = new CertificationModelFactory();
45     }
46
47     @Test
48     void shouldCreateProperCertificationModelWhenGivenProperCsrModelAndCaName() {
49         // given
50         final String testCaName = "testCA";
51         CsrModel mockedCsrModel = mock(CsrModel.class);
52
53         // when
54         CertificationModel certificationModel = certificationModelFactory.createCertificationModel(mockedCsrModel ,testCaName);
55
56         //then
57         assertEquals(2, certificationModel.getCertificateChain().size());
58         assertThat(certificationModel.getCertificateChain()).contains(INTERMEDIATE_CERT, ENTITY_CERT);
59         assertEquals(2, certificationModel.getTrustedCertificates().size());
60         assertThat(certificationModel.getTrustedCertificates()).contains(CA_CERT, EXTRA_CA_CERT);
61     }
62
63 }