8ea4b13aa33adac4e8339f38075af2e18553b2a9
[ccsdk/features.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk features
4  * ================================================================================
5  * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
6  * All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *     http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  */
22 package org.onap.ccsdk.features.sdnr.wt.dataprovider.test.util;
23
24 import org.onap.ccsdk.features.sdnr.wt.common.database.config.HostInfo;
25 import org.onap.ccsdk.features.sdnr.wt.common.database.config.HostInfo.Protocol;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28
29 /**
30  * Using pom.xml property to setup URL to database in JUnit tests. Setup impom.xml: <br>
31  * <properties><databaseport>49402</databaseport> </properties> in cooperation with plugin
32  * <groupId>com.github.alexcojocaru</groupId> <artifactId>elasticsearch-maven-plugin</artifactId>
33  * In local development test environment port 49200 is used.
34  */
35 public class HostInfoForTest {
36
37     private static final Logger LOG = LoggerFactory.getLogger(HostInfoForTest.class);
38
39     // static methods
40     public static HostInfo[] get() {
41         int port;
42
43         String portAsString = System.getProperty("databaseport");
44         if (portAsString == null | portAsString.isEmpty())
45             port = 49200;
46         else
47             port = Integer.valueOf(portAsString);
48         HostInfo testHost = new HostInfo("localhost", port, Protocol.HTTP);
49         LOG.info("Testhost {}",testHost);
50         return new HostInfo[] {testHost};
51     }
52     // end of static methods
53 }