summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/ONAPLibrary/RequestsHelper.py
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-07-17 18:50:55 -0400
committerDR695H <dr695h@att.com>2019-07-18 17:15:03 -0400
commiteb594307f4350b686263cae2355dcbb910ec9403 (patch)
treee93b6db4b50e3e28f8f73138a6e5e1dff65a4c68 /robotframework-onap/ONAPLibrary/RequestsHelper.py
parent217b2cc0a54142e9e746b01c2d10e09554511c87 (diff)
cleanup how message factory is used
apparantly if you use binary protobuf you cant recall the same instance variable Issue-ID: TEST-175 Change-Id: I413c04dec5f94363a54d5e9e00e135d95620abd3 Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/ONAPLibrary/RequestsHelper.py')
-rw-r--r--robotframework-onap/ONAPLibrary/RequestsHelper.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/robotframework-onap/ONAPLibrary/RequestsHelper.py b/robotframework-onap/ONAPLibrary/RequestsHelper.py
index f818c54..9de2260 100644
--- a/robotframework-onap/ONAPLibrary/RequestsHelper.py
+++ b/robotframework-onap/ONAPLibrary/RequestsHelper.py
@@ -56,9 +56,12 @@ class RequestsHelper(object):
content_type="application/json", auth=None):
"""Runs a post request"""
logger.info("Creating session" + endpoint)
- md5 = hashlib.md5()
- md5.update(data)
- md5checksum = Base64Keywords().base64_encode(md5.hexdigest())
+ if not data:
+ md5 = hashlib.md5()
+ md5.update(data)
+ md5checksum = Base64Keywords().base64_encode(md5.hexdigest())
+ else:
+ md5checksum = None
self.requests.create_session(alias, endpoint, auth=auth)
headers = self.create_headers(sdc_user_id=sdc_user, accept=accept, content_type=content_type, md5=md5checksum)
resp = self.requests.post_request(alias, data_path, files=files, data=data, headers=headers)