aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_trapd_http_session.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_trapd_http_session.py')
-rw-r--r--tests/test_trapd_http_session.py20
1 files changed, 11 insertions, 9 deletions
diff --git a/tests/test_trapd_http_session.py b/tests/test_trapd_http_session.py
index 478b29d..7ec89a6 100644
--- a/tests/test_trapd_http_session.py
+++ b/tests/test_trapd_http_session.py
@@ -1,5 +1,5 @@
# ============LICENSE_START=======================================================
-# Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2019-2021 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -17,20 +17,21 @@
import pytest
import unittest
import trapd_http_session
-
+
+
class test_init_session_obj(unittest.TestCase):
"""
Test the init_session_obj mod
"""
-
+
def close_nonexisting_session(self):
"""
test close of existing http session
"""
- sess="no session"
+ sess = "no session"
result = trapd_http_session.close_session_obj(sess)
self.assertEqual(result, True)
-
+
def init_session(self):
"""
test creation of http session
@@ -38,7 +39,7 @@ class test_init_session_obj(unittest.TestCase):
result = trapd_http_session.init_session_obj()
compare = str(result).startswith("<requests.sessions.Session object at")
self.assertEqual(compare, True)
-
+
def test_reset(self):
"""
test reset of existing http session
@@ -47,7 +48,7 @@ class test_init_session_obj(unittest.TestCase):
result = trapd_http_session.reset_session_obj(sess)
compare = str(result).startswith("<requests.sessions.Session object at")
self.assertEqual(compare, True)
-
+
def close_existing_session(self):
"""
test close of existing http session
@@ -55,6 +56,7 @@ class test_init_session_obj(unittest.TestCase):
sess = trapd_http_session.init_session_obj()
result = trapd_http_session.close_session_obj(sess)
self.assertEqual(result, True)
-
-if __name__ == '__main__':
+
+
+if __name__ == "__main__":
unittest.main()