9940f912341b68d40f59257a1a5c5f36ee98caae
[dcaegen2/services/sdk.git] /
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 java.io.File;
24 import java.net.URL;
25 import org.testcontainers.containers.DockerComposeContainer;
26
27 final class DMaapContainer {
28     private static final String MR_COMPOSE_RESOURCE_NAME = "dmaap-msg-router/message-router-compose.yml";
29     private static final String DOCKER_COMPOSE_FILE_PATH = getDockerComposeFilePath(
30             MR_COMPOSE_RESOURCE_NAME);
31     static final int DMAAP_SERVICE_EXPOSED_PORT = 3904;
32     static final String DMAAP_SERVICE_NAME = "dmaap";
33
34     private DMaapContainer() {}
35
36     static DockerComposeContainer createContainerInstance(){
37         return new DockerComposeContainer(
38                 new File(DOCKER_COMPOSE_FILE_PATH))
39                 .withExposedService(DMAAP_SERVICE_NAME, DMAAP_SERVICE_EXPOSED_PORT)
40                 .withLocalCompose(true);
41     }
42
43     private static String getDockerComposeFilePath(String resourceName){
44         URL resource = DMaapContainer.class.getClassLoader()
45                 .getResource(resourceName);
46
47         if(resource != null) return resource.getFile();
48         else throw new DockerComposeNotFoundException(String
49                 .format("File %s does not exist", resourceName));
50     }
51 }