コード例 #1
0
ファイル: digest_auth.py プロジェクト: untitaker/betamax
 def digest_parts(self, headers):
     auth = headers.get('Authorization') or headers.get('authorization')
     if not auth:
         return None
     auth = from_list(auth).strip('Digest ')
     excludes = ('cnonce', 'response')
     return [p for p in auth.split(', ') if not p.startswith(excludes)]
コード例 #2
0
 def digest_parts(self, headers):
     auth = headers.get('Authorization') or headers.get('authorization')
     if not auth:
         return None
     auth = from_list(auth).strip('Digest ')
     # cnonce and response will be based on the system time, which I will
     # not monkey-patch.
     excludes = ('cnonce', 'response')
     return [p for p in auth.split(', ') if not p.startswith(excludes)]
コード例 #3
0
ファイル: digest_auth.py プロジェクト: Hasimir/betamax
 def digest_parts(self, headers):
     auth = headers.get('Authorization') or headers.get('authorization')
     if not auth:
         return None
     auth = from_list(auth).strip('Digest ')
     # cnonce and response will be based on the system time, which I will
     # not monkey-patch.
     excludes = ('cnonce', 'response')
     return [p for p in auth.split(', ') if not p.startswith(excludes)]
コード例 #4
0
ファイル: test_cassette.py プロジェクト: eriol/betamax
 def test_from_list_handles_non_lists(self):
     a = 'value'
     assert util.from_list(a) == 'value'
コード例 #5
0
ファイル: test_cassette.py プロジェクト: eriol/betamax
 def test_from_list_returns_an_element(self):
     a = ['value']
     assert util.from_list(a) == 'value'
コード例 #6
0
ファイル: test_cassette.py プロジェクト: dgouldin/betamax
 def test_from_list_handles_non_lists(self):
     a = 'value'
     assert util.from_list(a) == 'value'
コード例 #7
0
ファイル: test_cassette.py プロジェクト: dgouldin/betamax
 def test_from_list_returns_an_element(self):
     a = ['value']
     assert util.from_list(a) == 'value'
コード例 #8
0
 def flatten_headers(self, request):
     from betamax.cassette.util import from_list
     headers = request['headers'].items()
     return dict((k, from_list(v)) for (k, v) in headers)
コード例 #9
0
ファイル: test_cassette.py プロジェクト: jerith/betamax
 def test_from_list_returns_an_element(self):
     a = ["value"]
     assert util.from_list(a) == "value"