43577f4ae08a7de889e0485d2c93878589b7103a
[dcaegen2/services/sdk.git] /
1 /*
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
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.cbs.client.api;
22
23
24 import static org.assertj.core.api.Assertions.assertThatCode;
25 import static org.assertj.core.api.Assertions.assertThat;
26
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;
35
36 class CbsClientFactoryTest {
37
38     @Test
39     void shouldAllowMultipleSubscriptions() throws URISyntaxException {
40         //given
41         ImmutableCbsClientConfiguration sampleConfiguration = ImmutableCbsClientConfiguration.builder()
42             .protocol("https")
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"))
48                 .build())
49             .hostname("config-binding-service")
50             .port(10443)
51             .build();
52
53         //when
54         Mono<CbsClient> cbsClient = CbsClientFactory.createCbsClient(sampleConfiguration);
55
56         //then
57         assertThatCode(() -> {
58             CbsClient client1 = cbsClient.block();
59             CbsClient client2 = cbsClient.block();
60             assertThat(client1).isNotNull();
61             assertThat(client2).isNotNull();
62         }).doesNotThrowAnyException();
63     }
64 }