578f3e4c4aced0cd1655dad6bd7082b170d9f712
[sdc.git] / openecomp-be / lib / openecomp-core-lib / openecomp-nosqldb-lib / openecomp-nosqldb-core / src / test / java / org / openecomp / core / utilities / Yaml / YamlUtilTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 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  * 
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.openecomp.core.utilities.Yaml;
22
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.openecomp.sdc.tosca.services.YamlUtil;
26 import testobjects.yaml.YamlFile;
27
28
29 public class YamlUtilTest {
30
31   String yamlContent;
32
33   @Before
34   public void setup() {
35     initYamlFileContent();
36   }
37
38   void initYamlFileContent() {
39     yamlContent = "heat_template_version: ss\n" +
40         "description: ab\n" +
41         "parameters:\n" +
42         "  jsa_net_name:    \n" +
43         "    description: network name of jsa log network\n" +
44         "    hidden: true\n" +
45         "    inner:\n" +
46         "        inner1:\n" +
47         "            name: shiri\n" +
48         "        inner2:\n" +
49         "            name: avi";
50   }
51
52   @Test
53   public void shouldConvertSimpleYamlToObject() {
54     new YamlUtil().yamlToObject(yamlContent, YamlFile.class);
55   }
56
57
58     /*public void loadCassandraParameters(){
59         YamlUtil yamlUtil = new YamlUtil();
60         String cassandraKey = "cassandraConfig";
61         String configurationFile = "/configuration.yaml";
62         InputStream yamlAsIS = yamlUtil.loadYamlFileIs(configurationFile);
63         Map<String, LinkedHashMap<String, Object>> configurationMap = yamlUtil.yamlToMap(yamlAsIS);
64         LinkedHashMap<String, Object> cassandraConfiguration = configurationMap.get(cassandraKey);
65         System.out.println(cassandraConfiguration.entrySet());
66     }*/
67 }