Skip to content

Workflow file for this run

name: Test API Endpoints
on: [push]
jobs:
setup-websocat:
runs-on: ubuntu-latest
outputs:
artifact-path: ${{ steps.setup.outputs.artifact-path }}
steps:
- uses: actions/checkout@v2
- name: Download websocat
id: setup
run: |
wget https://github.com/vi/websocat/releases/download/v1.8.0/websocat_amd64-linux -O websocat
chmod +x websocat
echo "::set-output name=artifact-path::$(pwd)/websocat"
- name: Upload websocat
uses: actions/upload-artifact@v2
with:
name: websocat
path: ${{ steps.setup.outputs.artifact-path }}
generate-matrix:
needs: setup-websocat
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v2
- name: Install jq
run: sudo apt-get install jq
- name: Generate matrix
id: set-matrix
run: |
MATRIX=$(jq -c '[.[] | .api[] | {url: .url, type: .type}]' data/networks.json)
echo "{ \"include\": $MATRIX }" > matrix.json
echo "::set-output name=matrix::$(cat matrix.json)"
test-endpoints:
needs: [setup-websocat, generate-matrix]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{fromJson(needs.generate-matrix.outputs.matrix)}}
steps:
- uses: actions/checkout@v2
- name: Download websocat
uses: actions/download-artifact@v2
with:
name: websocat
path: /path/to/download
- name: Test Endpoint
run: |
websocat_path="/path/to/download/websocat"
url="${{ matrix.url }}"
type="${{ matrix.type }}"
response=""
status_check="false"
if [ "$type" = "evm" ]; then
response=$(curl -s -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' "$url")
status_check=$(echo "$response" | jq -e '.id' &> /dev/null && echo "true" || echo "false")
elif [ "$type" = "tendermint-http" ]; then
response=$(curl -s "${url}/status")
status_check=$(echo "$response" | jq -e '.jsonrpc' &> /dev/null && echo "true" || echo "false")
elif [ "$type" = "tendermint-rpc" ]; then
response=$(curl -s --header "Content-Type: application/json" --request POST --data '{"method": "status", "params": [], "id": 1}' "$url")
status_check=$(echo "$response" | jq -e '.id' &> /dev/null && echo "true" || echo "false")
elif [ "$type" = "cosmos-http" ]; then
response=$(curl -s "${url}/cosmos/base/tendermint/v1beta1/blocks/latest")
status_check=$(echo "$response" | jq -e '.block_id.hash' &>
/dev/null && echo "true" || echo "false")
elif [ "$type" = "tendermint-ws" ]; then
response=$($websocat_path -t -1 "$url" <<'EOF'
{ "jsonrpc": "2.0", "method": "subscribe", "params": ["tm.event='NewBlock'"], "id": 1 }
EOF
)
status_check=$(echo "$response" | jq -e '.result' &> /dev/null && echo "true" || echo "false")
else
echo "⏭️ Skipping unsupported endpoint type: $type"
status_check="skip"
fi
if [ "$status_check" = "true" ]; then
echo "✅ $url - Successful"
elif [ "$status_check" = "false" ]; then
echo "❌ $url - Failed"
echo "test_failed=true" >> $GITHUB_ENV
fi
- name: Check Test Results
if: ${{ env.test_failed == 'true' }}
run: exit 1