aboutsummaryrefslogtreecommitdiffstats
path: root/asdc-tests/src/main/java/org/openecomp/sdc/ci/tests/execute/artifacts/HeatEnvArtifact.java
blob: 2ca09b36f3e0accf2326954a5926d5edcc907b81 (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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
/*-
 * ============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.execute.artifacts;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;

import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.util.List;
import java.util.Map;

import org.apache.commons.codec.binary.Base64;
import org.junit.Rule;
import org.junit.rules.TestName;
import org.openecomp.sdc.be.model.ArtifactDefinition;
import org.openecomp.sdc.be.model.ArtifactUiDownloadData;
import org.openecomp.sdc.be.model.ComponentInstance;
import org.openecomp.sdc.be.model.HeatParameterDefinition;
import org.openecomp.sdc.be.model.Resource;
import org.openecomp.sdc.be.model.Service;
import org.openecomp.sdc.be.model.User;
import org.openecomp.sdc.be.model.heat.HeatParameterType;
import org.openecomp.sdc.ci.tests.api.ComponentBaseTest;
import org.openecomp.sdc.ci.tests.datatypes.ComponentInstanceReqDetails;
import org.openecomp.sdc.ci.tests.datatypes.ServiceReqDetails;
import org.openecomp.sdc.ci.tests.datatypes.enums.LifeCycleStatesEnum;
import org.openecomp.sdc.ci.tests.datatypes.enums.ServiceCategoriesEnum;
import org.openecomp.sdc.ci.tests.datatypes.enums.UserRoleEnum;
import org.openecomp.sdc.ci.tests.datatypes.http.RestResponse;
import org.openecomp.sdc.ci.tests.utils.general.ElementFactory;
import org.openecomp.sdc.ci.tests.utils.rest.ArtifactRestUtils;
import org.openecomp.sdc.ci.tests.utils.rest.BaseRestUtils;
import org.openecomp.sdc.ci.tests.utils.rest.ComponentInstanceRestUtils;
import org.openecomp.sdc.ci.tests.utils.rest.LifecycleRestUtils;
import org.openecomp.sdc.ci.tests.utils.rest.ResourceRestUtils;
import org.openecomp.sdc.ci.tests.utils.rest.ResponseParser;
import org.openecomp.sdc.ci.tests.utils.rest.ServiceRestUtils;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import org.yaml.snakeyaml.Yaml;

import com.google.gson.Gson;

public class HeatEnvArtifact extends ComponentBaseTest {

	@Rule
	public static TestName name = new TestName();

	public HeatEnvArtifact() {
		super(name, HeatEnvArtifact.class.getName());
	}

	@Test(enabled = true)
	public void heatEnvOnResourceFormatTest() throws Exception {

		User sdncModifierDetails = ElementFactory.getDefaultUser(UserRoleEnum.DESIGNER);

		Resource createdResource = createVfFromCSAR(sdncModifierDetails, "csarHeatEnv.csar");
		assertNotNull(createdResource);

		RestResponse certifyState = LifecycleRestUtils.changeComponentState(createdResource, sdncModifierDetails, LifeCycleStatesEnum.CHECKIN);
		BaseRestUtils.checkSuccess(certifyState);

		Resource certifiedResource = ResponseParser.parseToObjectUsingMapper(certifyState.getResponse(), Resource.class);

		ServiceReqDetails serviceDetails = ElementFactory.getDefaultService("ciNewtestservice1", ServiceCategoriesEnum.MOBILITY, sdncModifierDetails.getUserId());

		// 2 create service
		RestResponse createServiceResponse = ServiceRestUtils.createService(serviceDetails, sdncModifierDetails);
		ResourceRestUtils.checkCreateResponse(createServiceResponse);
		Service service = ResponseParser.parseToObjectUsingMapper(createServiceResponse.getResponse(), Service.class);

		// 3 create vf instance in service
		ComponentInstanceReqDetails componentInstanceDetails = ElementFactory.getComponentInstance(certifiedResource);
		RestResponse createComponentInstance = ComponentInstanceRestUtils.createComponentInstance(componentInstanceDetails, sdncModifierDetails, service);
		ResourceRestUtils.checkCreateResponse(createComponentInstance);

		RestResponse getService = ServiceRestUtils.getService(service.getUniqueId());
		BaseRestUtils.checkSuccess(getService);
		service = ResponseParser.parseToObjectUsingMapper(getService.getResponse(), Service.class);

		List<ComponentInstance> componentInstances = service.getComponentInstances();
		assertNotNull(componentInstances);
		assertEquals(1, componentInstances.size());

		ComponentInstance vfi = componentInstances.get(0);
		Map<String, ArtifactDefinition> deploymentArtifacts = vfi.getDeploymentArtifacts();
		assertNotNull(deploymentArtifacts);
		assertEquals(4, deploymentArtifacts.size());
		ArtifactDefinition heatEnv = deploymentArtifacts.get("heat0env");
		assertNotNull(heatEnv);

		Map<String, Object> yaml = downloadComponentInstanceYamlFile(service.getUniqueId(), vfi.getUniqueId(), sdncModifierDetails, heatEnv.getUniqueId());
		assertNotNull(yaml);
		Map<String, Object> paramters = (Map<String, Object>) yaml.get("parameters");
		assertNotNull(paramters);
		assertEquals(8, paramters.size());
		assertEquals(null, paramters.get("param8"));
		List<HeatParameterDefinition> heatParameters = heatEnv.getListHeatParameters();
		heatParameters.forEach(p -> {
			assertEquals(p.getCurrentValue(), paramters.get(p.getName()));
		});
	}

	@Test(enabled = true)
	public void noHeatEnvOnResourceFormatTest() throws Exception {
		User sdncModifierDetails = ElementFactory.getDefaultUser(UserRoleEnum.DESIGNER);

		Resource createdResource = createVfFromCSAR(sdncModifierDetails, "csarHeatNoEnv.csar");
		assertNotNull(createdResource);

		RestResponse certifyState = LifecycleRestUtils.changeComponentState(createdResource, sdncModifierDetails, LifeCycleStatesEnum.CHECKIN);
		BaseRestUtils.checkSuccess(certifyState);

		Resource certifiedResource = ResponseParser.parseToObjectUsingMapper(certifyState.getResponse(), Resource.class);

		ServiceReqDetails serviceDetails = ElementFactory.getDefaultService("ciNewtestservice1", ServiceCategoriesEnum.MOBILITY, sdncModifierDetails.getUserId());

		// 2 create service
		RestResponse createServiceResponse = ServiceRestUtils.createService(serviceDetails, sdncModifierDetails);
		ResourceRestUtils.checkCreateResponse(createServiceResponse);
		Service service = ResponseParser.parseToObjectUsingMapper(createServiceResponse.getResponse(), Service.class);

		// 3 create vf instance in service
		ComponentInstanceReqDetails componentInstanceDetails = ElementFactory.getComponentInstance(certifiedResource);
		RestResponse createComponentInstance = ComponentInstanceRestUtils.createComponentInstance(componentInstanceDetails, sdncModifierDetails, service);
		ResourceRestUtils.checkCreateResponse(createComponentInstance);

		RestResponse getService = ServiceRestUtils.getService(service.getUniqueId());
		BaseRestUtils.checkSuccess(getService);
		service = ResponseParser.parseToObjectUsingMapper(getService.getResponse(), Service.class);

		List<ComponentInstance> componentInstances = service.getComponentInstances();
		assertNotNull(componentInstances);
		assertEquals(1, componentInstances.size());

		ComponentInstance vfi = componentInstances.get(0);
		Map<String, ArtifactDefinition> deploymentArtifacts = vfi.getDeploymentArtifacts();
		assertNotNull(deploymentArtifacts);
		assertEquals(4, deploymentArtifacts.size());
		ArtifactDefinition heatEnv = deploymentArtifacts.get("heat0env");
		assertNotNull(heatEnv);

		Map<String, Object> yaml = downloadComponentInstanceYamlFile(service.getUniqueId(), vfi.getUniqueId(), sdncModifierDetails, heatEnv.getUniqueId());
		assertNotNull(yaml);
		Map<String, Object> paramters = (Map<String, Object>) yaml.get("parameters");
		assertNotNull(paramters);
		assertEquals(8, paramters.size());
		assertEquals(null, paramters.get("param1"));
		assertEquals(null, paramters.get("param2"));
		assertEquals(null, paramters.get("param4"));
		assertEquals(null, paramters.get("param5"));
		assertEquals(null, paramters.get("param7"));
		assertEquals(null, paramters.get("param8"));
		List<HeatParameterDefinition> heatParameters = heatEnv.getListHeatParameters();
		heatParameters.forEach(p -> {
			assertEquals(p.getCurrentValue(), paramters.get(p.getName()));
		});

	}

	@DataProvider(name = "vfModuleCsar")
	public static Object[][] csarNames() {
		return new Object[][] { { "VSPPackage" }, { "csar_1" }, { "csarHeatEnv.csar" } };
	}

	@Test(dataProvider = "vfModuleCsar")
	public void heatEnvOnVfDownloadNoChangesTest(String vfName) throws Exception {
		User sdncModifierDetails = ElementFactory.getDefaultUser(UserRoleEnum.DESIGNER);

		System.out.println("Run for vf " + vfName);
		Resource createdResource = createVfFromCSAR(sdncModifierDetails, vfName);
		assertNotNull(createdResource);
		Map<String, ArtifactDefinition> deploymentArtifacts = createdResource.getDeploymentArtifacts();
		assertNotNull(deploymentArtifacts);

		for (ArtifactDefinition artifact : deploymentArtifacts.values()) {
			if (artifact.getArtifactType().equals("HEAT")) {

				ArtifactDefinition heatArtifact = artifact;
				assertNotNull(heatArtifact);

				ArtifactDefinition heatEnvArtifact = deploymentArtifacts.get(artifact.getArtifactLabel() + "env");
				assertNotNull(heatEnvArtifact);

				String heatEnvId = heatEnvArtifact.getUniqueId();
				downloadHeatEnvAndValidate(sdncModifierDetails, createdResource, heatArtifact, heatEnvId);
			}
		}
		System.out.println("Finished for vf " + vfName);

	}

	private void downloadHeatEnvAndValidate(User sdncModifierDetails, Resource createdResource, ArtifactDefinition heatArtifact, String heatEnvId) throws Exception {
		RestResponse downloadResult = ArtifactRestUtils.downloadResourceArtifactInternalApi(createdResource.getUniqueId(), sdncModifierDetails, heatEnvId);
		BaseRestUtils.checkSuccess(downloadResult);

		ArtifactUiDownloadData artifactUiDownloadData = ResponseParser.parseToObject(downloadResult.getResponse(), ArtifactUiDownloadData.class);
		byte[] fromUiDownload = artifactUiDownloadData.getBase64Contents().getBytes();
		byte[] decodeBase64 = Base64.decodeBase64(fromUiDownload);
		Yaml yaml = new Yaml();

		InputStream inputStream = new ByteArrayInputStream(decodeBase64);

		Map<String, Object> load = (Map<String, Object>) yaml.load(inputStream);
		Map<String, Object> paramters = (Map<String, Object>) load.get("parameters");
		assertNotNull(paramters);

		List<HeatParameterDefinition> heatParameters = heatArtifact.getListHeatParameters();
		assertNotNull(heatParameters);
		assertEquals("Validate heat parameters size", heatParameters.size(), paramters.size());
		Gson gson = new Gson();
		heatParameters.forEach(hpInResource -> {
			Object valueInFile = paramters.get(hpInResource.getName());
			Object valueInResource;
			if (hpInResource.getCurrentValue() == null) {
				valueInResource = hpInResource.getDefaultValue();
			} else {
				valueInResource = hpInResource.getCurrentValue();
			}
			if (valueInResource == null) {
				assertEquals("Validate null value for parameter " + hpInResource.getName(), valueInResource, valueInFile);
			} else {
				HeatParameterType type = HeatParameterType.isValidType(hpInResource.getType());
				// if (type != null && (HeatParameterType.JSON == type || HeatParameterType.COMMA_DELIMITED_LIST == type)){
				// String jsonValue = gson.toJson(valueInFile).toString();
				//
				// assertEquals("Validate value as json string for parameter " +hpInResource.getName() ,valueInResource, jsonValue);
				// }else{
				assertEquals("Validate value for parameter " + hpInResource.getName(), valueInResource, valueInFile.toString());
				// }
			}
		});
	}

	@Test(enabled = true)
	public void heatEnvOnVfFailedTest() throws Exception {
		User sdncModifierDetails = ElementFactory.getDefaultUser(UserRoleEnum.DESIGNER);

		Resource createdResource = createVfFromCSAR(sdncModifierDetails, "csar_1");
		assertNotNull(createdResource);
		Map<String, ArtifactDefinition> deploymentArtifacts = createdResource.getDeploymentArtifacts();
		assertNotNull(deploymentArtifacts);
		String heatEnvId = "wrongId";
		RestResponse downloadResult = ArtifactRestUtils.downloadResourceArtifactInternalApi(createdResource.getUniqueId(), sdncModifierDetails, heatEnvId);

		assertEquals("Validate error code", 404, downloadResult.getErrorCode().intValue());

		// BaseRestUtils.checkErrorResponse(downloadResult, ActionStatus.ARTIFACT_NOT_FOUND);

	}

	@Test(dataProvider = "vfModuleCsar")
	public void heatEnvOnVfDownloadChangeParamTest(String vfName) throws Exception {
		User sdncModifierDetails = ElementFactory.getDefaultUser(UserRoleEnum.DESIGNER);

		Resource createdResource = createVfFromCSAR(sdncModifierDetails, vfName);
		assertNotNull(createdResource);
		Map<String, ArtifactDefinition> deploymentArtifacts = createdResource.getDeploymentArtifacts();
		assertNotNull(deploymentArtifacts);

		ArtifactDefinition heatArt = deploymentArtifacts.get("heat0");
		assertNotNull(heatArt);

		List<HeatParameterDefinition> heatParameters = heatArt.getListHeatParameters();
		assertNotNull(heatParameters);
		HeatParameterDefinition paramForChange = null;
		for (HeatParameterDefinition hp : heatParameters) {
			if (hp.getType().equals("string")) {
				paramForChange = hp;
				break;
			}
		}
		assertNotNull(paramForChange);
		paramForChange.setCurrentValue("newValueForTest");
		RestResponse updateResult = ArtifactRestUtils.updateDeploymentArtifactToResource(heatArt, sdncModifierDetails, createdResource.getUniqueId());
		BaseRestUtils.checkSuccess(updateResult);
		
		RestResponse getResourceResult = ResourceRestUtils.getResource(createdResource.getUniqueId());
		BaseRestUtils.checkSuccess(getResourceResult);
		
		Resource resource = ResponseParser.convertResourceResponseToJavaObject(getResourceResult.getResponse());
		assertNotNull(resource);
		deploymentArtifacts = resource.getDeploymentArtifacts();
		assertNotNull(deploymentArtifacts);

		heatArt = deploymentArtifacts.get("heat0");
		assertNotNull(heatArt);
		ArtifactDefinition heatEnvArt = deploymentArtifacts.get("heat0env");
		assertNotNull(heatEnvArt);
		
		downloadHeatEnvAndValidate(sdncModifierDetails, createdResource, heatArt, heatEnvArt.getUniqueId());

	}

	// ****************************************
	private Map<String, Object> downloadComponentInstanceYamlFile(String serviceUniqueId, String resourceInstanceId, User user, String artifactUniqeId) throws Exception {
		RestResponse heatEnvDownloadResponse = ArtifactRestUtils.downloadResourceInstanceArtifact(serviceUniqueId, resourceInstanceId, user, artifactUniqeId);
		BaseRestUtils.checkSuccess(heatEnvDownloadResponse);

		ArtifactUiDownloadData artifactUiDownloadData = ResponseParser.parseToObject(heatEnvDownloadResponse.getResponse(), ArtifactUiDownloadData.class);
		byte[] fromUiDownload = artifactUiDownloadData.getBase64Contents().getBytes();
		byte[] decodeBase64 = Base64.decodeBase64(fromUiDownload);
		Yaml yaml = new Yaml();

		InputStream inputStream = new ByteArrayInputStream(decodeBase64);

		Map<String, Object> load = (Map<String, Object>) yaml.load(inputStream);

		return load;
	}
}