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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
"""
httplib2test_appengine
A set of unit tests for httplib2.py on Google App Engine
"""
__author__ = "Joe Gregorio (joe@bitworking.org)"
__copyright__ = "Copyright 2011, Joe Gregorio"
import os
import sys
import unittest
# The test resources base uri
base = 'http://bitworking.org/projects/httplib2/test/'
#base = 'http://localhost/projects/httplib2/test/'
cacheDirName = ".cache"
APP_ENGINE_PATH='../../google_appengine'
sys.path.insert(0, APP_ENGINE_PATH)
import dev_appserver
dev_appserver.fix_sys_path()
from google.appengine.ext import testbed
testbed = testbed.Testbed()
testbed.activate()
testbed.init_urlfetch_stub()
import google.appengine.api
import httplib2
class AppEngineHttpTest(unittest.TestCase):
def setUp(self):
if os.path.exists(cacheDirName):
[os.remove(os.path.join(cacheDirName, file)) for file in os.listdir(cacheDirName)]
def test(self):
h = httplib2.Http()
response, content = h.request("http://bitworking.org")
self.assertEqual(httplib2.SCHEME_TO_CONNECTION['https'],
httplib2.AppEngineHttpsConnection)
self.assertEquals(1, len(h.connections))
self.assertEquals(response.status, 200)
self.assertEquals(response['status'], '200')
# It would be great to run the test below, but it really tests the
# aberrant behavior of httplib on App Engine, but that special aberrant
# httplib only appears when actually running on App Engine and not when
# running via the SDK. When running via the SDK the httplib in std lib is
# loaded, which throws a different error when a timeout occurs.
#
#def test_timeout(self):
# # The script waits 3 seconds, so a timeout of more than that should succeed.
# h = httplib2.Http(timeout=7)
# r, c = h.request('http://bitworking.org/projects/httplib2/test/timeout/timeout.cgi')
#
# import httplib
# print httplib.__file__
# h = httplib2.Http(timeout=1)
# try:
# r, c = h.request('http://bitworking.org/projects/httplib2/test/timeout/timeout.cgi')
# self.fail('Timeout should have raised an exception.')
# except DeadlineExceededError:
# pass
def test_proxy_info_ignored(self):
h = httplib2.Http(proxy_info='foo.txt')
response, content = h.request("http://bitworking.org")
self.assertEquals(response.status, 200)
class AberrationsTest(unittest.TestCase):
def setUp(self):
self.orig_apiproxy_stub_map = google.appengine.api.apiproxy_stub_map
# Force apiproxy_stub_map to None to trigger the test condition.
google.appengine.api.apiproxy_stub_map = None
reload(httplib2)
def tearDown(self):
google.appengine.api.apiproxy_stub_map = self.orig_apiproxy_stub_map
reload(httplib2)
def test(self):
self.assertNotEqual(httplib2.SCHEME_TO_CONNECTION['https'],
httplib2.AppEngineHttpsConnection)
self.assertNotEqual(httplib2.SCHEME_TO_CONNECTION['http'],
httplib2.AppEngineHttpConnection)
if __name__ == '__main__':
unittest.main()
|