[tests] authproxy.py: tidy up __init__()

This commit is contained in:
John Newbery 2017-10-10 10:49:28 -04:00
parent 323d8f61e9
commit 8f9e3627ef
1 changed files with 3 additions and 13 deletions

View File

@ -71,19 +71,9 @@ class AuthServiceProxy(object):
self._service_name = service_name
self.ensure_ascii = ensure_ascii # can be toggled on the fly by tests
self.__url = urllib.parse.urlparse(service_url)
if self.__url.port is None:
port = 80
else:
port = self.__url.port
(user, passwd) = (self.__url.username, self.__url.password)
try:
user = user.encode('utf8')
except AttributeError:
pass
try:
passwd = passwd.encode('utf8')
except AttributeError:
pass
port = 80 if self.__url.port is None else self.__url.port
user = None if self.__url.username is None else self.__url.username.encode('utf8')
passwd = None if self.__url.password is None else self.__url.password.encode('utf8')
authpair = user + b':' + passwd
self.__auth_header = b'Basic ' + base64.b64encode(authpair)