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
|
# ############################################################################ #
# #
# ::: :::::::: #
# args.py :+: :+: :+: #
# +:+ +:+ +:+ #
# By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/07/15 18:24:32 by charles #+# #+# #
# Updated: 2021/02/27 20:16:56 by cacharle ### ########.fr #
# #
# ############################################################################ #
import argparse
import textwrap
import functools
@functools.lru_cache(maxsize=1)
def parse_args():
"""Parse command line arguments"""
parser = argparse.ArgumentParser(
description="Test for the minishell project of school 42.",
formatter_class=argparse.RawTextHelpFormatter,
epilog="Made by cacharle - https://cacharle.xyz"
)
parser.add_argument(
"-p", "--path",
default=".",
help="Path to minishell directory"
)
parser.add_argument(
"-l", "--list",
action="store_true",
help="Print available test suites"
)
parser.add_argument(
"-t", "--try",
metavar="COMMAND",
dest='try_cmd',
help=textwrap.dedent("""\
Run a custom command like this test would
(the only environment variable passed to your executable are TERM and PATH)
""")
)
parser.add_argument(
"-k", "--check-leaks",
action="store_true",
help="Run valgrind on tests (disable usual comparison with bash)"
)
parser.add_argument(
"-r", "--range",
nargs=2,
type=int,
metavar=("BEGIN", "END"),
help="Range of test index to run (imply --show-index)"
)
parser.add_argument(
"--show-range",
action="store_true",
help="Show test index (useful with --range)"
)
parser.add_argument(
"-x", "--exit-first",
action="store_true",
help="Exit on first fail"
)
parser.add_argument(
"-m", "--make",
action="store_true",
help="Make minishell and exit"
)
parser.add_argument(
"-g", "--pager",
action="store_true",
help="After running the test, display the result in a pager of your choice"
)
parser.add_argument(
"suites",
nargs='*',
metavar="SUITE",
help=textwrap.dedent("""\
Test suites/group to run.
It tries to be smart and autocomplete the suite name
(e.g ./run int -> ./run preprocess/interpolation)
""")
)
return parser.parse_args()
|