Fix for env names
[oom/platform/cert-service.git] / trustStoreMerger / src / test / java / org / onap / oom / truststoremerger / merger / model / JavaTruststoreTest.java
1 /*============LICENSE_START=======================================================
2  * oom-truststore-merger
3  * ================================================================================
4  * Copyright (C) 2020 Nokia. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  * ============LICENSE_END=========================================================
18  */
19
20 package org.onap.oom.truststoremerger.merger.model;
21
22 import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
23
24 import java.util.List;
25 import org.junit.jupiter.api.Test;
26 import org.onap.oom.truststoremerger.api.ExitableException;
27 import org.onap.oom.truststoremerger.merger.exception.AliasConflictException;
28 import org.onap.oom.truststoremerger.merger.exception.MissingTruststoreException;
29 import org.onap.oom.truststoremerger.merger.model.certificate.CertificateWithAlias;
30
31 class JavaTruststoreTest {
32
33     @Test
34     void throwExceptionWhenAliasConflictDetected() throws Exception {
35         //given
36         Truststore p12Truststore = TestCertificateProvider.getSampleP12Truststore();
37
38         List<CertificateWithAlias> certificateFromJks = TestCertificateProvider
39             .getSampleJksTruststoreFile().getCertificates();
40
41         //when //then
42         assertThatExceptionOfType(AliasConflictException.class)
43             .isThrownBy(() -> p12Truststore.addCertificates(certificateFromJks));
44     }
45
46     @Test
47     void throwExceptionWhenFileNotContainsTruststoreEntry() throws ExitableException {
48         //given
49         Truststore p12Truststore = TestCertificateProvider.getSampleP12Keystore();
50
51         //when//then
52         assertThatExceptionOfType(MissingTruststoreException.class)
53             .isThrownBy(() -> p12Truststore.getCertificates());
54     }
55
56 }