#!/usr/bin/env bash # Phase 3: Process & Pipeline API Test # Modules: 05_process, 10_pipeline # Endpoints: 7 BASE="https://m5api.momentry.ddns.net" API_KEY="muser_68600856036340bcafc01930eb4bd839_1774418104_97221b69" FILE_UUID="a6fb22eebefaef17e62af874997c5944" PASS=0 FAIL=0 TOTAL=0 echo "============================================" echo " Phase 3: Process & Pipeline API Test" echo " Base: $BASE" echo " File: $FILE_UUID" echo "============================================" echo "" test_api() { local method="$1" path="$2" body="$3" desc="$4" TOTAL=$((TOTAL+1)) local tmpfile="/tmp/m5api_resp_${TOTAL}.json" local curl_args=(-s -o "$tmpfile" -w "\nHTTP:%{http_code}") curl_args+=(-X "$method") curl_args+=(-H "Content-Type: application/json") curl_args+=(-H "X-API-Key: $API_KEY") if [ -n "$body" ]; then curl_args+=(-d "$body") fi local result result=$(curl "${curl_args[@]}" "${BASE}${path}" 2>/dev/null) local code=$(echo "$result" | grep "HTTP:" | tr -d "HTTP:") local resp_body=$(echo "$result" | sed '/^HTTP:/d') local size=${#resp_body} if [ "$code" -ge 200 ] 2>/dev/null && [ "$code" -lt 400 ] 2>/dev/null; then PASS=$((PASS+1)) printf " ✅ %2d. %-5s %-55s → %s (%d B) — %s\n" "$TOTAL" "$method" "$path" "$code" "$size" "$desc" else FAIL=$((FAIL+1)) printf " ❌ %2d. %-5s %-55s → %s (%d B) — %s\n" "$TOTAL" "$method" "$path" "$code" "$size" "$desc" local preview preview=$(echo "$resp_body" | head -c 150) echo " $preview" fi } echo "── Jobs ──" test_api "GET" "/api/v1/jobs?page=1&page_size=3" "" "List jobs" test_api "GET" "/api/v1/progress/$FILE_UUID" "" "Processing progress" echo "" echo "── Process Triggers ──" test_api "POST" "/api/v1/file/$FILE_UUID/process" '{"processors":["asr"]}' "Trigger ASR processing" test_api "POST" "/api/v1/file/$FILE_UUID/process" '{"processors":["cut"]}' "Trigger CUT processing" echo "" echo "── Pipeline Status ──" test_api "GET" "/api/v1/stats/ingestion-status/$FILE_UUID" "" "Ingestion status" test_api "GET" "/health/detailed" "" "Detailed health" echo "" echo "── Chunking ──" test_api "GET" "/api/v1/file/$FILE_UUID/chunk/llm_parent_${FILE_UUID}_2099_2105" "" "Get parent chunk" echo "" echo "============================================" echo " Total: $TOTAL" echo " Passed: $PASS ✅" echo " Failed: $FAIL ❌" echo "============================================" if [ $FAIL -gt 0 ]; then echo "❌ Phase 3 FAILED" exit 1 else echo "✅ Phase 3 PASSED" fi