add so delete request
[testsuite/python-testing-utils.git] / robotframework-onap / ONAPLibrary / Utilities.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 ONAPLibrary.robotlibcore import HybridCore
16 from ONAPLibrary.DNSKeywords import DNSKeywords
17 from ONAPLibrary.SocketKeywords import SocketKeywords
18 from ONAPLibrary.UUIDKeywords import UUIDKeywords
19 from ONAPLibrary.HTTPKeywords import HTTPKeywords
20 from ONAPLibrary.Base64Keywords import Base64Keywords
21 from ONAPLibrary.VariableKeywords import VariableKeywords
22
23
24 class Utilities(HybridCore):
25     """ Keywords are useful for helper functions requests """
26
27     ROBOT_LIBRARY_SCOPE = "GLOBAL"
28
29     def __init__(self):
30         self.keyword_implementors = [
31             DNSKeywords(),
32             SocketKeywords(),
33             UUIDKeywords(),
34             HTTPKeywords(),
35             Base64Keywords(),
36             VariableKeywords()
37         ]
38         HybridCore.__init__(self, self.keyword_implementors)