Add basic subscription test with dummy push server
This adds:
- A dummy Python websocket server as a push service, which then opens a new HTTP server as a push endpoint for each subscription.
- This is done because we do not allow networking with external servers for WPT.
- A encryption helper library that follows multiple web push RFCs.
- This is done because:
- Existing https://github.com/web-push-libs/web-push and https://github.com/web-push-libs/encrypted-content-encoding/ includes multiple codes that WPT don't need (e.g. multiple rs and legacy protocol support) and hard to read along with the specs.
- We want to generate intentionally ill-encrypted data for testing, which is harder with a third party dependency
Known caveats:
- The dummy server works but contradicts to the point for encryption; the dummy doesn't validate VAPID and implementing that part will make way more complexity with no actual extra test coverage.
- We might instead want to somehow allow connection to the push server than adding a dummy server.
- Other servers don't send CORS headers which this test depends on
Differential Revision: https://phabricator.services.mozilla.com/D222665
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1874394
gecko-commit: 34aec3a048ad63a71e265e16e5dadbb399efa30b
gecko-reviewers: jgraham, asuth