a274d681bb44a7a3860aae960b108d11349f7d9b
[dmaap/messagerouter/msgrtr.git] / src / test / java / com / att / mr / test / dme2 / LoadPropertyFile.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. 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  *        http://www.apache.org/licenses/LICENSE-2.0
11  *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package com.att.mr.test.dme2;
23
24 import java.io.IOException;
25 import java.io.InputStream;
26 import java.util.Properties;
27
28 import com.att.eelf.configuration.EELFLogger;
29 import com.att.eelf.configuration.EELFManager;
30 import org.json.JSONObject;
31
32 public class LoadPropertyFile {
33         //private static final Logger LOGGER = Logger.getLogger(LoadPropertyFile.class);
34         private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(LoadPropertyFile.class);
35
36         static public Properties getPropertyFileDataProducer() {
37                 Properties prop = new Properties();
38                 LOGGER.info("loading the property file");
39                 try {
40                         InputStream inputStream = LoadPropertyFile.class.getClassLoader()
41                                         .getResourceAsStream("dme2testcase.properties");
42                         
43                         prop.load(inputStream);
44                         LOGGER.info("successfully loaded the property file");
45                 } catch (IOException e) {
46                         LOGGER.error("Error while retrieving API keys: " + e);
47                 }
48                 return prop;
49         }
50
51         static public void loadAFTProperties(String lat, String longi) {
52                 System.setProperty("AFT_LATITUDE", lat);
53                 System.setProperty("AFT_LONGITUDE", longi);
54                 System.setProperty("AFT_ENVIRONMENT", "AFTUAT");
55                 // printProperties();
56                 System.out.println("Latitude =" + lat);
57                 System.out.println("Longitude =" + longi);
58         }
59
60         static public boolean isValidJsonString(String chkString) {
61                 boolean isJson = true;
62                 try {
63                         new JSONObject(chkString);
64                 } catch (Exception e) {
65                         isJson = false;
66                 }
67                 return isJson;
68         }
69 }