827220c9dda2791d830f3486eb8d4f23da6c310e
[holmes/common.git] / holmes-actions / src / test / java / org / onap / holmes / common / dcae / utils / DcaeConfigurationParserTest.java
1 /*\r
2  * Copyright 2017 ZTE Corporation.\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  * http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 package org.onap.holmes.common.dcae.utils;\r
18 \r
19 import static org.hamcrest.core.IsEqual.equalTo;\r
20 import static org.junit.Assert.assertThat;\r
21 \r
22 import java.io.BufferedReader;\r
23 import java.io.File;\r
24 import java.io.FileNotFoundException;\r
25 import java.io.FileReader;\r
26 import java.io.IOException;\r
27 import java.net.URI;\r
28 import java.net.URISyntaxException;\r
29 import java.net.URL;\r
30 import org.junit.Test;\r
31 import org.onap.holmes.common.dcae.entity.DcaeConfigurations;\r
32 import org.onap.holmes.common.dcae.entity.SecurityInfo;\r
33 \r
34 public class DcaeConfigurationParserTest {\r
35 \r
36     @Test\r
37     public void parse() throws Exception {\r
38         DcaeConfigurations obj = DcaeConfigurationParser.parse(readConfigurationsFromFile("dcae.config.json"));\r
39 \r
40         assertThat(obj.getDefaultRules().size(), equalTo(1));\r
41         assertThat(obj.get("collector.keystore.alias"), equalTo("dynamically generated"));\r
42         assertThat(((SecurityInfo) obj.getPubSecInfo("sec_measurement")).getAafPassword(), equalTo("aaf_password"));\r
43         assertThat(((SecurityInfo) obj.getPubSecInfo("sec_measurement")).getDmaapInfo().getLocation(), equalTo("mtl5"));\r
44     }\r
45 \r
46     private String readConfigurationsFromFile(String fileName) throws URISyntaxException, FileNotFoundException {\r
47         URL url = DcaeConfigurationParserTest.class.getClassLoader().getResource(fileName);\r
48         File configFile = new File(new URI(url.toString()).getPath());\r
49         BufferedReader br = new BufferedReader(new FileReader(configFile));\r
50 \r
51         final StringBuilder sb = new StringBuilder();\r
52         br.lines().forEach(line -> {\r
53             sb.append(line);\r
54         });\r
55         try {\r
56             br.close();\r
57         } catch (IOException e) {\r
58             // Do nothing\r
59         }\r
60         return sb.toString();\r
61     }\r
62 \r
63 }