Skip to content

Skeptical.

Skeptical. #118

name: WebRTC Data Channel Interoperability Test
on:
push:
branches:
- master
pull_request:
branches:
- master
repository_dispatch:
types: [datachannel-test-command]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# Job Description: Performs the Data Channel Test between each combination of the client and server for each library.
interop-tests:
runs-on: ubuntu-latest
services:
redis:
image: redis:alpine
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
echo-test-server:
image: ghcr.io/sipsorcery/${{ matrix.server }}-webrtc-echo
credentials:
username: ${{ github.actor }}
password: ${{ secrets.CR_PAT }}
#ports:
# - 8080:8080
options: "--name echo-server"
strategy:
matrix:
server: ["libdatachannel", "sipsorcery", "werift"]
client: ["libdatachannel", "sipsorcery", "werift"]
steps:
- name: Wait for Redis to be ready
run: |
for i in {1..30}; do
redis-cli -h 127.0.0.1 ping && break || sleep 1;
done
- name: Data Channel test for server ${{ matrix.server }} and ${{ matrix.client }} client
id: check_connection
run: |
docker run --entrypoint "/client.sh" --network ${{ job.container.network }} ghcr.io/sipsorcery/${{ matrix.client }}-webrtc-echo "-s http://echo-server:8080/offer -t 1"
result=$?
echo "Check connection for ${{ matrix.server }} server and ${{ matrix.client }} client result $result."
echo "::set-output name=TEST_RESULT::$result"
continue-on-error: true
- name: Set output results
id: set_output
run: |
# Store this in Redis!
#result_entry="${{ matrix.server }},${{ matrix.client }},${{ steps.check_connection.outputs.TEST_RESULT }}"
# Job Description: Collates the results of the interop tests into a mark down table.
collate:
runs-on: ubuntu-latest
needs: [interop-tests]
steps:
- uses: actions/checkout@v2
- name: Create results file from interop test outputs
run: |
echo "Collating results from:"
echo "results=${{ toJSON(needs.interop-tests.outputs) }}"
echo "| Server | Client | Test Result |" > DataChannel_Echo_test_results.md
echo "|--------|--------|-------------|" >> DataChannel_Echo_test_results.md
# Read results from the job output
IFS=' ' read -r -a results_array <<< "${{ needs.interop-tests.outputs.results }}"
for result in "${results_array[@]}"; do
IFS=',' read -r server client test_result <<< "$result"
echo "| $server | $client | $test_result |" >> DataChannel_Echo_test_results.md
done
cat DataChannel_Echo_test_results.md
- name: Commit the results to the git repository
if: github.event_name != 'pull_request'
run: |
git config user.name github-actions
git config user.email [email protected]
git pull
#git add DataChannel_Echo_test_results.md DataChannel_Echo_test_results.png
#git commit DataChannel_Echo_test_results.md DataChannel_Echo_test_results.png -m "Automated data channel echo test results."
#git add DataChannel_Echo_test_results.md
git commit DataChannel_Echo_test_results.md -m "Automated data channel echo test results."
git push