remove debugging statement

This commit is contained in:
Benjamin Dauvergne 2013-10-22 11:28:42 +02:00
parent 497a0f4a87
commit ab8724f5a5
2 changed files with 1 additions and 2 deletions

View File

@ -182,7 +182,6 @@ class RemoteTimestamper(object):
response = urllib2.urlopen(http_request).read()
except (IOError, socket.error), e:
raise TimestampingError('Unable to send the request to %s' % self.url, e)
open('response.tsr', 'w').write(response)
tst_response, substrate = decoder.decode(response, asn1Spec=rfc3161.TimeStampResp())
if substrate:
return False, 'Extra data returned'

View File

@ -26,7 +26,7 @@ class Rfc3161(unittest.TestCase):
PASSWORD = 'teszt'
CERTIFICATE = os.path.join(os.path.dirname(__file__),
'../data/e_szigno_test_tsa2.crt')
data = 'xx'
data = '{"comment": "Envoi en Commission", "to": "Benjamin Dauvergne", "filetype": "Arr\u00eat CC", "from": "Benjamin Dauvergne", "files": [{"name": "affectations_ange1d.xlsx", "digest": "ce57e4ba353107dddaab91b9ad26c0569ffe0f94", "size": 16279}]}'
certificate = file(CERTIFICATE).read()
value, substrate = rfc3161.RemoteTimestamper(
PUBLIC_TSA_SERVER, certificate=certificate, username=USERNAME,