aboutsummaryrefslogtreecommitdiffstats
path: root/kud/tests/plugin_eaa.sh
blob: 5cf44e0227a4bf15096e303dc473d37c3ebc0761 (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
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

set -o errexit
set -o nounset
set -o pipefail
#set -o xtrace

source _common_test.sh
source _functions.sh
source _common.sh

if [ ${1:+1} ]; then
    if [ "$1" == "--external" ]; then
        master_ip=$(kubectl cluster-info | grep "Kubernetes master" | \
            awk -F ":" '{print $2}' | awk -F "//" '{print $2}')
        onap_svc_node_port=30498
        base_url="http://$master_ip:$onap_svc_node_port/v1"
    fi
fi

base_url=${base_url:-"http://localhost:9015/v1"}
kubeconfig_path="$HOME/.kube/config"
csar_eaa_id=8030a02a-7253-11ea-bc55-0242ac130003
csar_sample_app_id=150da0b3-aa8c-481e-b661-2620b810765e
rb_eaa_name="eaa"
rb_sample_app_name="sample_app"
rb_version="plugin_test"
chart_eaa_name="eaa"
chart_sample_app_name="sample-app"
profile_eaa_name="test_eaa_profile"
profile_sample_app_name="test_sample_app_profile"
release_name="test-release"
namespace_eaa="openness"
namespace_sample_app="default"
cloud_region_id="kud"
cloud_region_owner="localhost"

# Setup
install_deps
populate_CSAR_eaa_rbdefinition "$csar_eaa_id"

print_msg "Registering resource bundle for EAA"
payload="$(cat <<EOF
{
    "rb-name": "${rb_eaa_name}",
    "rb-version": "${rb_version}",
    "chart-name": "${chart_eaa_name}"
}
EOF
)"
call_api -d "${payload}" "${base_url}/rb/definition"

print_msg "Uploading resource bundle content for EAA"
call_api --data-binary "@${CSAR_DIR}/${csar_eaa_id}/rb_definition.tar.gz" \
         "${base_url}/rb/definition/${rb_eaa_name}/${rb_version}/content"

print_msg "Registering rb's profile for EAA"
payload="$(cat <<EOF
{
    "rb-name": "${rb_eaa_name}",
    "rb-version": "${rb_version}",
    "profile-name": "${profile_eaa_name}",
    "release-name": "${release_name}",
    "namespace": "${namespace_eaa}"
}
EOF
)"
call_api -d "${payload}" "${base_url}/rb/definition/${rb_eaa_name}/${rb_version}/profile"

print_msg "Uploading profile data for EAA"
call_api --data-binary "@${CSAR_DIR}/${csar_eaa_id}/rb_profile.tar.gz" \
         "${base_url}/rb/definition/${rb_eaa_name}/${rb_version}/profile/${profile_eaa_name}/content"

print_msg "Setup cloud data"
payload="$(cat <<EOF
{
    "cloud-region": "$cloud_region_id",
    "cloud-owner": "$cloud_region_owner"
}
EOF
)"
call_api -F "metadata=$payload" \
         -F "file=@$kubeconfig_path" \
         "${base_url}/connectivity-info" >/dev/null #massive output

print_msg "Creating EAA"
payload="$(cat <<EOF
{
    "rb-name": "${rb_eaa_name}",
    "rb-version": "${rb_version}",
    "profile-name": "${profile_eaa_name}",
    "cloud-region": "${cloud_region_id}"
}
EOF
)"
response="$(call_api -d "${payload}" "${base_url}/instance")"
echo "$response"
vnf_eaa_id="$(jq -r '.id' <<< "${response}")"

wait_for_deployment eaa 1

#Create sample producer and sample consumer
populate_CSAR_eaa_sample_app_rbdefinition "$csar_sample_app_id"

print_msg "Registering resource bundle for Sample App"
payload="$(cat <<EOF
{
    "rb-name": "${rb_sample_app_name}",
    "rb-version": "${rb_version}",
    "chart-name": "${chart_sample_app_name}"
}
EOF
)"
call_api -d "${payload}" "${base_url}/rb/definition"

