aboutsummaryrefslogtreecommitdiffstats
path: root/asdc-tests/src/test/resources/CI/importResource/deleteNormative.sh
blob: fb70f714181003a8fdd7fb987e00ab9a48c557a6 (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
#!/bin/bash

function usage {
	echo "Usage: $0 <hostIp> <hostPort>"
}

function deleteResource() {
	
	ELEMENT_NAME=$1
	echo -e "############### Removing Element ${ELEMENT_NAME} Start ######################"
	http_code=$(curl -s -o /dev/null -w "%{http_code}" -X "DELETE" -H "USER_ID: jh0003" ${HOST_IP}:${HOST_PORT}/sdc2/rest/v1/catalog/resources/res_${ELEMENT_NAME}".1.0")
	if [ ${http_code} -eq 204  ]; then
		echo -e "\n############### Removing Element ${ELEMENT_NAME} status code:${http_code} End #######\n\n\n"
	elif [ ${http_code} -eq 500 ]; then
		echo -e "\n############### Failed to remove Element ${ELEMENT_NAME} status code:${http_code} End #######\n\n\n"
		exit 1
	elif [ ${http_code} -eq 404 ]; then
		echo -e "\n############### Element ${ELEMENT_NAME} not found status code:${http_code} End #######\n\n\n"
	else
		echo -e "\n############### Failed to remove Element ${ELEMENT_NAME} status code:${http_code} End #######\n\n\n"
		exit 1
	fi
}
if [ $# -lt 2 ]
then
	usage
	exit 2
fi

HOST_IP=$1
HOST_PORT=$2

deleteResource "tosca.nodes.Root"
deleteResource "tosca.nodes.Compute"
deleteResource "tosca.nodes.SoftwareComponent"
deleteResource "tosca.nodes.WebServer"
deleteResource "tosca.nodes.WebApplication"
deleteResource "tosca.nodes.DBMS"
deleteResource "tosca.nodes.Database"
deleteResource "tosca.nodes.ObjectStorage"
deleteResource "tosca.nodes.BlockStorage"
deleteResource "tosca.nodes.Container.Runtime"
deleteResource "tosca.nodes.Container.Application"
deleteResource "tosca.nodes.LoadBalancer"
deleteResource "tosca.nodes.network.Port"
deleteResource "tosca.nodes.network.Network"

exit 0