mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-10 08:40:27 +01:00
Frederik Ring
1e39ac41f4
* Try running tests in Docker * Spawn new container for each test * Store test artifacts outside of mount * When requested, build up to date image in test script * sudo is unneccessary in containerized test env * Skip azure test * Backdate fixture file in JSON database * Pin versions for azure tools * Mount temp volume for /var/lib/docker to prevent dangling ones created by VOLUME instruction * Fail backdating tests with message * Add some documentation on test setup * Cache images * Run compose stacks with shortened default timeout
44 lines
1.1 KiB
Bash
Executable File
44 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
. ../util.sh
|
|
current_test=$(basename $(pwd))
|
|
|
|
export CERT_DIR=$(mktemp -d)
|
|
|
|
openssl genrsa -des3 -passout pass:test -out "$CERT_DIR/rootCA.key" 4096
|
|
openssl req -passin pass:test \
|
|
-subj "/C=DE/ST=BE/O=IntegrationTest, Inc." \
|
|
-x509 -new -key "$CERT_DIR/rootCA.key" -sha256 -days 1 -out "$CERT_DIR/rootCA.crt"
|
|
|
|
openssl genrsa -out "$CERT_DIR/minio.key" 4096
|
|
openssl req -new -sha256 -key "$CERT_DIR/minio.key" \
|
|
-subj "/C=DE/ST=BE/O=IntegrationTest, Inc./CN=minio" \
|
|
-out "$CERT_DIR/minio.csr"
|
|
|
|
openssl x509 -req -passin pass:test \
|
|
-in "$CERT_DIR/minio.csr" \
|
|
-CA "$CERT_DIR/rootCA.crt" -CAkey "$CERT_DIR/rootCA.key" -CAcreateserial \
|
|
-extfile san.cnf \
|
|
-out "$CERT_DIR/minio.crt" -days 1 -sha256
|
|
|
|
openssl x509 -in "$CERT_DIR/minio.crt" -noout -text
|
|
|
|
docker compose up -d --quiet-pull
|
|
sleep 5
|
|
|
|
docker compose exec backup backup
|
|
|
|
sleep 5
|
|
|
|
expect_running_containers "3"
|
|
|
|
docker run --rm \
|
|
-v minio_backup_data:/minio_data \
|
|
alpine \
|
|
ash -c 'tar -xvf /minio_data/backup/test.tar.gz -C /tmp && test -f /tmp/backup/app_data/offen.db'
|
|
|
|
pass "Found relevant files in untared remote backups."
|