Skip to content

Commit 14e0db8

Browse files
committed
Peer connection result fixes.
1 parent 08a1d39 commit 14e0db8

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

.github/workflows/peerconnection-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
echo '${{ toJSON(needs.interoptests.outputs) }}' | python3 test/collate-results.py > PeerConnection_test_results.md
133133
134134
# Display the results file
135-
cat DataChannel_Echo_test_results.md
135+
cat PeerConnection_test_results.md
136136
137137
- name: Replace Peer Connection Test Results in README
138138
run: |

README.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,20 @@ The current interoperability tests are:
3434

3535
- **[Data Channel Echo Test](doc/DataChannelEchoTestSpecification.md)**: This test builds on the [Peer Connection Test](doc/PeerConnectionTestSpecification.md) and adds a `data channel` test. It tests the ability of the peers to create a data channel and then checks that the `Server Peer` can echo a string message sent by the `Client Peer`.
3636

37-
![Peer Connection Test Results](https://github.com/sipsorcery/webrtc-echoes/blob/testresults/PeerConnection_test_results.png)
37+
## Peer Connection Test Results
38+
Test run at 2024-10-12 21:10:32.093918
39+
40+
| Server | aiortc | libdatachannel | pion | sipsorcery | werift |
41+
|--------|--------|--------|--------|--------|--------|
42+
| aiortc || || ||
43+
| gstreamer || ||||
44+
| janus ||||||
45+
| kurento ||| |||
46+
| libdatachannel ||||||
47+
| libwebrtc ||||||
48+
| pion ||||||
49+
| sipsorcery ||||||
50+
| werift ||||||
3851

3952
## Data Channel Echo Test Results
4053
Test run at 2024-10-12 21:07:27.701971

test/collate-results.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
print(f'| {serverKey: <12} ', end='')
7373
for clientKey in clientKeys:
7474
if clientKey in results_dict[serverKey]:
75-
resultChar = '✔' if results_dict[serverKey][clientKey] == '0' else ''
75+
resultChar = '✔' if results_dict[serverKey][clientKey] == '0' else 'X'
7676
print(f'| {resultChar: <7}', end='')
7777
else:
7878
print(f'| {" ":<7}', end='')

0 commit comments

Comments
 (0)