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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.dcaegen2.services.sdk.rest.services.dmaap.client.service.producer;
23 import static org.mockito.Mockito.mock;
24 import static org.mockito.Mockito.when;
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;
31 class DmaaPRestTemplateFactoryTest {
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();
41 void build_shouldCreateRestTemplateWithoutSslConfiguration() {
42 when(publisherConfiguration.enableDmaapCertAuth()).thenReturn(false);
44 Assertions.assertNotNull(factory.build(publisherConfiguration).block());
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));
55 Assertions.assertNotNull(factory.build(publisherConfiguration).block());
58 private String getPath(String fileName) {
59 return this.getClass().getClassLoader().getResource(fileName).getPath();