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
|
import os
import sys
import argparse
def green(*strings):
return "".join([f"\033[32m{s}\033[0m" for s in strings])
def red(*strings):
return "".join([f"\033[31m{s}\033[0m" for s in strings])
def parse_args():
parser = argparse.ArgumentParser( prog="ft_printf test", description="A ~quicker tester for ft_printf")
parser.add_argument("-v", "--verbose",
help="increase verbosity", action="store_true")
parser.add_argument("-q", "--quiet",
help="decrease vebosity", action="store_true")
parser.add_argument("-l", "--no-log",
help="disable result log", action="store_true")
parser.add_argument("-c", "--no-clear", help="disable terminal clear before output")
parser.add_argument("-f", "--output-file", help="output file name")
return vars(parser.parse_args(sys.argv[1:]))
def parse():
logs = {
"ok": 0,
"ko": 0,
"ko_info": []
}
for line in sys.stdin:
line = line.strip()
if line.find("[OK]") != -1:
logs["ok"] += 1
print(green("."), end="")
elif line.find("[KO]") != -1:
logs["ko"] += 1
logs["ko_info"].append({
"msg": line[line.find("[KO]") + 5:],
"expected": sys.stdin.readline().rstrip(),
"actual": sys.stdin.readline().rstrip()
})
print(red("!"), end="")
sys.stdout.flush()
return logs
def write_logs(logs, options):
filename = "result.log"
if options["output_file"] is not None:
filename = options["output_file"]
with open(filename, "w") as log_file:
for ko in logs["ko_info"]:
try:
log_file.write("- " + ko["msg"]+ "\n")
log_file.write(" " + ko["expected"] + "\n")
log_file.write(" " + ko["actual"] + "\n")
except UnicodeEncodeError:
log_file.write("Can't write detail\n")
finally:
log_file.write("\n")
def print_logs(logs, options):
total_str = f"\n\nTotal {green('OK: ', logs['ok'])} {red('KO: ', logs['ko'])}"
print(total_str)
print("=" * (len(total_str) - len(green("")) * 2 - len(red("")) * 2 - 2))
if options["quiet"]:
return
for ko in logs["ko_info"]:
print("-", ko["msg"])
if options["verbose"]:
print(" ", ko["expected"])
print(" ", ko["actual"])
print()
print("\nSee result.log for more information\n")
if __name__ == "__main__":
print()
options = parse_args()
if not options["no_clear"]:
os.system("clear")
logs = parse()
print_logs(logs, options)
if not options["no_log"]:
write_logs(logs, options)
|