Mercurial > hg
view tests/test-hgweb-descend-empties @ 8590:59acb9c7d90f
url: use CONNECT for HTTPS connections through HTTP proxy (issue967)
urllib2 and httplib does not support using CONNECT proxy requests, but
only regular requests over the proxy. This does not work with HTTPS
requests as they typically require that the client issues a CONNECT to
the proxy to give a direct connection to the remote HTTPS server.
This is solved by duplicating some of the httplib functionality and
tying it together with the keepalive library such that a HTTPS
connection that need to be proxied can be proxied by letting a
connection be established to the proxy server and then subsequently
performing the normal request to the specified server through the
proxy server.
As it stands, the code also purports to support HTTPS proxies, i.e.
proxies that you connect to using SSL. These are extremely rare and
nothing is done to ensure that CONNECT requests can be made to these
as that would require multiple SSL handshakes. This use case is also
not supported by most other contemporary web tools like curl and
Firefox3.
author | Henrik Stuart <hg@hstuart.dk> |
---|---|
date | Fri, 22 May 2009 08:56:43 +0200 |
parents | c21d236ca897 |
children |
line wrap: on
line source
#!/bin/sh # Test chains of near empty directories, terminating 3 different ways: # - a1: file at level 4 (deepest) # - b1: two dirs at level 3 # - e1: file at level 2 echo % Set up the repo hg init test cd test mkdir -p a1/a2/a3/a4 mkdir -p b1/b2/b3/b4 mkdir -p b1/b2/c3/c4 mkdir -p d1/d2/d3/d4 echo foo > a1/a2/a3/a4/foo echo foo > b1/b2/b3/b4/foo echo foo > b1/b2/c3/c4/foo echo foo > d1/d2/d3/d4/foo echo foo > d1/d2/foo hg ci -Ama hg serve -n test -p $HGPORT -d --pid-file=hg.pid -E errors.log cat hg.pid >> $DAEMON_PIDS echo % manifest with descending "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT '/file' echo % ERRORS ENCOUNTERED cat errors.log