summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/att/ecomp/dcae/ci/api/tests/vfcmt/CreateVfcmt.java
blob: deb10206aa486427d8e1a0c75ecba2853e3ed9fb (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
package com.att.ecomp.dcae.ci.api.tests.vfcmt;

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

import java.io.IOException;

import org.assertj.core.api.SoftAssertions;
import org.openecomp.d2.ci.api.ElementFactory;
import org.openecomp.d2.ci.datatypes.User;
import org.openecomp.d2.ci.datatypes.UserRoleEnum;
import org.openecomp.d2.ci.datatypes.http.RestResponse;
import org.openecomp.d2.ci.report.ExtentTestActions;
import org.testng.annotations.*;

import com.att.ecomp.dcae.ci.api.tests.DcaeRestBaseTest;
import org.onap.sdc.dcae.composition.vfcmt.Vfcmt;
import com.att.ecomp.dcae.ci.utilities.DcaeRestClient;
import com.att.ecomp.dcae.ci.utilities.DcaeTestConstants;
import com.aventstack.extentreports.Status;
import com.att.ecomp.dcae.ci.utilities.StringUtils;

public class CreateVfcmt extends DcaeRestBaseTest {
	
	private Vfcmt input;
	private RestResponse response;
	
	@BeforeClass
	public void executeApiCall() {
		// arrange
		input = new Vfcmt();
		input.setName(StringUtils.randomString("CI-", 20));
		input.setDescription(StringUtils.randomString("", 10));
		try {
			// act
			ExtentTestActions.log(Status.INFO, "Creating vfcmt");
			response = DcaeRestClient.createVfcmt(input.getName(), input.getDescription());
			ExtentTestActions.log(Status.DEBUG, "Response: " + StringUtils.truncate(response));
		} catch (Exception err) {
			ExtentTestActions.log(Status.ERROR, err);
			err.printStackTrace();
		}
	}
	
	/* Positive tests */
	
	@Test
	public void test_responseStatusOk() throws IOException {
		// assert
		ExtentTestActions.log(Status.INFO, "Verifing response status is 200");
		assertThat(response.getStatusCode()).as("response status").isEqualTo(200);
	}
	
	@Test
	public void test_responseIsValidStructure() throws IOException {
		// assert
		ExtentTestActions.log(Status.INFO, "Parsing response to a VFCMT");
		Vfcmt createdVfcmt = gson.fromJson(response.getResponse(), Vfcmt.class);
		ExtentTestActions.log(Status.INFO, "validating parsed response structure");
		SoftAssertions.assertSoftly(softly -> {
			softly.assertThat(createdVfcmt.getCategory()).isEqualTo("Template");
			softly.assertThat(createdVfcmt.getInvariantUUID()).isNotEmpty();
			softly.assertThat(createdVfcmt.getUuid()).isNotEmpty();
			softly.assertThat(createdVfcmt.getLastUpdaterUserId()).isEqualTo(DcaeRestClient.getDefaultUser().getUserId());
			softly.assertThat(createdVfcmt.getLifecycleState()).isEqualTo(DcaeTestConstants.Sdc.State.NOT_CERTIFIED_CHECKOUT);
			softly.assertThat(createdVfcmt.getName()).isEqualTo(input.getName());
			softly.assertThat(createdVfcmt.getDescription()).isEqualTo(input.getDescription());
			softly.assertThat(createdVfcmt.getResourceType()).isEqualTo("VFCMT");
			softly.assertThat(createdVfcmt.getSubCategory()).isEqualTo("Monitoring Template");
			softly.assertThat(createdVfcmt.getVersion()).isEqualTo("0.1");
		});
	}
	
	/* Negative tests */
	
//	@Test
//	public void testNameLengthGraterThen50_TBD() throws IOException {
//		// arrange
//		int length = 51;
//		String name = StringUtils.randomString("CI-", length);
//		String description = StringUtils.randomString("", 10);
//		// act
//		RestResponse response = DcaeRestClient.createVfcmt(name, description);
//		// assert
//		
//	}
	
	@Test
	public void testWithNonExistingUser_status403() throws IOException {
		// arrange
		String fakeUserId = "anonymous";
		String name = StringUtils.randomString("CI-", 20);
		String description = StringUtils.randomString("", 10);
		// act
		ExtentTestActions.log(Status.INFO, "Creating vfcmt with fake user");
		RestResponse response = DcaeRestClient.createVfcmt(name, description, fakeUserId);
		ExtentTestActions.log(Status.DEBUG, "response: " + StringUtils.truncate(response));
		// assert
		assertThat(response.getStatusCode())
			.as("status code")
			.isEqualTo(403);
	}
	
	@Test
	public void testCreateTwoVfcmtsWithSameName_status409() throws IOException {
		// arrange
		String name = StringUtils.randomString("CI-", 20);
		ExtentTestActions.log(Status.INFO, "Creating first vfcmt with name '" + name + "'");
		RestResponse response1 = DcaeRestClient.createVfcmt(name, StringUtils.randomString("", 10));
		ExtentTestActions.log(Status.DEBUG, "First Response: " + StringUtils.truncate(response1));
		if (response1.getStatusCode() != 200) {
			fail("unable to arrange test - could not create the first vfcmt");
		}
		// act
		ExtentTestActions.log(Status.INFO, "Creating second vfcmt with same name '" + name + "'");
		RestResponse response2 = DcaeRestClient.createVfcmt(name, StringUtils.randomString("", 10));
		ExtentTestActions.log(Status.DEBUG, "Second response: " + StringUtils.truncate(response2));
		// assert
		assertThat(response2.getStatusCode())
			.as("second status code")
			.isEqualTo(409);
	}
	
	@Test
	public void testWithNonDesignerRole_status403() throws IOException {
		// arrange
		User tester = ElementFactory.getDefaultUser(UserRoleEnum.TESTER);
		String name = StringUtils.randomString("CI-", 20);
		String description = StringUtils.randomString("", 10);
		// act
		ExtentTestActions.log(Status.INFO, "Creating vfcmt with role tester");
		RestResponse response = DcaeRestClient.createVfcmt(name, description, tester.getUserId());
		ExtentTestActions.log(Status.DEBUG, "response: " + StringUtils.truncate(response));
		// assert
		assertThat(response.getStatusCode())
			.as("status code")
			.isEqualTo(403);
	}

	
}