Mercurial > public > mercurial-scm > hg-stable
diff tests/test-http-api-httpv2.t @ 37058:61393f888dfe
wireproto: define and implement responses in framing protocol
Previously, we only had client-side frame types defined. This commit
defines and implements basic support for server-side frame types.
We introduce two frame types - one for representing the raw bytes
result of a command and another for representing error results.
The types are quite primitive and behavior will expand over time.
But you have to start somewhere.
Our server reactor gains methods to react to an intent to send a
response. Again, following the "sans I/O" pattern, the reactor
doesn't actually send the data. Instead, it gives the caller a
generator to frames that it can send out over the wire.
Differential Revision: https://phab.mercurial-scm.org/D2858
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Wed, 14 Mar 2018 13:57:52 -0700 |
parents | e7a012b60d6e |
children | 861e9d37e56e |
line wrap: on
line diff
--- a/tests/test-http-api-httpv2.t Wed Mar 14 13:32:31 2018 -0700 +++ b/tests/test-http-api-httpv2.t Wed Mar 14 13:57:52 2018 -0700 @@ -195,10 +195,14 @@ s> HTTP/1.1 200 OK\r\n s> Server: testing stub value\r\n s> Date: $HTTP_DATE$\r\n - s> Content-Type: text/plain\r\n - s> Content-Length: 29\r\n + s> Content-Type: application/mercurial-exp-framing-0001\r\n + s> Transfer-Encoding: chunked\r\n s> \r\n - s> customreadonly bytes response + s> 21\r\n + s> \x1d\x00\x00Bcustomreadonly bytes response + s> \r\n + s> 0\r\n + s> \r\n Request to read-write command fails because server is read-only by default @@ -302,10 +306,14 @@ s> HTTP/1.1 200 OK\r\n s> Server: testing stub value\r\n s> Date: $HTTP_DATE$\r\n - s> Content-Type: text/plain\r\n - s> Content-Length: 29\r\n + s> Content-Type: application/mercurial-exp-framing-0001\r\n + s> Transfer-Encoding: chunked\r\n s> \r\n - s> customreadonly bytes response + s> 21\r\n + s> \x1d\x00\x00Bcustomreadonly bytes response + s> \r\n + s> 0\r\n + s> \r\n Authorized request for unknown command is rejected