BjornMagnussonXA | e60d04e | 2021-12-27 13:38:01 +0100 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | # ============LICENSE_START=============================================== |
rohithrajneesh | 927c17e | 2023-12-01 14:26:03 +0000 | [diff] [blame^] | 4 | # Copyright (C) 2021-2023 Nordix Foundation. All rights reserved. |
| 5 | # Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved. |
BjornMagnussonXA | e60d04e | 2021-12-27 13:38:01 +0100 | [diff] [blame] | 6 | # ======================================================================== |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| 18 | # ============LICENSE_END================================================= |
| 19 | # |
| 20 | |
| 21 | TC_ONELINE_DESCR="Test of Helm Manager" |
| 22 | |
| 23 | #App names to include in the test when running docker, space separated list |
| 24 | DOCKER_INCLUDED_IMAGES="KUBEPROXY CHARTMUS LOCALHELM HELMMANAGER" |
| 25 | |
| 26 | #App names to include in the test when running kubernetes, space separated list |
| 27 | KUBE_INCLUDED_IMAGES="KUBEPROXY CHARTMUS LOCALHELM HELMMANAGER" |
BjornMagnussonXA | d54225b | 2023-04-19 14:03:49 +0200 | [diff] [blame] | 28 | #Pre-started app (not started by script) to include in the test when running kubernetes, space separated list |
BjornMagnussonXA | e60d04e | 2021-12-27 13:38:01 +0100 | [diff] [blame] | 29 | KUBE_PRESTARTED_IMAGES="" |
| 30 | |
| 31 | #Ignore image in DOCKER_INCLUDED_IMAGES, KUBE_INCLUDED_IMAGES if |
| 32 | #the image is not configured in the supplied env_file |
| 33 | #Used for images not applicable to all supported profile |
| 34 | CONDITIONALLY_IGNORED_IMAGES="" |
| 35 | |
| 36 | #Supported test environment profiles |
rohithrajneesh | 927c17e | 2023-12-01 14:26:03 +0000 | [diff] [blame^] | 37 | SUPPORTED_PROFILES="ORAN-G-RELEASE ORAN-H-RELEASE ORAN-I-RELEASE" |
BjornMagnussonXA | e60d04e | 2021-12-27 13:38:01 +0100 | [diff] [blame] | 38 | #Supported run modes |
| 39 | SUPPORTED_RUNMODES="DOCKER KUBE" |
| 40 | |
| 41 | . ../common/testcase_common.sh $@ |
| 42 | |
| 43 | setup_testenvironment |
| 44 | |
| 45 | #### TEST BEGIN #### |
| 46 | |
| 47 | clean_environment |
| 48 | |
| 49 | start_kube_proxy |
| 50 | |
| 51 | start_chart_museum |
| 52 | |
| 53 | localhelm_create_test_chart dummy |
| 54 | |
| 55 | localhelm_package_test_chart dummy |
| 56 | |
| 57 | chartmus_upload_test_chart dummy |
| 58 | |
| 59 | clean_and_create_namespace test-ns |
| 60 | |
| 61 | localhelm_installed_chart_release NOTINSTALLED test-release test-ns |
| 62 | |
| 63 | start_helm_manager |
| 64 | |
| 65 | helm_manager_api_get_charts 200 EMPTY |
| 66 | |
| 67 | helm_manager_api_exec_add_repo cm $CHART_MUS_SERVICE_PATH |
| 68 | |
| 69 | helm_manager_api_post_repo 201 cm $CHART_MUS_SERVICE_HTTPX $CHART_MUS_SERVICE_HOST $CHART_MUS_SERVICE_PORT |
| 70 | |
| 71 | helm_manager_api_post_onboard_chart 200 cm dummy DEFAULT-VERSION test-release test-ns |
| 72 | |
| 73 | helm_manager_api_get_charts 200 cm dummy DEFAULT-VERSION test-release test-ns |
| 74 | |
| 75 | helm_manager_api_post_install_chart 201 dummy DEFAULT-VERSION |
| 76 | |
| 77 | localhelm_installed_chart_release INSTALLED test-release test-ns |
| 78 | |
| 79 | helm_manager_api_get_charts 200 cm dummy DEFAULT-VERSION test-release test-ns |
| 80 | |
| 81 | helm_manager_api_uninstall_chart 204 dummy DEFAULT-VERSION |
| 82 | |
| 83 | helm_manager_api_get_charts 200 cm dummy DEFAULT-VERSION test-release test-ns |
| 84 | |
| 85 | helm_manager_api_delete_chart 204 dummy DEFAULT-VERSION |
| 86 | |
| 87 | helm_manager_api_get_charts 200 EMPTY |
| 88 | |
| 89 | localhelm_installed_chart_release NOTINSTALLED test-release test-ns |
| 90 | |
| 91 | #### TEST COMPLETE #### |
| 92 | |
| 93 | store_logs END |
| 94 | |
| 95 | print_result |
| 96 | |
| 97 | auto_clean_environment |
| 98 | |
| 99 | |
| 100 | |