1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-20 04:00:41 -04:00
ports/www/py-httpbin/files/patch-test__httpbin.py
2021-02-24 09:54:19 +00:00

24 lines
1.4 KiB
Python

--- test_httpbin.py.orig 2018-05-08 11:41:03 UTC
+++ test_httpbin.py
@@ -144,7 +144,9 @@ class HttpbinTestCase(unittest.TestCase):
data = json.loads(response.data.decode('utf-8'))
self.assertEqual(data['args'], {})
self.assertEqual(data['headers']['Host'], 'localhost')
- self.assertEqual(data['headers']['Content-Length'], '0')
+ # Newest Werkzeug versions omit Content-Length if '0'; see
+ # https://github.com/postmanlabs/httpbin/pull/555/files
+ self.assertEqual(data['headers'].get('Content-Length', '0'), '0')
self.assertEqual(data['headers']['User-Agent'], 'test')
# self.assertEqual(data['origin'], None)
self.assertEqual(data['url'], 'http://localhost/get')
@@ -158,7 +160,9 @@ class HttpbinTestCase(unittest.TestCase):
data = json.loads(response.data.decode('utf-8'))
self.assertEqual(data['args'], {})
self.assertEqual(data['headers']['Host'], 'localhost')
- self.assertEqual(data['headers']['Content-Length'], '0')
+ # Newest Werkzeug versions omit Content-Length if '0'; see
+ # https://github.com/postmanlabs/httpbin/pull/555/files
+ self.assertEqual(data['headers'].get('Content-Length', '0'), '0')
self.assertEqual(data['url'], 'http://localhost/anything/foo/bar')
self.assertEqual(data['method'], 'GET')
self.assertTrue(response.data.endswith(b'\n'))