summaryrefslogtreecommitdiffhomepage
path: root/test/test_python_application.py
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2018-04-02 15:50:05 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2018-04-02 15:50:05 +0300
commit2028f3a04be9836ff0f904a487f05bcff75d528d (patch)
tree5fcbb33b0672051ca138dad281dba950688add79 /test/test_python_application.py
parent5177b085b13be78d216441d21480caf81eb968c2 (diff)
downloadunit-2028f3a04be9836ff0f904a487f05bcff75d528d.tar.gz
unit-2028f3a04be9836ff0f904a487f05bcff75d528d.tar.bz2
Tests: use "%Z" directive while parsing Date header.
Diffstat (limited to 'test/test_python_application.py')
-rw-r--r--test/test_python_application.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/test_python_application.py b/test/test_python_application.py
index 1a6f4a1e..1a1a8741 100644
--- a/test/test_python_application.py
+++ b/test/test_python_application.py
@@ -21,8 +21,12 @@ class TestUnitPythonApplication(unit.TestUnitApplicationPython):
headers = resp['headers']
self.assertRegex(headers.pop('Server'), r'Unit/[\d\.]+',
'server header')
- self.assertLess(abs(self.date_to_sec_epoch(headers.pop('Date')) -
- self.sec_epoch()), 5, 'date header')
+
+ date = headers.pop('Date')
+ self.assertEqual(date[-4:], ' GMT', 'date header timezone')
+ self.assertLess(abs(self.date_to_sec_epoch(date) - self.sec_epoch()), 5,
+ 'date header')
+
self.assertDictEqual(headers, {
'Content-Length': str(len(body)),
'Content-Type': 'text/html',