summaryrefslogtreecommitdiffstats
path: root/kud/tests/negative_tests/_test_functions.sh
blob: f4e9472d3c8a0f8296626969b2d101e9ce84c12b (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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# /*
#  * Copyright 2020 Intel Corporation, Inc
#  *
#  * 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.
#  */

# Additional functions to run negative tests

set -o errexit
set -o nounset
set -o pipefail

FUNCTIONS_DIR="$(readlink -f "$(dirname "${BASH_SOURCE[0]}")")"
my_directory=$(dirname $PWD)

source /etc/environment
source ${my_directory}/negative_tests/_test_variables_setup.sh
source ${my_directory}/_common_test.sh
source ${my_directory}/_functions.sh
source ${my_directory}/_common.sh

function call_api_negative {
    #Runs curl with passed flags and provides
    #additional error handling and debug information

    #Function outputs server response body
    #and performs validation of http_code

    local status
    local curl_response_file="$(mktemp -p /tmp)"
    local curl_common_flags=(-s -w "%{http_code}" -o "${curl_response_file}")
    local command=(curl "${curl_common_flags[@]}" "$@")

    echo "[INFO] Running '${command[@]}'" >&2
    if ! status="$("${command[@]}")"; then
        echo "[ERROR] Internal curl error! '$status'" >&2
        cat "${curl_response_file}"
        rm "${curl_response_file}"
        return 2
    else
        echo "[INFO] Server replied with status: ${status}" >&2
        cat "${curl_response_file}"
        rm "${curl_response_file}"
        return_status=$status
    fi
}


function delete_resource_negative {
    #Issues DELETE http call to provided endpoint
    #and further validates by following GET request

    call_api_negative -X DELETE "$1"
    #! call_api -X GET "$1" >/dev/null
}

function get_resource_negative {
    #! call_api_negative -X GET "$1" >/dev/null
    ! call_api_negative -X GET "$1"
    echo $return_status
}


# Create a test rpoject 
# EOF must start as first chracter in a line for cat to identify the end
function create_project {
        project_name="test_project"
        project_description="test_project_description"
        userData1="user1"
        userData2="user2"
        print_msg "Registering project"
        payload="$(cat <<EOF
        {
            "metadata": {
            "name": "${project_name}",
            "description": "${project_description}",
            "userData1": "${userData1}",
            "userData2": "${userData2}"
            }
        }
EOF
        )"
        call_api -d "${payload}" "${base_url}/projects"
}

function create_composite_app {

        project_name="test_project"
        composite_app_name="test_composite_app_collection"
        composite_app_description="test_project_description"
        composite_app_version="test_composite_app_version"
        userData1="user1"
        userData2="user2"

        print_msg "Registering composite-app"
        payload="$(cat <<EOF
        {
            "metadata": {
            "name": "${composite_app_name}",
            "description": "${composite_app_description}",
            "userData1": "${userData1}",
            "userData2": "${userData2}"
            },
            "spec":{
                "version":"${composite_app_version}"
            }
        }
EOF
        )"
        call_api -d "${payload}" "${base_url}/projects/${project_name}/composite-apps"
}

function delete_all {

    delete_resource_negative "${base_url}/controllers/${genericPlacementIntent}"
    delete_resource_negative "${base_url}/controllers/${hpaIntent}"
    delete_resource_negative "${base_url}/controllers/${trafficIntent}"
    delete_resource_negative "${base_url}/controllers/${CostBasedIntent}"
    delete_resource_negative "${base_url}/controllers/${OVNintent}"
    delete_resource_negative "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/deployment-intent-groups/${deploymentIntentGroupName}/intents/${intentToBeAddedinDeploymentIntentGroup}"
    delete_resource_negative "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/deployment-intent-groups/${deploymentIntentGroupName}"
    delete_resource_negative "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/generic-placement-intents/${genericPlacementIntentName}/app-intents/${appIntentNameForApp2}"
    delete_resource_negative "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/generic-placement-intents/${genericPlacementIntentName}/app-intents/${appIntentNameForApp1}"
    delete_resource_negative "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/generic-placement-intents/${genericPlacementIntentName}"
    delete_resource_negative "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/composite-profiles/${main_composite_profile_name}/profiles/${sub_composite_profile_name2}"
    delete_resource_negative "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/composite-profiles/${main_composite_profile_name}/profiles/${sub_composite_profile_name1}"
    delete_resource_negative "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/composite-profiles/${main_composite_profile_name}"
    delete_resource_negative "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/apps/${app2_name}"
    delete_resource_negative "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/apps/${app1_name}"
    delete_resource_negative "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}"
    delete_resource_negative "${base_url}/projects/${project_name}"
}

function create_app {
    app_helm_path="$CSAR_DIR/$csar_id/$1"
    app_name=$2
    app_desc=$3
    userData1="user1"
    userData2="user2"
    project_name="test_project"
    composite_app_name="test_composite_app_collection"
    composite_app_version="test_composite_app_version"

    print_msg "Making app entry in the database"
    payload="$(cat <<EOF
    {
        "metadata": {
        "name": "${app_name}",
        "description": "${app_desc}",
        "userData1": "${userData1}",
        "userData2": "${userData2}"
        }
    }
EOF
    )"

        call_api -F "metadata=$payload" \
        -F "file=@$app_helm_path" \
            "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/apps"
}

