bd3b07e996949c8b30654a7596fe358096dd8361
[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 org.junit.jupiter.api.Assertions;
27 import org.junit.jupiter.api.Test;
28 import org.onap.dcaegen2.services.sdk.rest.services.dmaap.client.config.DmaapPublisherConfiguration;
29
30
31 class DmaaPRestTemplateFactoryTest {
32
33     private static final String KEY_STORE = "org.onap.dcae.jks";
34     private static final String KEYSTORE_PASSWORD = "keystore.password";
35     private static final String TRUSTSTORE_PASSWORD = "truststore.password";
36     private static final String TRUST_STORE = "org.onap.dcae.trust.jks";
37     private DmaapPublisherConfiguration publisherConfiguration = mock(DmaapPublisherConfiguration.class);
38     private DmaaPRestTemplateFactory factory = new DmaaPRestTemplateFactory();
39
40     @Test
41     void build_shouldCreateRestTemplateWithoutSslConfiguration() {
42         when(publisherConfiguration.enableDmaapCertAuth()).thenReturn(false);
43
44         Assertions.assertNotNull(factory.build(publisherConfiguration).block());
45     }
46
47     @Test
48     void build_shouldCreateRestTemplateWithSslConfiguration() {
49         when(publisherConfiguration.enableDmaapCertAuth()).thenReturn(true);
50         when(publisherConfiguration.keyStorePath()).thenReturn(getPath(KEY_STORE));
51         when(publisherConfiguration.keyStorePasswordPath()).thenReturn(getPath(KEYSTORE_PASSWORD));
52         when(publisherConfiguration.trustStorePath()).thenReturn(getPath(TRUST_STORE));
53         when(publisherConfiguration.trustStorePasswordPath()).thenReturn(getPath(TRUSTSTORE_PASSWORD));
54
55         Assertions.assertNotNull(factory.build(publisherConfiguration).block());
56     }
57
58     private String getPath(String fileName) {
59         return this.getClass().getClassLoader().getResource(fileName).getPath();
60     }
61 }