print_msg "Uploading resource bundle content for Sample App"
call_api --data-binary "@${CSAR_DIR}/${csar_sample_app_id}/rb_definition.tar.gz" \
         "${base_url}/rb/definition/${rb_sample_app_name}/${rb_version}/content"

print_msg "Registering rb's profile for Sample App"
payload="$(cat <<EOF
{
    "rb-name": "${rb_sample_app_name}",
    "rb-version": "${rb_version}",
    "profile-name": "${profile_sample_app_name}",
    "release-name": "${release_name}",
    "namespace": "${namespace_sample_app}"
}
EOF
)"
call_api -d "${payload}" "${base_url}/rb/definition/${rb_sample_app_name}/${rb_version}/profile"

print_msg "Uploading profile data for Sample App"
call_api --data-binary "@${CSAR_DIR}/${csar_sample_app_id}/rb_profile.tar.gz" \
         "${base_url}/rb/definition/${rb_sample_app_name}/${rb_version}/profile/${profile_sample_app_name}/content"

print_msg "Creating Sample Apps: producer and consumer"
payload="$(cat <<EOF
{
    "rb-name": "${rb_sample_app_name}",
    "rb-version": "${rb_version}",
    "profile-name": "${profile_sample_app_name}",
    "cloud-region": "${cloud_region_id}"
}
EOF
)"
response="$(call_api -d "${payload}" "${base_url}/instance")"
echo "$response"
vnf_sample_app_id="$(jq -r '.id' <<< "${response}")"

wait_for_deployment producer 1
wait_for_deployment consumer 1

print_msg "Validating EAA is running"
kubectl get --namespace=${namespace_eaa} pods | grep eaa

print_msg "Validating sample producer and sample consumer are running"
kubectl get --namespace=${namespace_sample_app}  pods | grep producer
kubectl get --namespace=${namespace_sample_app} pods | grep consumer

print_msg "Validating logs of EAA"
EAA=`kubectl get --namespace=${namespace_eaa} pods | grep eaa | awk '{print $1}'`
kubectl logs --namespace=${namespace_eaa}  ${EAA}

print_msg "Validating logs of sample producer and sample consumer"
# sleep 5 seconds to let producer and consumer generate some logs
sleep 5
PRODUCER=`kubectl get --namespace=${namespace_sample_app} pods | grep producer | awk '{print $1}'`
CONSUMER=`kubectl get --namespace=${namespace_sample_app} pods | grep consumer | awk '{print $1}'`
kubectl logs --namespace=${namespace_sample_app} ${PRODUCER}
kubectl logs --namespace=${namespace_sample_app} ${CONSUMER}

print_msg "Retrieving EAA details"
call_api "${base_url}/instance/${vnf_eaa_id}"

print_msg "Retrieving Sample App details"
call_api "${base_url}/instance/${vnf_sample_app_id}"

#Teardown
print_msg "Deleting sample apps: producer and consumer"
delete_resource "${base_url}/instance/${vnf_sample_app_id}"

print_msg "Deleting Profile for sample app"
delete_resource "${base_url}/rb/definition/${rb_sample_app_name}/${rb_version}/profile/${profile_sample_app_name}"

print_msg "Deleting Resource Bundle for sample app"
delete_resource "${base_url}/rb/definition/${rb_sample_app_name}/${rb_version}"

print_msg "Deleting EAA"
delete_resource "${base_url}/instance/${vnf_eaa_id}"

print_msg "Deleting Profile for EAA"
delete_resource "${base_url}/rb/definition/${rb_eaa_name}/${rb_version}/profile/${profile_eaa_name}"

print_msg "Deleting Resource Bundle for EAA"
delete_resource "${base_url}/rb/definition/${rb_eaa_name}/${rb_version}"

print_msg "Deleting ${cloud_region_id} cloud region connection"
delete_resource "${base_url}/connectivity-info/${cloud_region_id}"