* Unify docker-compose files, support opensearch and redis * Support cypress/playwright bools, MM_SERVICE_OVERRIDES input * Remove unused directives from E2E tests * [skip ci] Fix ES tests, PR messages * [skip ci] Fix service pruning on server restart * [skip ci] Make services overrides a CSV, better param descriptions --------- Co-authored-by: Mattermost Build <build@mattermost.com>
29 строки
1.3 KiB
Bash
Исполняемый файл
29 строки
1.3 KiB
Bash
Исполняемый файл
#!/bin/bash
|
|
set -e -u -o pipefail
|
|
cd "$(dirname "$0")"
|
|
. .e2erc
|
|
|
|
# Wait for the required server image
|
|
mme2e_log "Waiting for server image to be available"
|
|
mme2e_wait_image "$SERVER_IMAGE" 4 30
|
|
|
|
# Launch mattermost-server, and wait for it to be healthy
|
|
mme2e_log "Starting E2E containers"
|
|
${MME2E_DC_SERVER} create
|
|
${MME2E_DC_SERVER} up -d --remove-orphans
|
|
if ! mme2e_wait_service_healthy server 60 10; then
|
|
mme2e_log "Mattermost container not healthy, retry attempts exhausted. Giving up." >&2
|
|
exit 1
|
|
fi
|
|
# shellcheck disable=SC2043
|
|
for MIGRATION in migration_advanced_permissions_phase_2; do
|
|
# Query explanation: if it doesn't find the migration in the table, there are 0 results and the command fails with a divide-by-zero error. Otherwise the command succeeds
|
|
MIGRATION_CHECK_COMMAND="${MME2E_DC_SERVER} exec -T -- postgres psql -U mmuser mattermost_test -c \"select 1 / (select count(*) from Systems where name = '${MIGRATION}' and value = 'true');\""
|
|
if ! mme2e_wait_command_success "$MIGRATION_CHECK_COMMAND >/dev/null 2>&1" "Waiting for migration to be completed: ${MIGRATION}" "30" "10"; then
|
|
mme2e_log "Migration ${MIGRATION} not completed, retry attempts exhausted. Giving up." >&2
|
|
exit 2
|
|
fi
|
|
mme2e_log "${MIGRATION}: completed."
|
|
done
|
|
mme2e_log "Mattermost container is running and healthy"
|