2 * ============LICENSE_START====================================
3 * DCAEGEN2-SERVICES-SDK
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
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.cbs.client.api;
24 import static org.assertj.core.api.Assertions.assertThatCode;
25 import static org.assertj.core.api.Assertions.assertThat;
27 import java.net.URISyntaxException;
28 import java.nio.file.Paths;
29 import org.junit.jupiter.api.Test;
30 import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.model.ImmutableCbsClientConfiguration;
31 import org.onap.dcaegen2.services.sdk.security.ssl.ImmutableTrustStoreKeys;
32 import org.onap.dcaegen2.services.sdk.security.ssl.Passwords;
33 import org.onap.dcaegen2.services.sdk.security.ssl.SecurityKeysStore;
34 import reactor.core.publisher.Mono;
36 class CbsClientFactoryTest {
39 void shouldAllowMultipleSubscriptions() throws URISyntaxException {
41 ImmutableCbsClientConfiguration sampleConfiguration = ImmutableCbsClientConfiguration.builder()
43 .appName("dcae-component")
44 .trustStoreKeys(ImmutableTrustStoreKeys.builder()
45 .trustStore(SecurityKeysStore.fromPath(
46 Paths.get(CbsClientFactoryTest.class.getResource("/test-certs/trust.jks").toURI())))
47 .trustStorePassword(Passwords.fromResource("/test-certs/trust.pass"))
49 .hostname("config-binding-service")
54 Mono<CbsClient> cbsClient = CbsClientFactory.createCbsClient(sampleConfiguration);
57 assertThatCode(() -> {
58 CbsClient client1 = cbsClient.block();
59 CbsClient client2 = cbsClient.block();
60 assertThat(client1).isNotNull();
61 assertThat(client2).isNotNull();
62 }).doesNotThrowAnyException();