9ece10b5b821fcf4632518832780d4db9e7cc173
[dcaegen2/collectors/ves.git] / src / test / java / org / onap / dcae / common / publishing / DMaapContainer.java
1 /*
2  * ============LICENSE_START====================================
3  * VES Collector
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.dcae.common.publishing;
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 = "onap-dmaap";
33
34     private DMaapContainer() {}
35
36
37     public static DockerComposeContainer createContainerInstance(){
38         return new DockerComposeContainer(
39                 new File(DOCKER_COMPOSE_FILE_PATH))
40                 .withExposedService(DMAAP_SERVICE_NAME, DMAAP_SERVICE_EXPOSED_PORT)
41                 .withLocalCompose(true);
42     }
43
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 RuntimeException(String
52                 .format("File %s does not exist", resourceName));
53     }
54 }