initial redo of the requests keywords for client certs
[testsuite/python-testing-utils.git] / robotframework-onap / ONAPLibrary / MUSICKeywords.py
1 # Copyright 2019 AT&T Intellectual Property. All rights reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 from robot.api.deco import keyword
16 from robot.libraries.BuiltIn import BuiltIn
17
18 from ONAPLibrary.RequestsHelper import RequestsHelper
19
20
21 class MUSICKeywords(object):
22     """MUSIC is an ONAP testing library for Robot Framework that provides functionality for interacting with the serivce
23     orchestrator. """
24
25     def __init__(self):
26         super(MUSICKeywords, self).__init__()
27         self.reqs = RequestsHelper()
28         self.builtin = BuiltIn()
29
30     @keyword
31     def run_get_request(self, endpoint, data_path, accept="application/json", auth=None):
32         """Runs an MUSIC get request"""
33         return self.reqs.get_request(alias="music", endpoint=endpoint, data_path=data_path, accept=accept, auth=auth)
34
35     def run_health_check(self, endpoint, health_check_path):
36         """Runs MUSIC Health check"""
37         resp = self.run_get_request(endpoint, health_check_path)
38         self.builtin.should_be_equal_as_strings(resp.status_code, "200")
39         self.builtin.should_be_equal_as_strings(resp.json()['status'], "SUCCESS")
40
41     def run_cassandra_connection_check(self, endpoint, health_check_path):
42         """Confirm MUSIC's connection to Cassandra in active"""
43         resp = self.run_get_request(endpoint, health_check_path)
44         self.builtin.should_be_equal_as_strings(resp.status_code, "200")
45         self.builtin.should_be_equal_as_strings(resp.json()['Cassandra'], "Active")