-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathintegration.sh
55 lines (42 loc) · 2.02 KB
/
integration.sh
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
#!/bin/bash
# Check if enough arguments are provided
if [ $# -lt 2 ]; then
echo "Please provide the four arguments QStash parameters:"
echo "Usage: $0 <QSTASH_URL> <QSTASH_TOKEN> <QSTASH_CURRENT_SIGNING_KEY> <QSTASH_NEXT_SIGNING_KEY>"
exit 1
fi
# Store the provided arguments
MOCK_QSTASH_URL="$1"
MOCK_QSTASH_TOKEN="$2"
QSTASH_CURRENT_SIGNING_KEY="$3"
QSTASH_NEXT_SIGNING_KEY="$4"
echo "INFO: starting ngrok tunnel"
# Start ngrok with the provided configuration file
ngrok start --all --config integration.yml --log=stdout > ngrok.log &
NGROK_PID=$!
sleep 5 # Allow some time for ngrok to start
echo "INFO: ngrok tunnel started."
# Extract the ngrok URLs from the logs
ngrok_url_3000=$(grep -o 'url=https://[a-zA-Z0-9.-]*\.ngrok-free\.app' ngrok.log | grep -m 1 -o 'https://[a-zA-Z0-9.-]*\.ngrok-free\.app' | head -n1)
ngrok_url_3001=$(grep -o 'url=https://[a-zA-Z0-9.-]*\.ngrok-free\.app' ngrok.log | grep -m 2 -o 'https://[a-zA-Z0-9.-]*\.ngrok-free\.app' | tail -n1)
# Update the integration.test.ts file
if [[ "$OSTYPE" == "darwin"* ]]; then
sed -i '' 's/\.skip//g' integration.test.ts
sed -i '' "s|const LOCAL_WORKFLOW_URL = .*|const LOCAL_WORKFLOW_URL = '$ngrok_url_3000';|" integration.test.ts
sed -i '' "s|const LOCAL_THIRD_PARTY_URL = .*|const LOCAL_THIRD_PARTY_URL = '$ngrok_url_3001';|" integration.test.ts
else
sed -i 's/\.skip//g' integration.test.ts
sed -i "s|const LOCAL_WORKFLOW_URL = .*|const LOCAL_WORKFLOW_URL = '$ngrok_url_3000';|" integration.test.ts
sed -i "s|const LOCAL_THIRD_PARTY_URL = .*|const LOCAL_THIRD_PARTY_URL = '$ngrok_url_3001';|" integration.test.ts
fi
echo "INFO: integration.test.ts updated."
# Set environment variables
export MOCK_QSTASH_URL="$MOCK_QSTASH_URL"
export MOCK_QSTASH_TOKEN="$MOCK_QSTASH_TOKEN"
export QSTASH_CURRENT_SIGNING_KEY="$QSTASH_CURRENT_SIGNING_KEY"
export QSTASH_NEXT_SIGNING_KEY="$QSTASH_NEXT_SIGNING_KEY"
echo "INFO: running tests."
# Run integration tests
bun test integration.test.ts --bail
# Wait for ngrok process to be manually stopped
wait $NGROK_PID