summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcae/ci/api/tests/composition/GetCompositionControllerTests.java
blob: 169c5a83a5011b7f73b36dac6005afc221ec20e1 (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
package org.onap.dcae.ci.api.tests.composition;

import static org.assertj.core.api.Assertions.assertThat;

import java.io.IOException;

import com.google.gson.JsonArray;
import com.google.gson.JsonObject;

import org.apache.commons.lang3.RandomStringUtils;
import org.apache.commons.lang3.text.WordUtils;
import org.assertj.core.api.SoftAssertions;
import org.json.simple.JSONObject;
import org.json.simple.JSONValue;
import org.onap.dcae.ci.api.tests.DcaeRestBaseTest;
import org.onap.dcae.ci.entities.RestResponse;
import org.onap.dcae.ci.utilities.DcaeRestClient;
import org.onap.dcae.ci.utilities.DcaeUtil;
import org.onap.dcae.ci.report.Report;
import org.testng.annotations.Test;

import org.onap.sdc.dcae.composition.services.Service;
import org.onap.sdc.dcae.composition.vfcmt.Vfcmt;
import com.aventstack.extentreports.Status;

public class GetCompositionControllerTests extends DcaeRestBaseTest {

	private static final String VFCMT_NAME = "teSt.__.monitoring---TempLATE.";
	
	@Test
	public void test_getComposition() throws Exception{
		Report.log(Status.INFO, "test_getComposition start");
		Vfcmt vfcmtWithArtifactUuid = createServiceAndVfiAndVfcmtAndAttach();
		String uuid = vfcmtWithArtifactUuid.getUuid();
		String lastUpdaterUserId = vfcmtWithArtifactUuid.getLastUpdaterUserId();
		Report.log(Status.INFO, "the created VFCMT uuid is:"+uuid+", going to save composition now");
		saveComposition(uuid, lastUpdaterUserId);
		Report.log(Status.INFO, "Composition saved");
        
        Report.log(Status.INFO, "Get Composition - execute");
		RestResponse response = DcaeRestClient.getComposition(uuid);
		JSONObject resData = (JSONObject) JSONValue.parse(response.getResponse());
		SoftAssertions.assertSoftly(softly -> {
			softly.assertThat(response.getStatusCode()).as("response status").isEqualTo(200);
			softly.assertThat(resData.get("successResponse").toString()).isNotEmpty();
		});
	}
	
	@Test
	public void test_getCompositionNoArtifact() throws Exception{
		Report.log(Status.INFO, "test_getCompositionNoArtifact Get Composition - create vfcmt");
		
		Vfcmt newVfcmt = createNewVfcmt();
		String uuid = newVfcmt.getUuid();

		Report.log(Status.INFO, "Get Composition - execute");
		RestResponse response = DcaeRestClient.getComposition(uuid);
		
		SoftAssertions.assertSoftly(softly -> {
			softly.assertThat(response.getStatusCode()).as("response status").isEqualTo(204);
		});
	}

	private void saveComposition(String uuid, String lastUpdaterUserId) throws Exception, IOException {
		//generate cdump
        String cdump = generateAndSaveCdump(uuid);
		// save composition.yml 
        DcaeRestClient.saveComposition(uuid, lastUpdaterUserId, cdump);
	}
	
	private Vfcmt createServiceAndVfiAndVfcmtAndAttach() throws Exception{
		Vfcmt newVfcmt = createNewVfcmt();

        // create a service in sdc
        Service newService = createServiceWithVFiAsSdcDesigner();

        String serviceUuid = newService.getUuid();
        String vfiName = newService.getResources().get(0).getResourceInstanceName();
        String vfcmtId = newVfcmt.getUuid();

        // attach VFCMT to vfi
        RestResponse res = DcaeRestClient.attachVfiRef(vfcmtId, serviceUuid, vfiName);
        
        return newVfcmt;
	}
	
	private Vfcmt createNewVfcmt() throws Exception {
		String randomSuffix = WordUtils.capitalize(RandomStringUtils.randomAlphanumeric(4).toLowerCase());
        Vfcmt newVfcmt = createVfcmtInstance(randomSuffix);
		return newVfcmt;
	}
	
	private Vfcmt createVfcmtInstance(String randomSuffix) throws Exception{
        String newName = VFCMT_NAME + randomSuffix;
        RestResponse res = DcaeRestClient.createVfcmt(newName,"description");
        assertThat(res.getStatusCode()).isEqualTo(200);
        return gson.fromJson(res.getResponse(), Vfcmt.class);
    }
	private String generateAndSaveCdump(String vfcmtId) throws Exception{
    	JsonArray snmpModelItemFromSdc = DcaeUtil.SdcElementsModelType.getSNMPModelItemFromSdc();
        JsonObject cdump = DcaeRestClient.generateCdumpInput(vfcmtId);
        cdump.add("nodes", snmpModelItemFromSdc);
        return cdump.toString();
    }
}