Add test_ust_java_agent_vs_tools
[deliverable/lttng-ivc.git] / lttng_ivc / utils / utils.py
CommitLineData
a028c28a 1import signal
cb87ff89 2import hashlib
bde0c540
JR
3import os
4import time
74eb7096
JR
5import socket
6
7from contextlib import closing
a028c28a 8
85a9e11c
JR
9def line_count(file_path):
10 line_count = 0
11 with open(file_path) as f:
12 for line in f:
13 line_count += 1
14 return line_count
a028c28a
JR
15
16
cb87ff89
JR
17def sha256_checksum(filename, block_size=65536):
18 sha256 = hashlib.sha256()
19 with open(filename, 'rb') as f:
20 for block in iter(lambda: f.read(block_size), b''):
21 sha256.update(block)
22 return sha256.hexdigest()
23
24
bde0c540
JR
25# TODO: timeout as a parameter or Settings
26# TODO: Custom exception
27def wait_for_file(path):
28 i = 0
29 timeout = 60
30 while not os.path.exists(path):
31 time.sleep(1)
32 i = i + 1
33 if i > timeout:
34 raise Exception("File still does not exists. Timeout expired")
35
36
37# TODO: find better exception
38def create_empty_file(path):
39 if os.path.exists(path):
40 raise Exception("Path already exist")
41 open(path, 'w').close()
42
43
a028c28a
JR
44def __dummy_sigusr1_handler():
45 pass
46
47
48def sessiond_spawn(runtime):
74eb7096 49 agent_port = find_free_port()
29cf55b3 50 previous_handler = signal.signal(signal.SIGUSR1, __dummy_sigusr1_handler)
74eb7096 51 sessiond = runtime.spawn_subprocess("lttng-sessiond -vvv -S --agent-tcp-port {}".format(agent_port))
29cf55b3
JR
52 signal.sigtimedwait({signal.SIGUSR1}, 60)
53 previous_handler = signal.signal(signal.SIGUSR1, previous_handler)
54 return sessiond
55
56
74eb7096
JR
57def find_free_port():
58 # There is no guarantee that the port will be free at runtime but should be
59 # good enough
60 with closing(socket.socket(socket.AF_INET, socket.SOCK_STREAM)) as s:
61 s.bind(('', 0))
62 return s.getsockname()[1]
29cf55b3 63
f4711e68
JR
64
65def file_contains(stderr_file, list_of_string):
66 with open(stderr_file, 'r') as stderr:
67 for line in stderr:
68 for s in list_of_string:
69 if s in line:
70 return True
This page took 0.026916 seconds and 5 git commands to generate.