41 lines
1.5 KiB
Bash
Executable file
41 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
set -e -u -o pipefail
|
|
cd "$(dirname "$0")"
|
|
. .e2erc
|
|
[ -f .env.cloud ] && . .env.cloud
|
|
|
|
if [ "$SERVER" != "cloud" ]; then
|
|
mme2e_log "Skipping cloud instance initialization: operation supported only for cloud server, but running with SERVER='$SERVER'"
|
|
exit 0
|
|
elif [ -n "${MM_CUSTOMER_ID:-}" ]; then
|
|
mme2e_log "Skipping cloud user creation: customer with ID '$MM_CUSTOMER_ID' is already configured. Please run 'make cloud-teardown' before creating a new user."
|
|
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."
|