-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathtest-rust-with-mock.sh
More file actions
executable file
·49 lines (42 loc) · 1.25 KB
/
test-rust-with-mock.sh
File metadata and controls
executable file
·49 lines (42 loc) · 1.25 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
#!/usr/bin/env bash
#
# Run Rust tests against the shared mock backend.
#
# Usage:
# ./scripts/test-rust-with-mock.sh
# ./scripts/test-rust-with-mock.sh --test json_rpc_e2e
#
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
MOCK_API_PORT="${MOCK_API_PORT:-18505}"
MOCK_API_URL="http://127.0.0.1:${MOCK_API_PORT}"
MOCK_LOG="${MOCK_LOG:-/tmp/openhuman-mock-api.log}"
MOCK_PID=""
cleanup() {
if [ -n "$MOCK_PID" ]; then
kill "$MOCK_PID" 2>/dev/null || true
wait "$MOCK_PID" 2>/dev/null || true
fi
}
trap cleanup EXIT
echo "Starting mock API server on ${MOCK_API_URL} ..."
node "$SCRIPT_DIR/mock-api-server.mjs" --port "$MOCK_API_PORT" >"$MOCK_LOG" 2>&1 &
MOCK_PID=$!
for i in $(seq 1 30); do
if curl -sf "${MOCK_API_URL}/__admin/health" >/dev/null 2>&1; then
break
fi
if [ "$i" -eq 30 ]; then
echo "ERROR: mock API server did not become healthy in time." >&2
echo "See logs: $MOCK_LOG" >&2
exit 1
fi
sleep 1
done
export BACKEND_URL="$MOCK_API_URL"
export VITE_BACKEND_URL="$MOCK_API_URL"
echo "Running Rust tests with BACKEND_URL=$BACKEND_URL"
cd "$REPO_ROOT"
source "$HOME/.cargo/env" 2>/dev/null || true
cargo test --manifest-path Cargo.toml --workspace "$@"