# BEGIN: Register the main composite-profile
function create_main_composite_profile {
    print_msg "Registering the main composite-profile"
    payload="$(cat <<EOF
    {
        "metadata":{
        "name":"${main_composite_profile_name}",
        "description":"${main_composite_profile_description}",
        "userData1":"${userData1}",
        "userData2":"${userData2}"
        }
    }
EOF
    )"
    call_api -d "${payload}" "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/composite-profiles"
}

function create_profile_app {

    sub_composite_profile_name=$1
    app_name=$2
    app_profile_path="$CSAR_DIR/$csar_id/$3"

    print_msg "Registering profile with app1(collectd)"
    payload="$(cat <<EOF
    {
        "metadata":{
        "name":"${sub_composite_profile_name}",
        "description":"${sub_composite_profile_description}",
        "userData1":"${userData1}",
        "userData2":"${userData2}"
        },
        "spec":{
        "app-name":  "${app_name}"
        }
    }
EOF
    )"

    call_api -F "metadata=$payload" \
        -F "file=@$app_profile_path" \
        "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/composite-profiles/${main_composite_profile_name}/profiles"
}

# BEGIN: Register GenericPlacementIntents with the database
function create_generic_placement_intent_app1 {
    print_msg "Registering GenericPlacementIntent for app1"
    payload="$(cat <<EOF
    {
        "metadata":{
        "name":"${genericPlacementIntentName}",
        "description":"${genericPlacementIntentDesc}",
        "userData1":"${userData1}",
        "userData2":"${userData2}"
        },
        "spec":{
        "logical-cloud":"${logicalCloud}"
        }
    }
EOF
    )"
    call_api -d "${payload}" "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/generic-placement-intents"
}

# BEGIN: Adding placement intent for each app in the composite app.
function create_placement_intent_app {
    appIntentNameForApp=$1
    appIntentForAppDesc=$2
    app_name=$3

    print_msg "Adding placement intent for app"
    payload="$(cat <<EOF
    {
        "metadata":{
        "name":"${appIntentNameForApp}",
        "description":"${appIntentForAppDesc}",
        "userData1":"${userData1}",
        "userData2":"${userData2}"
        },
        "spec":{
        "app-name":"${app_name}",
        "intent":{
         "allOf":[
            {  "provider-name":"${providerName1}",
               "cluster-name":"${clusterName1}"
            },
            {
               "provider-name":"${providerName2}",
               "cluster-name":"${clusterName2}"
            },
            {
               "anyOf":[
                  {
                     "provider-name":"${providerName1}",
                     "cluster-label-name":"${clusterLabelName1}"
                  },
                  {
                     "provider-name":"${providerName2}",
                     "cluster-label-name":"${clusterLabelName2}"
                  }
               ]
            }
         ]
      }
   }
}
EOF
    )"
    call_api -d "${payload}" "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/generic-placement-intents/${genericPlacementIntentName}/app-intents"
}

# BEGIN: Registering DeploymentIntentGroup in the database
function create_deployment_intent_group {
print_msg "Registering DeploymentIntentGroup"
payload="$(cat <<EOF
{
   "metadata":{
      "name":"${deploymentIntentGroupName}",
      "description":"${deploymentIntentGroupNameDesc}",
      "userData1":"${userData1}",
      "userData2":"${userData2}"
   },
   "spec":{
      "profile":"${main_composite_profile_name}",
      "version":"${releaseName}",
      "override-values":[
         {
            "app-name":"${app1_name}",
            "values":
               {
                  "collectd_prometheus.service.targetPort":"9104"
               }
         },
         {
            "app-name":"${app2_name}",
            "values":
               {
                  "prometheus.service.nameOfPort":"WebPort9090"
               }
         }
      ]
   }
}
EOF
)"
call_api -d "${payload}" "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/deployment-intent-groups"
}

function create_adding_all_intents_to_deployment_intent_group {
# BEGIN: Adding intents to an intent group
print_msg "Adding all the intents to the deploymentIntent group"
payload="$(cat <<EOF
{
   "metadata":{
      "name":"${intentToBeAddedinDeploymentIntentGroup}",
      "description":"${intentToBeAddedinDeploymentIntentGroupDesc}",
      "userData1":"${userData1}",
      "userData2":"${userData2}"
   },
   "spec":{
      "intent":{
         "${genericPlacementIntent}":"${genericPlacementIntentName}",
         "${hpaIntent}" : "${hpaControllerIntentName}", 
         "${trafficIntent}" : "${trafficControllerIntentName}",
         "${CostBasedIntent}" : "${CostBasedIntentName}",
         "${OVNintent}" : "${OVNintentName}"
      }
   }
}
EOF
)"
call_api -d "${payload}" "${base_url}/projects/${project_name}/composite-apps/${composite_app_name}/${composite_app_version}/deployment-intent-groups/${deploymentIntentGroupName}/intents"
# END: Adding intents to an intent group
}