-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathgen-postgres-baselines.sh
More file actions
executable file
·81 lines (70 loc) · 3.09 KB
/
gen-postgres-baselines.sh
File metadata and controls
executable file
·81 lines (70 loc) · 3.09 KB
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
#!/bin/bash
# Generate PostgreSQL baselines for versions 14, 15, 16, 17, 18
# Run from the DBDiff project root on the host (requires podman):
# cd /path/to/DBDiff && bash scripts/gen-postgres-baselines.sh
set -e
DBDIFF_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$DBDIFF_DIR"
NETWORK="dbdiff-pg-baseline-net"
PG_USER="dbdiff"
PG_PASS="rootpass"
PG_DB="diff1"
# Create network (ignore if exists)
podman network create "$NETWORK" 2>/dev/null || true
for PG_VERSION in 14 15 16 17 18; do
CONTAINER_NAME="pg${PG_VERSION}-baseline"
echo ""
echo "════════════════════════════════════════════════"
echo " PostgreSQL ${PG_VERSION}"
echo "════════════════════════════════════════════════"
# Remove any existing container with this name
podman rm -f "$CONTAINER_NAME" 2>/dev/null || true
# Start PG container
echo "Starting postgres:${PG_VERSION}..."
podman run -d \
--name "$CONTAINER_NAME" \
--network "$NETWORK" \
-e POSTGRES_PASSWORD="$PG_PASS" \
-e POSTGRES_USER="$PG_USER" \
-e POSTGRES_DB="$PG_DB" \
"docker.io/library/postgres:${PG_VERSION}"
# Wait for PostgreSQL to be ready (up to 60 seconds)
echo "Waiting for PostgreSQL ${PG_VERSION} to be ready..."
for i in $(seq 1 60); do
if podman exec "$CONTAINER_NAME" pg_isready -U "$PG_USER" -q 2>/dev/null; then
echo "PostgreSQL ${PG_VERSION} ready after ${i}s"
break
fi
sleep 1
if [ "$i" -eq 60 ]; then
echo "ERROR: PostgreSQL ${PG_VERSION} did not become ready in 60 seconds"
podman stop "$CONTAINER_NAME" || true
podman rm "$CONTAINER_NAME" || true
continue 2
fi
done
# Run tests in record mode from the same network
echo "Running baselines for PostgreSQL ${PG_VERSION}..."
podman run --rm \
--userns=keep-id \
--network "$NETWORK" \
-v "${DBDIFF_DIR}:/usr/src/dbdiff:z" \
-e DBDIFF_RECORD_MODE=true \
-e DB_HOST_POSTGRES="$CONTAINER_NAME" \
localhost/dbdiff-php83 \
bash -c "cd /usr/src/dbdiff && ./scripts/run-tests.sh --postgres \"$CONTAINER_NAME\" --record 2>&1"
# Stop and clean up PG container
echo "Cleaning up PostgreSQL ${PG_VERSION} container..."
podman stop "$CONTAINER_NAME" || true
podman rm "$CONTAINER_NAME" || true
echo " Done."
done
# Remove network
podman network rm "$NETWORK" 2>/dev/null || true
echo ""
echo "══════════════════════════════════════════════════"
echo " All PostgreSQL baselines generated successfully!"
echo "══════════════════════════════════════════════════"
echo ""
echo "Generated baseline files:"
ls -la "${DBDIFF_DIR}/tests/expected/" | grep pgsql