Add timeout for Publisher(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 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(
31             MR_COMPOSE_RESOURCE_NAME);
32     static final int DMAAP_SERVICE_EXPOSED_PORT = 3904;
33     static final String DMAAP_SERVICE_NAME = "dmaap";
34     static final int PROXY_SERVICE_EXPOSED_PORT = 8666;
35     static final String LOCALHOST = "localhost";
36
37     private DMaapContainer() {}
38
39     static DockerComposeContainer createContainerInstance(){
40         return new DockerComposeContainer(
41                 new File(DOCKER_COMPOSE_FILE_PATH))
42                 .withExposedService(DMAAP_SERVICE_NAME, DMAAP_SERVICE_EXPOSED_PORT)
43                 .withLocalCompose(true);
44     }
45
46     private static String getDockerComposeFilePath(String resourceName){
47         URL resource = DMaapContainer.class.getClassLoader()
48                 .getResource(resourceName);
49
50         if(resource != null) return resource.getFile();
51         else throw new DockerComposeNotFoundException(String
52                 .format("File %s does not exist", resourceName));
53     }
54 }