# HG changeset patch # User Gregory Szorc <gregory.szorc@gmail.com> # Date 2017-04-14 01:04:38 # Node ID aa836f56c3ccf5c10868a226df69c830d77410fc # Parent 83527d9f1f1381ffd7325b7c4297ffbdfed78236 keepalive: send HTTP request headers in a deterministic order An upcoming patch will add low-level testing of the bytes being sent over the wire. As part of developing that test, I discovered that the order of headers in HTTP requests wasn't deterministic. This patch makes the order deterministic to make things easier to test. diff --git a/mercurial/keepalive.py b/mercurial/keepalive.py --- a/mercurial/keepalive.py +++ b/mercurial/keepalive.py @@ -298,11 +298,12 @@ class KeepAliveHandler(object): def _start_transaction(self, h, req): # What follows mostly reimplements HTTPConnection.request() - # except it adds self.parent.addheaders in the mix. - headers = dict(self.parent.addheaders) - headers.update(req.headers) - headers.update(req.unredirected_hdrs) - headers = dict((n.lower(), v) for n, v in headers.items()) + # except it adds self.parent.addheaders in the mix and sends headers + # in a deterministic order (to make testing easier). + headers = util.sortdict(self.parent.addheaders) + headers.update(sorted(req.headers.items())) + headers.update(sorted(req.unredirected_hdrs.items())) + headers = util.sortdict((n.lower(), v) for n, v in headers.items()) skipheaders = {} for n in ('host', 'accept-encoding'): if n in headers: