summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/eteutils
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-06-13 14:40:27 -0400
committerGary Wu <gary.wu@futurewei.com>2019-06-13 22:05:56 +0000
commit294f996db033c0f8be6143dad201dc9d8b4b6959 (patch)
tree94998644fda9a1b13ed4ffb0c786ab4e4f9170c6 /robotframework-onap/eteutils
parent0932c69548b13eab93f46e81f939dec2803cd741 (diff)
move dns and uuid to the new format of keywords
Change-Id: I07612b85424c4d687b0c551ecc7727920d2736b0 Issue-ID: TEST-164 Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/eteutils')
-rw-r--r--robotframework-onap/eteutils/DNSUtils.py17
-rw-r--r--robotframework-onap/eteutils/SocketUtils.py15
-rw-r--r--robotframework-onap/eteutils/UUID.py15
-rw-r--r--robotframework-onap/eteutils/csvLibrary.py16
4 files changed, 0 insertions, 63 deletions
diff --git a/robotframework-onap/eteutils/DNSUtils.py b/robotframework-onap/eteutils/DNSUtils.py
deleted file mode 100644
index fd0cec3..0000000
--- a/robotframework-onap/eteutils/DNSUtils.py
+++ /dev/null
@@ -1,17 +0,0 @@
-import dns.message
-import dns.name
-import dns.query
-
-class DNSUtils:
- """ Utilities useful for DNS requests """
-
- def dns_request(self, domain, ns):
- """ return the ip address of the given domain name from the given nameserver """
- request = dns.message.make_query(domain, dns.rdatatype.A)
- request.flags |= dns.flags.AD
- request.find_rrset(request.additional, dns.name.root, 65535, dns.rdatatype.OPT, create=True, force_unique=True)
- response = dns.query.udp(request, ns)
-
- for answer in response.answer:
- for item in answer.items:
- return item
diff --git a/robotframework-onap/eteutils/SocketUtils.py b/robotframework-onap/eteutils/SocketUtils.py
deleted file mode 100644
index 0214a13..0000000
--- a/robotframework-onap/eteutils/SocketUtils.py
+++ /dev/null
@@ -1,15 +0,0 @@
-import socket
-
-
-class SocketUtils:
- """SocketUtils is common resource for simple socket keywords."""
-
- def __init__(self):
- pass
-
- def send_binary_data(self, host, port, data):
- """ send raw bytes over tcp socket"""
- sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- # Connect to server and send data
- sock.connect((host, int(port)))
- sock.sendall(bytes(data))
diff --git a/robotframework-onap/eteutils/UUID.py b/robotframework-onap/eteutils/UUID.py
deleted file mode 100644
index 1500076..0000000
--- a/robotframework-onap/eteutils/UUID.py
+++ /dev/null
@@ -1,15 +0,0 @@
-import uuid
-import time
-import datetime
-
-class UUID:
- """UUID is a simple library that generates a uuid"""
-
- def generate_UUID(self):
- """generate a uuid"""
- return uuid.uuid4()
-
- def generate_MilliTimestamp_UUID(self):
- """generate a millisecond timestamp uuid"""
- then = datetime.datetime.now()
- return int(time.mktime(then.timetuple())*1e3 + then.microsecond/1e3)
diff --git a/robotframework-onap/eteutils/csvLibrary.py b/robotframework-onap/eteutils/csvLibrary.py
deleted file mode 100644
index b38b4a5..0000000
--- a/robotframework-onap/eteutils/csvLibrary.py
+++ /dev/null
@@ -1,16 +0,0 @@
-import csv
-class csvLibrary(object):
-
- def read_csv_file(self, filename):
- '''This creates a keyword named "Read CSV File"
-
- This keyword takes one argument, which is a path to a .csv file. It
- returns a list of rows, with each row being a list of the data in
- each column.
- '''
- data = []
- with open(filename, 'rb') as csvfile:
- reader = csv.reader(csvfile)
- for row in reader:
- data.append(row)
- return data