Sto usando la libreria Python requests in un metodo della mia applicazione. Il corpo del metodo è simile al seguente:Python richiede il recupero di un file da un url locale
def handle_remote_file(url, **kwargs):
response = requests.get(url, ...)
buff = StringIO.StringIO()
buff.write(response.content)
...
return True
mi piacerebbe scrivere alcuni test di unità per questo metodo, tuttavia, quello che voglio fare è quello di passare un falso URL locale come:
class RemoteTest(TestCase):
def setUp(self):
self.url = 'file:///tmp/dummy.txt'
def test_handle_remote_file(self):
self.assertTrue(handle_remote_file(self.url))
Quando chiamo requests.get con un'URL locale, ho avuto l'KeyError eccezione di seguito:
requests.get('file:///tmp/dummy.txt')
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/requests/packages/urllib3/poolmanager.pyc in connection_from_host(self, host, port, scheme)
76
77 # Make a fresh ConnectionPool of the desired type
78 pool_cls = pool_classes_by_scheme[scheme]
79 pool = pool_cls(host, port, **self.connection_pool_kw)
80
KeyError: 'file'
La domanda è: come posso passare un url locale alle richieste .get?
PS: ho inventato l'esempio precedente. Probabilmente contiene molti errori.
Can usi il server web Python locale puro? – zealotous
Sì.Ho impostato un server web locale all'interno del codice con un nuovo thread utilizzando la libreria SimpleHTTPServer e fornito i file remoti con esso, quindi tutto ha funzionato come previsto. – ozgur