-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_markdown_checker.py
135 lines (119 loc) · 2.98 KB
/
test_markdown_checker.py
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
"""
Module to check paths in markdown files.
"""
import subprocess
def check_broken_paths() -> None:
"""
Function to check for broken paths.
"""
print("check_broken_paths was called")
subprocess.run(
[
"markdown-checker",
"-d",
"./tests/resources/",
"-f",
"check_broken_paths",
"-gu",
"https://github.com/john0isaac/markdown-checker/blob/main/CONTRIBUTING.md",
],
check=False,
)
def check_broken_urls() -> None:
"""
Function to check for broken paths.
"""
print("check_broken_urls was called")
subprocess.run(
[
"markdown-checker",
"-d",
"./tests/resources/",
"-f",
"check_broken_urls",
"-gu",
"https://github.com/john0isaac/markdown-checker/blob/main/CONTRIBUTING.md",
],
check=False,
)
def check_paths_tracking() -> None:
"""
Function to check paths tracking.
"""
print("check_paths_tracking was called")
subprocess.run(
[
"markdown-checker",
"-d",
"./tests/resources/",
"-f",
"check_paths_tracking",
"-gu",
"https://github.com/john0isaac/markdown-checker/blob/main/CONTRIBUTING.md",
],
check=False,
)
def check_urls_tracking() -> None:
"""
Function to check URLs tracking.
"""
print("check_urls_tracking was called")
subprocess.run(
[
"markdown-checker",
"-d",
"./tests/resources/",
"-f",
"check_urls_tracking",
"-gu",
"https://github.com/john0isaac/markdown-checker/blob/main/CONTRIBUTING.md",
],
check=False,
)
def check_urls_locale() -> None:
"""
Function to check URLs locale.
"""
print("check_urls_locale was called")
subprocess.run(
[
"markdown-checker",
"-d",
"./tests/resources/",
"-f",
"check_urls_locale",
"-gu",
"https://github.com/john0isaac/markdown-checker/blob/main/CONTRIBUTING.md",
],
check=False,
)
mydict = {
1: check_broken_paths,
2: check_broken_urls,
3: check_paths_tracking,
4: check_urls_tracking,
5: check_urls_locale,
}
try:
choices = list(
map(
int,
input(
"""
Do you want to:
(1) Run check_broken_paths
(2) Run check_broken_urls
(3) Run check_paths_tracking
(4) Run check_urls_tracking
(5) Run check_urls_locale
"""
).split(),
)
)
except ValueError:
print("Please input number.")
for choice in choices:
if 0 < choice and choice < 6:
mydict[choice]()
else:
print("That is not between 1 and 5! Try again:")