summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/ONAPLibrary/SocketKeywords.py
blob: 6ca895624f748f16389f9710d5587ac20697a9fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 2019 AT&T Intellectual Property. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import socket
import ssl
from robot.api.deco import keyword


class SocketKeywords(object):
    """SocketKeywords are common resource for simple socket keywords."""

    def __init__(self):
        super(SocketKeywords, self).__init__()

    @keyword
    def send_binary_data(self, host, port, data, ssl_enabled=None, cert_required=None, ca=None, cert=None, key=None):
        """ send raw bytes over tcp socket with optional ssl """
        if ssl_enabled:
            if cert_required:
                context = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2)
                context.verify_mode = ssl.CERT_REQUIRED
                # Load CA cert
                context.load_verify_locations(str(ca))
                # Load Client cert and key
                context.load_cert_chain(str(cert), str(key))
            else:
                context = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2)
                context.verify_mode = ssl.CERT_OPTIONAL
            sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
            ssock = context.wrap_socket(sock, server_hostname=str(host))
            # Connect to server over ssl and send data
            ssock.connect((str(host), int(port)))
            ssock.sendall(bytes(data))
            ssock.close()
        else:
            sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
            # Connect to server and send data
            sock.connect((str(host), int(port)))
            sock.sendall(bytes(data))
            sock.close()