54 lines
3.3 KiB
Bash
54 lines
3.3 KiB
Bash
#!/bin/bash
|
|
# Test-Script für Pipeline-System Backend (Issue #28)
|
|
# Ausführen auf Server: bash test-pipeline-backend.sh
|
|
|
|
echo "═══════════════════════════════════════════════════════════"
|
|
echo "Pipeline-System Backend Tests"
|
|
echo "═══════════════════════════════════════════════════════════"
|
|
echo ""
|
|
|
|
# Container Names (from docker-compose.dev-env.yml)
|
|
POSTGRES_CONTAINER="dev-mitai-postgres"
|
|
DB_USER="mitai_dev"
|
|
DB_NAME="mitai_dev"
|
|
|
|
echo "Test 1: Migration 019 ausgeführt"
|
|
echo "─────────────────────────────────────────────────────────"
|
|
docker exec $POSTGRES_CONTAINER psql -U $DB_USER -d $DB_NAME -c \
|
|
"SELECT version, applied_at FROM schema_migrations WHERE version = '019';"
|
|
echo ""
|
|
|
|
echo "Test 2: Tabelle pipeline_configs existiert"
|
|
echo "─────────────────────────────────────────────────────────"
|
|
docker exec $POSTGRES_CONTAINER psql -U $DB_USER -d $DB_NAME -c \
|
|
"\d pipeline_configs" | head -40
|
|
echo ""
|
|
|
|
echo "Test 3: Seed-Daten (3 Configs erwartet)"
|
|
echo "─────────────────────────────────────────────────────────"
|
|
docker exec $POSTGRES_CONTAINER psql -U $DB_USER -d $DB_NAME -c \
|
|
"SELECT name, is_default, active, stage2_prompt, stage3_prompt FROM pipeline_configs ORDER BY is_default DESC, name;"
|
|
echo ""
|
|
|
|
echo "Test 4: ai_prompts erweitert (is_system_default)"
|
|
echo "─────────────────────────────────────────────────────────"
|
|
docker exec $POSTGRES_CONTAINER psql -U $DB_USER -d $DB_NAME -c \
|
|
"SELECT slug, is_system_default, (default_template IS NOT NULL) as has_default FROM ai_prompts WHERE slug LIKE 'pipeline_%' ORDER BY slug;"
|
|
echo ""
|
|
|
|
echo "Test 5: stage1_prompts Array-Inhalte"
|
|
echo "─────────────────────────────────────────────────────────"
|
|
docker exec $POSTGRES_CONTAINER psql -U $DB_USER -d $DB_NAME -c \
|
|
"SELECT name, stage1_prompts FROM pipeline_configs WHERE name = 'Alltags-Check';"
|
|
echo ""
|
|
|
|
echo "Test 6: modules JSONB"
|
|
echo "─────────────────────────────────────────────────────────"
|
|
docker exec $POSTGRES_CONTAINER psql -U $DB_USER -d $DB_NAME -c \
|
|
"SELECT name, jsonb_pretty(modules) as modules FROM pipeline_configs WHERE name = 'Alltags-Check';"
|
|
echo ""
|
|
|
|
echo "═══════════════════════════════════════════════════════════"
|
|
echo "Alle DB-Tests abgeschlossen!"
|
|
echo "═══════════════════════════════════════════════════════════"
|