2 * ============LICENSE_START=======================================================
3 * ONAP : ccsdk features
4 * ================================================================================
5 * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
22 package org.onap.ccsdk.features.sdnr.wt.dataprovider.test.util;
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;
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.
35 public class HostInfoForTest {
37 private static final Logger LOG = LoggerFactory.getLogger(HostInfoForTest.class);
40 public static HostInfo[] get() {
43 String portAsString = System.getProperty("databaseport");
44 if (portAsString == null | portAsString.isEmpty())
47 port = Integer.valueOf(portAsString);
48 HostInfo testHost = new HostInfo("localhost", port, Protocol.HTTP);
49 LOG.info("Testhost {}",testHost);
50 return new HostInfo[] {testHost};
52 // end of static methods