cc239fa4935b1f4a4cb9dd7465bf716bd87224b9
[dcaegen2/services/sdk.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * DCAEGEN2-SERVICES-SDK
4  * ================================================================================
5  * Copyright (C) 2018 NOKIA Intellectual Property. 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.dcaegen2.services.sdk.rest.services.dmaap.client.service.producer;
22
23 import static org.mockito.Mockito.mock;
24 import static org.mockito.Mockito.when;
25
26 import javax.net.ssl.SSLException;
27 import org.junit.jupiter.api.Assertions;
28 import org.junit.jupiter.api.Test;
29 import org.onap.dcaegen2.services.sdk.rest.services.dmaap.client.config.DmaapPublisherConfiguration;
30
31
32 class DmaaPRestTemplateFactoryTest {
33
34     private static final String KEY_STORE = "org.onap.dcae.jks";
35     private static final String KEYSTORE_PASSWORD = "keystore.password";
36     private static final String TRUSTSTORE_PASSWORD = "truststore.password";
37     private static final String TRUST_STORE = "org.onap.dcae.trust.jks";
38     private DmaapPublisherConfiguration publisherConfiguration = mock(DmaapPublisherConfiguration.class);
39     private DmaaPRestTemplateFactory factory = new DmaaPRestTemplateFactory();
40
41     @Test
42     void build_shouldCreateRestTemplateWithoutSslConfiguration() throws SSLException {
43         when(publisherConfiguration.enableDmaapCertAuth()).thenReturn(false);
44
45         Assertions.assertNotNull(factory.build(publisherConfiguration));
46     }
47
48     @Test
49     void build_shouldCreateRestTemplateWithSslConfiguration() throws SSLException {
50         when(publisherConfiguration.enableDmaapCertAuth()).thenReturn(true);
51         when(publisherConfiguration.keyStorePath()).thenReturn(getPath(KEY_STORE));
52         when(publisherConfiguration.keyStorePasswordPath()).thenReturn(getPath(KEYSTORE_PASSWORD));
53         when(publisherConfiguration.trustStorePath()).thenReturn(getPath(TRUST_STORE));
54         when(publisherConfiguration.trustStorePasswordPath()).thenReturn(getPath(TRUSTSTORE_PASSWORD));
55
56         Assertions.assertNotNull(factory.build(publisherConfiguration));
57     }
58
59     private String getPath(String fileName) {
60         return this.getClass().getClassLoader().getResource(fileName).getPath();
61     }
62 }