Add aiomoqt (Python asyncio MoQT client) to implementation registry#67
Open
gmarzot wants to merge 1 commit intoenglishm:mainfrom
Open
Add aiomoqt (Python asyncio MoQT client) to implementation registry#67gmarzot wants to merge 1 commit intoenglishm:mainfrom
gmarzot wants to merge 1 commit intoenglishm:mainfrom
Conversation
aiomoqt is a Python asyncio implementation of MoQT supporting both draft-14 and draft-16 via version negotiation. The client role ships a TAP v14 runner matching TEST-CLIENT-INTERFACE.md (env vars RELAY_URL / TESTCASE / TLS_DISABLE_VERIFY / VERBOSE; CLI flags -r / -t / -l / -v / --tls-disable-verify; exit 0 / 1 / 127). Pre-built public image at ghcr.io/gmarzot/aiomoqt:latest (also tagged :0.8.1 for the initial release). Source, Dockerfile, and regression matrix: https://github.com/gmarzot/aiomoqt Test cases registered: - 6 standard: setup-only, announce-only, publish-namespace-done, subscribe-error, announce-subscribe, subscribe-before-announce - 2 probes: fetch, join (most relays will return structured errors or mark these unsupported)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds aiomoqt — a Python asyncio MoQT implementation — to the client implementation registry.
Pre-built public image: `ghcr.io/gmarzot/aiomoqt:latest` (also tagged `:0.8.1` for the initial release).
Implementation details
Test client contract (per `TEST-CLIENT-INTERFACE.md`)
Test cases registered
Standard six from the interop runner spec:
Plus two probes (beyond the standard six):
Verification
```
docker pull ghcr.io/gmarzot/aiomoqt:0.8.1
docker run --rm ghcr.io/gmarzot/aiomoqt:0.8.1 -l
docker run --rm -e RELAY_URL=moqt://moqx-main.ci.openmoq.org:4433
ghcr.io/gmarzot/aiomoqt:0.8.1 --draft 14
-> ok 1..6, TAP v14 output
```
Test plan
Happy to adjust the entry or ship additional roles/test cases if useful for the runner. Thanks for maintaining this!