summaryrefslogtreecommitdiffstats
path: root/ui-ci/src/main/java/org/openecomp/sdc/ci/tests/US/Testing.java
blob: 089ad9580f722200502f58985b9f91a1f50e3c36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.sdc.ci.tests.US;

import java.io.File;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;

import org.openecomp.sdc.ci.tests.tosca.datatypes.ToscaDefinition;
import org.openecomp.sdc.ci.tests.utils.ToscaParserUtils;
import org.testng.Assert;






public class Testing {

	public static void main(String[] args) throws Exception {
		// TODO Auto-generated method stub

		File path = new File("C:\\Users\\rp955r\\Desktop\\US\\US831517\\TCExport\\TC1459238.yml");
		ToscaDefinition toscaDefinition = ToscaParserUtils.parseToscaYamlToJavaObject(path);
		
		Map<String, Object> vl_us831517_1 = new HashMap<String, Object>();
		vl_us831517_1.put("property_1", true);
		vl_us831517_1.put("property_2", "init_value_2");
		vl_us831517_1.put("property_3", "init_value_3");
		
		
		Map<String, Object> vl_us831517_2 = new HashMap<String, Object>();
		vl_us831517_2.put("property_1", false);
		vl_us831517_2.put("property_2", "init_value_2");
		vl_us831517_2.put("property_3", "new_value_3");
		
		Map<String, Object> vl_us831517_3 = new HashMap<String, Object>();
		vl_us831517_3.put("property_1", true);
		vl_us831517_3.put("property_2", "init_value_2");
		vl_us831517_3.put("property_3", "init_value_3");
		vl_us831517_3.put("property_4", false);
		vl_us831517_3.put("property_5", "init_value_5");
		
		Map<String, Map<String, Object>> predefinedProperties = new HashMap<String, Map<String, Object>>();
		predefinedProperties.put("VL_US831517_1", vl_us831517_1);
		predefinedProperties.put("VL_US831517_2", vl_us831517_2);
		predefinedProperties.put("VL_US831517_3", vl_us831517_3);
		
		validateNodeTemplatesProperties(predefinedProperties, toscaDefinition);
		
		
		
	}
	
	
	
	private static void validateNodeTemplatesProperties(Map<String, Map<String, Object>> predefinedMap, ToscaDefinition toscaDefinition) {
		
		for(String key: predefinedMap.keySet()) {
			Map<String, Object> nodeTemplateProperties = getNodeTemplatePropertiesByNodeTemplateType(key, toscaDefinition);
			
			predefinedMap.get(key).forEach((i,j) -> {
				Assert.assertEquals(nodeTemplateProperties.get(i), j, "Expected that the properties will be equal");
			});
		}

	}
	
	// Get properties by type
	private static Map<String, Object> getNodeTemplatePropertiesByNodeTemplateType(String nodeTemplateType, ToscaDefinition toscaDefinition) {
		Map<String, Object> propertiesMap = null;
		
		Set<String> nodeTemplates = getNodeTemplates(toscaDefinition);
		
		for(String nodeTemplate: nodeTemplates) {
			String currentNodeTemplateType = getNodeTemplateType(toscaDefinition, nodeTemplate);
			currentNodeTemplateType = currentNodeTemplateType.substring(currentNodeTemplateType.lastIndexOf(".") + 1);
			if(currentNodeTemplateType.equals(nodeTemplateType)) {
				propertiesMap = getNodeTemplateProperties(toscaDefinition, nodeTemplate);
				break;
			}
		}
		
		return propertiesMap;
	}
	
	// Get node templates
	private static Set<String> getNodeTemplates(ToscaDefinition toscaDefinition) {
		Set<String> resourceInstanceArray = toscaDefinition.getTopology_template().getNode_templates().keySet();
		return resourceInstanceArray;
	}
	
	// Get type of node template
	private static String getNodeTemplateType(ToscaDefinition toscaDefinition, String nodeTemplate) {
		return toscaDefinition.getTopology_template().getNode_templates().get(nodeTemplate).getType();
	}
	
	// Get properties of node template
	private static Map<String, Object> getNodeTemplateProperties(ToscaDefinition toscaDefinition, String nodeTemplate) {
		Map<String, Object> propertiesMap = toscaDefinition.getTopology_template().getNode_templates().get(nodeTemplate).getProperties();
		return propertiesMap;
	}
	
	

}