Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Unified Diff: third_party/httplib2/test/test_no_socket.py

Issue 183793010: Added OAuth2 authentication to apply_issue (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Added another option Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/httplib2/test/test_no_socket.py
diff --git a/third_party/httplib2/test/test_no_socket.py b/third_party/httplib2/test/test_no_socket.py
new file mode 100644
index 0000000000000000000000000000000000000000..66ba05637648b13b01f64a9d238dbb5182bbc303
--- /dev/null
+++ b/third_party/httplib2/test/test_no_socket.py
@@ -0,0 +1,24 @@
+"""Tests for httplib2 when the socket module is missing.
+
+This helps ensure compatibility with environments such as AppEngine.
+"""
+import os
+import sys
+import unittest
+
+import httplib2
+
+class MissingSocketTest(unittest.TestCase):
+ def setUp(self):
+ self._oldsocks = httplib2.socks
+ httplib2.socks = None
+
+ def tearDown(self):
+ httplib2.socks = self._oldsocks
+
+ def testProxyDisabled(self):
+ proxy_info = httplib2.ProxyInfo('blah',
+ 'localhost', 0)
+ client = httplib2.Http(proxy_info=proxy_info)
+ self.assertRaises(httplib2.ProxiesUnavailableError,
+ client.request, 'http://localhost:-1/')

Powered by Google App Engine
This is Rietveld 408576698