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
|
# ############################################################################ #
# #
# ::: :::::::: #
# test.py :+: :+: :+: #
# +:+ +:+ +:+ #
# By: charles <me@cacharle.xyz> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/09/27 11:36:32 by charles #+# #+# #
# Updated: 2020/09/27 16:25:37 by charles ### ########.fr #
# #
# ############################################################################ #
import re
import time
import subprocess
# import threading
# from result import Result
import philo
# from test.table import Table
class Test: #(threading.Thread):
_tests = []
_exec_path = None
# _stdout_lock = threading.Lock()
@classmethod
def run_all(cls, exec_path: str):
cls._exec_path = exec_path
for t in cls._tests:
t.run()
# threads = [test.start() for test in cls._tests]
# for thread in threads:
# thread.join()
def __init__(
self,
philo_num: int,
timeout_die: int,
timeout_eat: int,
timeout_sleep: int,
meal_num: int = None,
should_fail: bool = False
):
self._philo_num = philo_num
self._timeout_die = timeout_die
self._timeout_eat = timeout_eat
self._timeout_sleep = timeout_sleep
self._meal_num = meal_num
Test._tests.append(self)
# threading.Thread.__init__(self)
def run(self):
argv = [
Test._exec_path,
str(self._philo_num),
str(self._timeout_die),
str(self._timeout_eat),
str(self._timeout_sleep)
]
if self._meal_num is not None:
argv.append(str(self._meal_num))
# try:
process = subprocess.Popen(
argv,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT
)
# output = process_result.stdout.decode()
# print(output)
# timeout=1,
# except subprocess.TimeoutExpered as err:
# return Result(err)
# except subprocess.CalledProcessError as err:
# return Result(err)
self._check_output(process.stdout)
process.wait()
def _check_output(self, stream):
table = philo.Table(self._philo_num)
for line in stream:
line = line.decode()[:-1]
# print(">", line)
l = philo.Log(line, self._philo_num)
print(l)
table.add_log(l)
table.check()
# print(timestamp, id_, event)
# philo_states.append(Philo)
# def _print(self, *args):
# Test._stdout_lock.aquire()
# print(*args)
# Test._stdout_lock.release()
|