You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #2 added basically one very simple happy-path integration test, where a peer connects to a single service on a remote peer and exchanges a single request/response pair. this doesn't exercise a bunch of the protocol, including potential edge cases.
some other stuff we definitely need to test includes:
multiple connections to the same service
multiple connections to different services
closing a connection and opening a new one (exercising stuff like ID reuse)
This branch implements a bunch more of the MGNP protocol, including
`Hello` messages for connection establishment (see #12). In addition,
I've redone the frame types, including a much more usable
`OutboundFrame` API for the `Wire` implementation, which should be much
easier to serialize (see #13).
Furthermore, I've added a bunch more tests (see #14).
Closes#13
PR #2 added basically one very simple happy-path integration test, where a peer connects to a single service on a remote peer and exchanges a single request/response pair. this doesn't exercise a bunch of the protocol, including potential edge cases.
some other stuff we definitely need to test includes:
The text was updated successfully, but these errors were encountered: