Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

How to test urllib|urllib2-using code?

23 views
Skip to first unread message

kj

unread,
Nov 4, 2009, 8:33:53 AM11/4/09
to


I want to write some tests for code that uses both urllib and
urllib2. I would like to be able to run these tests locally. Are
there modules to facilitate the writing of such tests (e.g. for
setting up a mock web server locally, etc.)?

BTW, in the Perl world, one very easy way to learn how to write
tests for stuff is to study the test suites that come with every
module distribution, and which are usually readily recognizable as
a bunch of files of the form t/*.t. (E.g. I'm sure I could find
some good answers to my question above if I could look at the test
suites for urllib and urllib2, but I can't find them anywhere. In
fact, I don't even know what exactly I should be looking for.)
Where can I find the equivalent for Python distributions?

Thanks!

kynn

Lutz Horn

unread,
Nov 4, 2009, 9:06:45 AM11/4/09
to
Hi,

kj wrote:
> I want to write some tests for code that uses both urllib and
> urllib2.

Take a look at the discussion under the title "How can one mock/stub
python module like urllib" at stackoverflow:

http://stackoverflow.com/questions/295438/how-can-one-mock-stub-python-module-like-urllib

Lutz

Steven D'Aprano

unread,
Nov 4, 2009, 6:47:52 PM11/4/09
to

Oh noes!!! Ur fragmenting teh python communities!!!!1!!! DO NOT WANT!!!


*grin*

(And for those who don't know what on earth I'm referring to, see the
thread "Pyfora, a place for python".)

--
Steven

Gabriel Genellina

unread,
Nov 5, 2009, 3:16:08 AM11/5/09
to pytho...@python.org
En Wed, 04 Nov 2009 10:33:53 -0300, kj <no.e...@please.post> escribi�:

> I'm sure I could find
> some good answers to my question above if I could look at the test
> suites for urllib and urllib2, but I can't find them anywhere. In
> fact, I don't even know what exactly I should be looking for.)
> Where can I find the equivalent for Python distributions?

Most of the Python test suite is in the "test" subdirectory below the
standard library; on Windows that's c:\PythonNN\Lib\test, on Linux
/usr/lib/pythonN.N/test or /usr/local/...

> dir /s/b test_url*.py
D:\apps\Python26\Lib\test\test_urllib.py
D:\apps\Python26\Lib\test\test_urllib2.py
D:\apps\Python26\Lib\test\test_urllib2net.py
D:\apps\Python26\Lib\test\test_urllib2_localnet.py
D:\apps\Python26\Lib\test\test_urllibnet.py
D:\apps\Python26\Lib\test\test_urlparse.py

--
Gabriel Genellina

kj

unread,
Nov 5, 2009, 10:15:56 AM11/5/09
to

kj

unread,
Nov 5, 2009, 10:16:49 AM11/5/09
to


Muy agradecido,

kynn

0 new messages