test-hgweb-auth.py
114 lines
| 3.5 KiB
| text/x-python
|
PythonLexer
/ tests / test-hgweb-auth.py
Robert Stanca
|
r28748 | from __future__ import absolute_import, print_function | ||
Robert Stanca
|
r28747 | |||
Sune Foldager
|
r8333 | from mercurial import demandimport; demandimport.enable() | ||
Robert Stanca
|
r28747 | from mercurial import ( | ||
Yuya Nishihara
|
r28808 | error, | ||
Augie Fackler
|
r37959 | pycompat, | ||
Yuya Nishihara
|
r28807 | ui as uimod, | ||
Robert Stanca
|
r28747 | url, | ||
util, | ||||
) | ||||
Augie Fackler
|
r37959 | from mercurial.utils import ( | ||
stringutil, | ||||
) | ||||
Sune Foldager
|
r8333 | |||
timeless
|
r28883 | urlerr = util.urlerr | ||
urlreq = util.urlreq | ||||
Yuya Nishihara
|
r28807 | class myui(uimod.ui): | ||
Sune Foldager
|
r8333 | def interactive(self): | ||
return False | ||||
Yuya Nishihara
|
r30559 | origui = myui.load() | ||
Sune Foldager
|
r8333 | |||
def writeauth(items): | ||||
ui = origui.copy() | ||||
Pulkit Goyal
|
r36345 | for name, value in items.items(): | ||
Sune Foldager
|
r8333 | ui.setconfig('auth', name, value) | ||
return ui | ||||
Patrick Mezard
|
r15005 | def test(auth, urls=None): | ||
Yuya Nishihara
|
r37961 | print('CFG:', pycompat.sysstr(stringutil.pprint(auth, bprefix=True))) | ||
Sune Foldager
|
r8333 | prefixes = set() | ||
for k in auth: | ||||
prefixes.add(k.split('.', 1)[0]) | ||||
for p in prefixes: | ||||
Patrick Mezard
|
r15005 | for name in ('.username', '.password'): | ||
if (p + name) not in auth: | ||||
auth[p + name] = p | ||||
Pulkit Goyal
|
r36345 | auth = dict((k, v) for k, v in auth.items() if v is not None) | ||
Sune Foldager
|
r8333 | |||
ui = writeauth(auth) | ||||
def _test(uri): | ||||
Robert Stanca
|
r28748 | print('URI:', uri) | ||
Sune Foldager
|
r8333 | try: | ||
liscju
|
r29377 | pm = url.passwordmgr(ui, urlreq.httppasswordmgrwithdefaultrealm()) | ||
Patrick Mezard
|
r15025 | u, authinfo = util.url(uri).authinfo() | ||
Patrick Mezard
|
r15005 | if authinfo is not None: | ||
pm.add_password(*authinfo) | ||||
Robert Stanca
|
r28748 | print(' ', pm.find_user_password('test', u)) | ||
Yuya Nishihara
|
r28808 | except error.Abort: | ||
Robert Stanca
|
r28748 | print(' ','abort') | ||
Sune Foldager
|
r8333 | |||
Patrick Mezard
|
r15005 | if not urls: | ||
urls = [ | ||||
'http://example.org/foo', | ||||
'http://example.org/foo/bar', | ||||
'http://example.org/bar', | ||||
'https://example.org/foo', | ||||
'https://example.org/foo/bar', | ||||
'https://example.org/bar', | ||||
'https://x@example.org/bar', | ||||
'https://y@example.org/bar', | ||||
] | ||||
for u in urls: | ||||
_test(u) | ||||
Sune Foldager
|
r8333 | |||
Robert Stanca
|
r28748 | print('\n*** Test in-uri schemes\n') | ||
Sune Foldager
|
r8333 | test({'x.prefix': 'http://example.org'}) | ||
test({'x.prefix': 'https://example.org'}) | ||||
test({'x.prefix': 'http://example.org', 'x.schemes': 'https'}) | ||||
test({'x.prefix': 'https://example.org', 'x.schemes': 'http'}) | ||||
Robert Stanca
|
r28748 | print('\n*** Test separately configured schemes\n') | ||
Sune Foldager
|
r8333 | test({'x.prefix': 'example.org', 'x.schemes': 'http'}) | ||
test({'x.prefix': 'example.org', 'x.schemes': 'https'}) | ||||
test({'x.prefix': 'example.org', 'x.schemes': 'http https'}) | ||||
Robert Stanca
|
r28748 | print('\n*** Test prefix matching\n') | ||
Matt Mackall
|
r10282 | test({'x.prefix': 'http://example.org/foo', | ||
'y.prefix': 'http://example.org/bar'}) | ||||
test({'x.prefix': 'http://example.org/foo', | ||||
'y.prefix': 'http://example.org/foo/bar'}) | ||||
Sune Foldager
|
r8333 | test({'x.prefix': '*', 'y.prefix': 'https://example.org/bar'}) | ||
Patrick Mezard
|
r15005 | |||
Robert Stanca
|
r28748 | print('\n*** Test user matching\n') | ||
Patrick Mezard
|
r15005 | test({'x.prefix': 'http://example.org/foo', | ||
'x.username': None, | ||||
'x.password': 'xpassword'}, | ||||
urls=['http://y@example.org/foo']) | ||||
test({'x.prefix': 'http://example.org/foo', | ||||
'x.username': None, | ||||
'x.password': 'xpassword', | ||||
'y.prefix': 'http://example.org/foo', | ||||
'y.username': 'y', | ||||
'y.password': 'ypassword'}, | ||||
urls=['http://y@example.org/foo']) | ||||
test({'x.prefix': 'http://example.org/foo/bar', | ||||
'x.username': None, | ||||
'x.password': 'xpassword', | ||||
'y.prefix': 'http://example.org/foo', | ||||
'y.username': 'y', | ||||
'y.password': 'ypassword'}, | ||||
urls=['http://y@example.org/foo/bar']) | ||||
Patrick Mezard
|
r15024 | |||
def testauthinfo(fullurl, authurl): | ||||
Robert Stanca
|
r28748 | print('URIs:', fullurl, authurl) | ||
timeless
|
r28883 | pm = urlreq.httppasswordmgrwithdefaultrealm() | ||
Patrick Mezard
|
r15024 | pm.add_password(*util.url(fullurl).authinfo()[1]) | ||
Robert Stanca
|
r28748 | print(pm.find_user_password('test', authurl)) | ||
Patrick Mezard
|
r15024 | |||
Robert Stanca
|
r28748 | print('\n*** Test urllib2 and util.url\n') | ||
Patrick Mezard
|
r15024 | testauthinfo('http://user@example.com:8080/foo', 'http://example.com:8080/foo') | ||