94
def vary_by_http_proxy_auth_scheme():
96
('basic', dict(_auth_server=http_utils.ProxyBasicAuthServer)),
97
('digest', dict(_auth_server=http_utils.ProxyDigestAuthServer)),
99
dict(_auth_server=http_utils.ProxyBasicAndDigestAuthServer)),
96
103
def vary_by_http_auth_scheme():
98
105
('basic', dict(_auth_server=http_utils.HTTPBasicAuthServer)),
99
106
('digest', dict(_auth_server=http_utils.HTTPDigestAuthServer)),
101
108
dict(_auth_server=http_utils.HTTPBasicAndDigestAuthServer)),
103
# Add some attributes common to all scenarios
104
for scenario_id, scenario_dict in scenarios:
105
scenario_dict.update(_auth_header='Authorization',
106
_username_prompt_prefix='',
107
_password_prompt_prefix='')
111
def vary_by_http_proxy_auth_scheme():
113
('proxy-basic', dict(_auth_server=http_utils.ProxyBasicAuthServer)),
114
('proxy-digest', dict(_auth_server=http_utils.ProxyDigestAuthServer)),
115
('proxy-basicdigest',
116
dict(_auth_server=http_utils.ProxyBasicAndDigestAuthServer)),
118
# Add some attributes common to all scenarios
119
for scenario_id, scenario_dict in scenarios:
120
scenario_dict.update(_auth_header='Proxy-Authorization',
121
_username_prompt_prefix='Proxy ',
122
_password_prompt_prefix='Proxy ')
126
112
def vary_by_http_activity():
1503
1489
self.get_a, self.old_transport, redirected)
1506
def _setup_authentication_config(**kwargs):
1507
conf = config.AuthenticationConfig()
1508
conf._get_config().update({'httptest': kwargs})
1512
class TestUrllib2AuthHandler(tests.TestCaseWithTransport):
1513
"""Unit tests for glue by which urllib2 asks us for authentication"""
1515
def test_get_user_password_without_port(self):
1516
"""We cope if urllib2 doesn't tell us the port.
1518
See https://bugs.launchpad.net/bzr/+bug/654684
1522
_setup_authentication_config(scheme='http', host='localhost',
1523
user=user, password=password)
1524
handler = _urllib2_wrappers.HTTPAuthHandler()
1525
got_pass = handler.get_user_password(dict(
1532
self.assertEquals((user, password), got_pass)
1535
1492
class TestAuth(http_utils.TestCaseWithWebserver):
1536
1493
"""Test authentication scheme"""
1687
1650
ui.ui_factory = tests.TestUIFactory(stdin=stdin_content,
1688
1651
stderr=tests.StringIOWrapper())
1689
1652
# Create a minimal config file with the right password
1690
_setup_authentication_config(scheme='http', port=self.server.port,
1691
user=user, password=password)
1653
_setup_authentication_config(
1655
port=self.server.port,
1692
1658
# Issue a request to the server to connect
1693
1659
self.assertEqual('contents of a\n',t.get('a').read())
1694
1660
# stdin should have been left untouched
1725
1691
password = 'foo'
1726
1692
self.server.add_user(user, password)
1727
_setup_authentication_config(scheme='http', port=self.server.port,
1728
user=user, password=password)
1693
_setup_authentication_config(
1695
port=self.server.port,
1729
1698
t = self.get_user_transport(None, None)
1730
1699
# Issue a request to the server to connect
1731
1700
self.assertEqual('contents of a\n', t.get('a').read())
1732
1701
# Only one 'Authentication Required' error should occur
1733
1702
self.assertEqual(1, self.server.auth_required_errors)
1735
def test_no_credential_leaks_in_log(self):
1736
self.overrideAttr(debug, 'debug_flags', set(['http']))
1705
def _setup_authentication_config(**kwargs):
1706
conf = config.AuthenticationConfig()
1707
conf._get_config().update({'httptest': kwargs})
1712
class TestUrllib2AuthHandler(tests.TestCaseWithTransport):
1713
"""Unit tests for glue by which urllib2 asks us for authentication"""
1715
def test_get_user_password_without_port(self):
1716
"""We cope if urllib2 doesn't tell us the port.
1718
See https://bugs.launchpad.net/bzr/+bug/654684
1738
password = 'very-sensitive-password'
1739
self.server.add_user(user, password)
1740
t = self.get_user_transport(user, password)
1741
# Capture the debug calls to mutter
1744
lines = args[0] % args[1:]
1745
# Some calls output multiple lines, just split them now since we
1746
# care about a single one later.
1747
self.mutters.extend(lines.splitlines())
1748
self.overrideAttr(trace, 'mutter', mutter)
1749
# Issue a request to the server to connect
1750
self.assertEqual(True, t.has('a'))
1751
# Only one 'Authentication Required' error should occur
1752
self.assertEqual(1, self.server.auth_required_errors)
1753
# Since the authentification succeeded, there should be a corresponding
1755
sent_auth_headers = [line for line in self.mutters
1756
if line.startswith('> %s' % (self._auth_header,))]
1757
self.assertLength(1, sent_auth_headers)
1758
self.assertStartsWith(sent_auth_headers[0],
1759
'> %s: <masked>' % (self._auth_header,))
1722
_setup_authentication_config(
1727
handler = _urllib2_wrappers.HTTPAuthHandler()
1728
got_pass = handler.get_user_password(dict(
1735
self.assertEquals((user, password), got_pass)
1762
1738
class TestProxyAuth(TestAuth):
1763
"""Test proxy authentication schemes.
1765
This inherits from TestAuth to tweak the setUp and filter some failing
1739
"""Test proxy authentication schemes."""
1769
1741
scenarios = multiply_scenarios(
1770
1742
vary_by_http_client_implementation(),
2037
2013
tests.TestCase.setUp(self)
2038
2014
self.server = self._activity_server(self._protocol_version)
2039
2015
self.server.start_server()
2040
_activities = {} # Don't close over self and create a cycle
2016
self.activities = {}
2041
2017
def report_activity(t, bytes, direction):
2042
count = _activities.get(direction, 0)
2018
count = self.activities.get(direction, 0)
2044
_activities[direction] = count
2045
self.activities = _activities
2020
self.activities[direction] = count
2047
2022
# We override at class level because constructors may propagate the
2048
2023
# bound method and render instance overriding ineffective (an