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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
|
import demjson
import grp
import os
import os.path
import psutil
import glob
import pwd
import shutil
import signal
import socket
import sys
import tempfile
import subprocess
from robot.libraries.BuiltIn import BuiltIn
from robot.api import logger
if sys.version_info > (3,):
long = int
try:
from urllib.request import urlopen
except:
from urllib2 import urlopen
try:
import http.client as httplib
except:
import httplib
def Check_JSON(j):
d = demjson.decode(j, strict=True)
assert len(d) > 0
assert 'error' not in d
return d
def cleanup_temporary_directory(directory):
shutil.rmtree(directory)
def save_run_results(directory, filenames):
current_directory = os.getcwd()
suite_name = BuiltIn().get_variable_value("${SUITE_NAME}")
test_name = BuiltIn().get_variable_value("${TEST NAME}")
if test_name is None:
# this is suite-level tear down
destination_directory = "%s/robot-save/%s" % (current_directory, suite_name)
else:
destination_directory = "%s/robot-save/%s/%s" % (current_directory, suite_name, test_name)
if not os.path.isdir(destination_directory):
os.makedirs(destination_directory)
for file in filenames.split(' '):
source_file = "%s/%s" % (directory, file)
if os.path.isfile(source_file):
shutil.copy(source_file, "%s/%s" % (destination_directory, file))
shutil.copy(source_file, "%s/robot-save/%s.last" % (current_directory, file))
def encode_filename(filename):
return "".join(['%%%0X' % ord(b) for b in filename])
def get_test_directory():
return os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + "../../")
def get_top_dir():
if os.environ.get('RSPAMD_TOPDIR'):
return os.environ['RSPAMD_TOPDIR']
return get_test_directory() + "/../../"
def get_install_root():
if os.environ.get('RSPAMD_INSTALLROOT'):
return os.path.abspath(os.environ['RSPAMD_INSTALLROOT'])
return os.path.abspath("../install/")
def get_rspamd():
if os.environ.get('RSPAMD'):
return os.environ['RSPAMD']
if os.environ.get('RSPAMD_INSTALLROOT'):
return os.environ['RSPAMD_INSTALLROOT'] + "/bin/rspamd"
dname = get_top_dir()
return dname + "/src/rspamd"
def get_rspamc():
if os.environ.get('RSPAMC'):
return os.environ['RSPAMC']
if os.environ.get('RSPAMD_INSTALLROOT'):
return os.environ['RSPAMD_INSTALLROOT'] + "/bin/rspamc"
dname = get_top_dir()
return dname + "/src/client/rspamc"
def get_rspamadm():
if os.environ.get('RSPAMADM'):
return os.environ['RSPAMADM']
if os.environ.get('RSPAMD_INSTALLROOT'):
return os.environ['RSPAMD_INSTALLROOT'] + "/bin/rspamadm"
dname = get_top_dir()
return dname + "/src/rspamadm/rspamadm"
def HTTP(method, host, port, path, data=None, headers={}):
c = httplib.HTTPConnection("%s:%s" % (host, port))
c.request(method, path, data, headers)
r = c.getresponse()
t = r.read()
s = r.status
c.close()
return [s, t]
def make_temporary_directory():
return tempfile.mkdtemp()
def make_temporary_file():
return tempfile.mktemp()
def path_splitter(path):
dirname = os.path.dirname(path)
basename = os.path.basename(path)
return [dirname, basename]
def read_log_from_position(filename, offset):
offset = long(offset)
with open(filename, 'rb') as f:
f.seek(offset)
goo = f.read()
size = len(goo)
return [goo, size+offset]
def rspamc(addr, port, filename):
mboxgoo = b"From MAILER-DAEMON Fri May 13 19:17:40 2016\r\n"
goo = open(filename, 'rb').read()
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((addr, port))
s.send(b"CHECK RSPAMC/1.0\r\nContent-length: ")
s.send(str(len(goo+mboxgoo)).encode('utf-8'))
s.send(b"\r\n\r\n")
s.send(mboxgoo)
s.send(goo)
r = s.recv(2048)
return r.decode('utf-8')
def scan_file(addr, port, filename):
return str(urlopen("http://%s:%s/symbols?file=%s" % (addr, port, filename)).read())
def Send_SIGUSR1(pid):
pid = int(pid)
os.kill(pid, signal.SIGUSR1)
def set_directory_ownership(path, username, groupname):
if os.getuid() == 0:
uid=pwd.getpwnam(username).pw_uid
gid=grp.getgrnam(groupname).gr_gid
os.chown(path, uid, gid)
def spamc(addr, port, filename):
goo = open(filename, 'rb').read()
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((addr, port))
s.send(b"SYMBOLS SPAMC/1.0\r\nContent-length: ")
s.send(str(len(goo)).encode('utf-8'))
s.send(b"\r\n\r\n")
s.send(goo)
s.shutdown(socket.SHUT_WR)
r = s.recv(2048)
return r.decode('utf-8')
def TCP_Connect(addr, port):
"""Attempts to open a TCP connection to specified address:port
Example:
| Wait Until Keyword Succeeds | 5s | 10ms | TCP Connect | localhost | 8080 |
"""
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.settimeout(5) # seconds
s.connect((addr, port))
s.close()
def update_dictionary(a, b):
a.update(b)
return a
TERM_TIMEOUT = 10 # wait after sending a SIGTERM signal
KILL_WAIT = 20 # additional wait after sending a SIGKILL signal
def shutdown_process(process):
# send SIGTERM
process.terminate()
try:
process.wait(TERM_TIMEOUT)
return
except psutil.TimeoutExpired:
logger.info( "PID {} is not termianated in {} seconds, sending SIGKILL..." %
(process.pid, TERM_TIMEOUT))
try:
# send SIGKILL
process.kill()
except psutil.NoSuchProcess:
# process exited just befor we tried to kill
return
try:
process.wait(KILL_WAIT)
except psutil.TimeoutExpired:
raise RuntimeError("Failed to shutdown process %d (%s)" % (process.pid, process.name()))
def shutdown_process_with_children(pid):
pid = int(pid)
try:
process = psutil.Process(pid=pid)
except psutil.NoSuchProcess:
return
children = process.children(recursive=False)
shutdown_process(process)
for child in children:
try:
shutdown_process(child)
except:
pass
def write_to_stdin(process_handle, text):
lib = BuiltIn().get_library_instance('Process')
obj = lib.get_process_object()
obj.stdin.write(text + "\n")
obj.stdin.flush()
obj.stdin.close()
out = obj.stdout.read(4096)
return out
def get_file_if_exists(file_path):
if os.path.exists(file_path):
with open(file_path, 'r') as myfile:
return myfile.read()
return None
# copy-paste from
# https://hg.python.org/cpython/file/6860263c05b3/Lib/shutil.py#l1068
# As soon as we move to Python 3, this should be removed in favor of shutil.which()
def python3_which(cmd, mode=os.F_OK | os.X_OK, path=None):
"""Given a command, mode, and a PATH string, return the path which
conforms to the given mode on the PATH, or None if there is no such
file.
`mode` defaults to os.F_OK | os.X_OK. `path` defaults to the result
of os.environ.get("PATH"), or can be overridden with a custom search
path.
"""
# Check that a given file can be accessed with the correct mode.
# Additionally check that `file` is not a directory, as on Windows
# directories pass the os.access check.
def _access_check(fn, mode):
return (os.path.exists(fn) and os.access(fn, mode)
and not os.path.isdir(fn))
# If we're given a path with a directory part, look it up directly rather
# than referring to PATH directories. This includes checking relative to the
# current directory, e.g. ./script
if os.path.dirname(cmd):
if _access_check(cmd, mode):
return cmd
return None
if path is None:
path = os.environ.get("PATH", os.defpath)
if not path:
return None
path = path.split(os.pathsep)
if sys.platform == "win32":
# The current directory takes precedence on Windows.
if not os.curdir in path:
path.insert(0, os.curdir)
# PATHEXT is necessary to check on Windows.
pathext = os.environ.get("PATHEXT", "").split(os.pathsep)
# See if the given file matches any of the expected path extensions.
# This will allow us to short circuit when given "python.exe".
# If it does match, only test that one, otherwise we have to try
# others.
if any(cmd.lower().endswith(ext.lower()) for ext in pathext):
files = [cmd]
else:
files = [cmd + ext for ext in pathext]
else:
# On other platforms you don't have things like PATHEXT to tell you
# what file suffixes are executable, so just pass on cmd as-is.
files = [cmd]
seen = set()
for dir in path:
normdir = os.path.normcase(dir)
if not normdir in seen:
seen.add(normdir)
for thefile in files:
name = os.path.join(dir, thefile)
if _access_check(name, mode):
return name
return None
def collect_lua_coverage():
if python3_which("luacov-coveralls") is None:
logger.info("luacov-coveralls not found, will not collect Lua coverage")
return
# decided not to do optional coverage so far
#if not 'ENABLE_LUA_COVERAGE' in os.environ['HOME']:
# logger.info("ENABLE_LUA_COVERAGE is not present in env, will not collect Lua coverage")
# return
current_directory = os.getcwd()
report_file = current_directory + "/lua_coverage_report.json"
old_report = current_directory + "/lua_coverage_report.json.old"
tmp_dir = BuiltIn().get_variable_value("${TMPDIR}")
coverage_files = glob.glob('%s/*.luacov.stats.out' % (tmp_dir))
for stat_file in coverage_files:
shutil.move(stat_file, "luacov.stats.out")
# logger.console("statfile: " + stat_file)
if (os.path.isfile(report_file)):
shutil.move(report_file, old_report)
p = subprocess.Popen(["luacov-coveralls", "-o", report_file, "-j", old_report, "--merge", "--dryrun"],
stdout = subprocess.PIPE, stderr= subprocess.PIPE)
output,error = p.communicate()
logger.info("luacov-coveralls stdout: " + output)
logger.info("luacov-coveralls stderr: " + error)
os.remove(old_report)
else:
p = subprocess.Popen(["luacov-coveralls", "-o", report_file, "--dryrun"], stdout = subprocess.PIPE, stderr= subprocess.PIPE)
output,error = p.communicate()
logger.info("luacov-coveralls stdout: " + output)
logger.info("luacov-coveralls stderr: " + error)
os.remove("luacov.stats.out")
|