aai should not check status code
[testsuite/python-testing-utils.git] / robotframework-onap / ONAPLibrary / VariableKeywords.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
19 class VariableKeywords(object):
20     """ Utilities useful for working with varaibles """
21
22     def __init__(self):
23         super(VariableKeywords, self).__init__()
24         self.builtin = BuiltIn()
25
26     @keyword
27     def get_globally_injected_parameters(self):
28         dictionary = self.builtin.get_variables(no_decoration=True)
29         return self.filter_variables_by_key_prefix(dictionary, "GLOBAL_INJECTED")
30
31     @keyword
32     def filter_variables_by_key_prefix(self, dictionary, partial):
33         matches = dict()
34         for key, val in dictionary.items():
35             if key.startswith(partial):
36                 matches[key] = val
37         return matches