* [skip ci] Support Cloud/daily tests and Zephyr integration * [skip ci] Fix workflow file * [skip ci] Fix typo in workflow input name * Fix cloud variable passing * [skip ci] Fix typo * Utilize master branch image for daily tests * Apply Saturn's suggestion, fixes and improvements
38 строки
1.3 KiB
Bash
Исполняемый файл
38 строки
1.3 KiB
Bash
Исполняемый файл
#!/bin/bash
|
|
set -e -u -o pipefail
|
|
cd "$(dirname "$0")"
|
|
. .e2erc
|
|
|
|
if [ "$SERVER" != "cloud" ]; then
|
|
mme2e_log "Skipping cloud instance initialization: operation supported only for cloud server, but running with SERVER='$SERVER'"
|
|
exit 0
|
|
fi
|
|
|
|
mme2e_log "Initializing cloud tests"
|
|
|
|
# Assert that required variables are set
|
|
MME2E_ENVCHECK_MSG="variable required for initializing cloud tests, but is empty or unset."
|
|
: "${CWS_URL:?$MME2E_ENVCHECK_MSG}"
|
|
: "${MM_LICENSE:?$MME2E_ENVCHECK_MSG}"
|
|
|
|
response=$(curl -fsSL -X POST -H @- "${CWS_URL}/api/v1/tests/create-customer?sku=cloud-enterprise&is_paid=true" <<<"${CWS_EXTRA_HTTP_HEADERS:-}")
|
|
MM_CUSTOMER_ID=$(echo "$response" | jq -r .customer_id)
|
|
MM_CLOUD_API_KEY=$(echo "$response" | jq -r .api_key)
|
|
MM_CLOUD_INSTALLATION_ID=$(echo "$response" | jq -r .installation_id)
|
|
|
|
export MM_CUSTOMER_ID=$MM_CUSTOMER_ID
|
|
export MM_CLOUD_API_KEY=$MM_CLOUD_API_KEY
|
|
export MM_CLOUD_INSTALLATION_ID=$MM_CLOUD_INSTALLATION_ID
|
|
export MM_CLOUDSETTINGS_CWSURL=$CWS_URL
|
|
export MM_CLOUDSETTINGS_CWSAPIURL=$CWS_URL
|
|
|
|
mme2e_generate_envfile_from_var_names >.env.cloud <<EOF
|
|
MM_CLOUDSETTINGS_CWSURL
|
|
MM_CLOUDSETTINGS_CWSAPIURL
|
|
MM_CLOUD_API_KEY
|
|
MM_CUSTOMER_ID
|
|
MM_CLOUD_INSTALLATION_ID
|
|
EOF
|
|
|
|
mme2e_log "Test cloud customer created, MM_CUSTOMER_ID: $MM_CUSTOMER_ID."
|