Support retry in DCAE-SDK DMaaP-Client
[dcaegen2/services/sdk.git] / rest-services / dmaap-client / src / test / java / org / onap / dcaegen2 / services / sdk / rest / services / dmaap / client / api / DMaapContainer.java
1 /*
2  * ============LICENSE_START====================================
3  * DCAEGEN2-SERVICES-SDK
4  * =========================================================
5  * Copyright (C) 2019-2021 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.dmaap.client.api;
22
23 import org.testcontainers.containers.DockerComposeContainer;
24
25 import java.io.File;
26 import java.net.URL;
27
28 final class DMaapContainer {
29     private static final String MR_COMPOSE_RESOURCE_NAME = "dmaap-msg-router/message-router-compose.yml";
30     private static final String DOCKER_COMPOSE_FILE_PATH = getDockerComposeFilePath(MR_COMPOSE_RESOURCE_NAME);
31     static final int DMAAP_SERVICE_EXPOSED_PORT = 3904;
32     static final String DMAAP_SERVICE_NAME = "dmaap";
33     static final int PROXY_MOCK_SERVICE_EXPOSED_PORT = 1080;
34     static final String LOCALHOST = "localhost";
35
36     private DMaapContainer() {}
37
38     static DockerComposeContainer createContainerInstance(){
39         return new DockerComposeContainer(
40                 new File(DOCKER_COMPOSE_FILE_PATH))
41                 .withExposedService(DMAAP_SERVICE_NAME, DMAAP_SERVICE_EXPOSED_PORT)
42                 .withLocalCompose(true);
43     }
44
45     private static String getDockerComposeFilePath(String resourceName) {
46         URL resource = DMaapContainer.class.getClassLoader()
47                 .getResource(resourceName);
48
49         if (resource != null) return resource.getFile();
50         else throw new DockerComposeNotFoundException(String
51                 .format("File %s does not exist", resourceName));
52     }
53 }