diff options
author | DR695H <dr695h@att.com> | 2019-08-12 18:17:19 -0400 |
---|---|---|
committer | DR695H <dr695h@att.com> | 2019-08-15 10:18:21 -0400 |
commit | afd5237ef7c1d46e2d8b3eebe890e20818424e18 (patch) | |
tree | 3e4d34e8e61d73bfd6dbfab32e627ca6ab79ed38 /robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py | |
parent | 9fef31d201bead81d118ad9d9db54d4a9292d0c0 (diff) |
initial redo of the requests keywords for client certs
Issue-ID: TEST-184
Change-Id: Ie35e9c64180bad574ba3e4fc77f8418e4ab27528
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py')
-rw-r--r-- | robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py b/robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py index c40860f..fb8808d 100644 --- a/robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py +++ b/robotframework-onap/ONAPLibrary/CloudConfigSOKeywords.py @@ -38,7 +38,7 @@ class CloudConfigSOKeywords(object): """Creates a cloud configuration in SO, so it knows how to talk to an openstack cloud""" self.templating.create_environment("so", templates_folder) data = self.templating.apply_template("so", template, arguments) - resp = self.reqs.post_request("so", endpoint, data_path, data, auth=auth) + resp = self.reqs.post_request(alias="so", endpoint=endpoint, data_path=data_path, data=data, auth=auth) self.builtin.should_match_regexp(str(resp.status_code), "^(201|200)$") @keyword @@ -48,7 +48,7 @@ class CloudConfigSOKeywords(object): self.templating.create_environment("so", templates_folder) data = self.templating.apply_template("so", template, arguments) if get_resp.status_code == 404: - resp = self.reqs.post_request("so", endpoint, data_path, data, auth=auth) + resp = self.reqs.post_request(alias="so", endpoint=endpoint, data_path=data_path, data=data, auth=auth) else: - resp = self.reqs.put_request("so", endpoint, data_path, data, auth=auth) + resp = self.reqs.put_request(alias="so", endpoint=endpoint, data_path=data_path, data=data, auth=auth) self.builtin.should_match_regexp(str(resp.status_code), "^(201|200)$") |