summaryrefslogtreecommitdiff
path: root/Lib/test/test_urllib_response.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2009-03-26 21:34:20 +0000
committerJeremy Hylton <jeremy@alum.mit.edu>2009-03-26 21:34:20 +0000
commitb476d597921ab0ef52de1f56a5efa71c65727114 (patch)
treea0f034a37e0ff67de478dc52bdeaa34c887da943 /Lib/test/test_urllib_response.py
parent81fac4391893ed281737283f4368c90f2c022bf1 (diff)
downloadcpython-git-b476d597921ab0ef52de1f56a5efa71c65727114.tar.gz
Add __enter__ and __exit__ methods to addbase() so that it supports with.
This change also adds a minimal unittest of urllib.response.addbase. More are needed, but not to cover the small change being made here. Addresses http://bugs.python.org/issue5418
Diffstat (limited to 'Lib/test/test_urllib_response.py')
-rw-r--r--Lib/test/test_urllib_response.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/Lib/test/test_urllib_response.py b/Lib/test/test_urllib_response.py
new file mode 100644
index 0000000000..fdd33259dd
--- /dev/null
+++ b/Lib/test/test_urllib_response.py
@@ -0,0 +1,42 @@
+"""Unit tests for code in urllib.response."""
+
+import test.support
+import urllib.response
+import unittest
+
+class TestFile(object):
+
+ def __init__(self):
+ self.closed = False
+
+ def read(self, bytes):
+ pass
+
+ def readline(self):
+ pass
+
+ def close(self):
+ self.closed = True
+
+class Testaddbase(unittest.TestCase):
+
+ # TODO(jhylton): Write tests for other functionality of addbase()
+
+ def setUp(self):
+ self.fp = TestFile()
+ self.addbase = urllib.response.addbase(self.fp)
+
+ def test_with(self):
+ def f():
+ with self.addbase as spam:
+ pass
+ self.assertFalse(self.fp.closed)
+ f()
+ self.assertTrue(self.fp.closed)
+ self.assertRaises(ValueError, f)
+
+def test_main():
+ test.support.run_unittest(Testaddbase)
+
+if __name__ == '__main__':
+ test_main()