summaryrefslogtreecommitdiff
path: root/Lib/test/test_urllibnet.py
blob: 3af2491ecc58d41aaf0354354ab064efd868be60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python

import unittest
from test import test_support

import socket
import urllib2
import sys

class URLTimeoutTest(unittest.TestCase):

    TIMEOUT = 10.0

    def setUp(self):
        socket.setdefaulttimeout(self.TIMEOUT)

    def tearDown(self):
        socket.setdefaulttimeout(None)

    def testURLread(self):
        f = urllib2.urlopen("http://www.python.org/")
        x = f.read()

def test_main():
    test_support.requires('network')

    suite = unittest.TestSuite()
    suite.addTest(unittest.makeSuite(URLTimeoutTest))
    test_support.run_suite(suite)

if __name__ == "__main__":
    test_main()