Update INFO.yaml with new PTL
[testsuite/python-testing-utils.git] / robotframework-onap / ONAPLibrary / HTTPKeywords.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 six.moves import urllib
16 from robot.api.deco import keyword
17 import urllib3
18
19
20 class HTTPKeywords(object):
21     """HTTPKeywords is common resource for simple http helper keywords."""
22     def __init__(self):
23         super(HTTPKeywords, self).__init__()
24
25     @keyword
26     def url_encode_string(self, barestring):
27         """URL Encode String takes in a string and converts it into fully 'percent-encoded' string"""
28         return urllib.parse.quote(barestring)
29
30     @keyword
31     def url_parse(self, url):
32         """  Get pieces of the URL """
33         return urllib.parse.urlparse(url)
34
35     @keyword
36     def disable_warnings(self):
37         """  Disable all warnings when creating sessions """
38         urllib3.disable_warnings()