-
Notifications
You must be signed in to change notification settings - Fork 6
/
check_help_in_readme.py
210 lines (158 loc) · 6.03 KB
/
check_help_in_readme.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#!/usr/bin/env python3
"""Check that the help snippets in the Readme coincide with the actual output."""
import argparse
import os
import pathlib
import re
import subprocess
import sys
from typing import List, Tuple, Optional
import icontract
class Block:
"""Represent a block in the readme that needs to be checked."""
@icontract.require(lambda command: command != "")
@icontract.require(
lambda start_line_idx, end_line_idx: start_line_idx <= end_line_idx
)
def __init__(self, command: str, start_line_idx: int, end_line_idx: int) -> None:
"""
Initialize with the given values.
:param command: help command
:param start_line_idx: index of the first relevant line
:param end_line_idx: index of the first line excluded from the block
"""
self.command = command
self.start_line_idx = start_line_idx
self.end_line_idx = end_line_idx
HELP_STARTS_RE = re.compile(r"^.. Help starts: (?P<command>.*)$")
def parse_readme(lines: List[str]) -> Tuple[List[Block], List[str]]:
"""
Parse the code blocks that represent help commands in the Readme.
:param lines: lines of the readme file
:return: (help blocks, errors if any)
"""
blocks = [] # type: List[Block]
errors = [] # type: List[str]
i = 0
while i < len(lines):
mtch = HELP_STARTS_RE.match(lines[i])
if mtch:
command = mtch.group("command")
help_ends = ".. Help ends: {}".format(command)
try:
end_index = lines.index(help_ends, i)
except ValueError:
end_index = -1
if end_index == -1:
return [], ["Could not find the end marker {!r}".format(help_ends)]
blocks.append(
Block(command=command, start_line_idx=i + 1, end_line_idx=end_index)
)
i = end_index + 1
else:
i += 1
return blocks, errors
def capture_output_lines(command: str) -> List[str]:
"""Capture the output of a help command."""
command_parts = command.split(" ")
if command_parts[0] in ["python", "python3"]:
# We need to replace "python" with "sys.executable" on Windows as the environment
# is not properly inherited.
command_parts[0] = sys.executable
if not os.path.exists(command_parts[0]):
raise FileNotFoundError(
f"The python interpreter could not be found: {command_parts[0]}"
)
proc = subprocess.Popen(
command_parts,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
encoding="utf-8",
)
output, err = proc.communicate()
if err:
raise RuntimeError(
f"The command {command!r} failed with exit code {proc.returncode} and "
f"stderr:\n{err}"
)
return output.splitlines()
def output_lines_to_code_block(output_lines: List[str]) -> List[str]:
"""Translate the output of a help command to a RST code block."""
result = (
[".. code-block::", ""]
+ [" " + output_line for output_line in output_lines]
+ [""]
)
result = [line.rstrip() for line in result]
return result
def diff(got_lines: List[str], expected_lines: List[str]) -> Optional[str]:
"""
Report a difference between the ``got`` and ``expected``.
Return None if no difference.
"""
if got_lines == expected_lines:
return None
result = []
result.append("Expected:")
for i, line in enumerate(expected_lines):
if i >= len(got_lines) or line != got_lines[i]:
print("DIFF: {:2d}: {!r}".format(i, line))
else:
print("OK : {:2d}: {!r}".format(i, line))
result.append("Got:")
for i, line in enumerate(got_lines):
if i >= len(expected_lines) or line != expected_lines[i]:
print("DIFF: {:2d}: {!r}".format(i, line))
else:
print("OK : {:2d}: {!r}".format(i, line))
return "\n".join(result)
def main() -> int:
"""Execute the main routine."""
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument(
"--overwrite",
help="If set, overwrite the relevant part of README in-place.",
action="store_true",
)
args = parser.parse_args()
overwrite = bool(args.overwrite)
this_dir = pathlib.Path(os.path.realpath(__file__)).parent
pth = this_dir / "README.rst"
text = pth.read_text(encoding="utf-8")
lines = text.splitlines()
blocks, errors = parse_readme(lines=lines)
if errors:
print("One or more errors in {}:".format(pth), file=sys.stderr)
for error in errors:
print(error, file=sys.stderr)
return -1
if len(blocks) == 0:
return 0
if overwrite:
result = [] # type: List[str]
previous_block = None # type: Optional[Block]
for block in blocks:
output_lines = capture_output_lines(command=block.command)
code_block_lines = output_lines_to_code_block(output_lines=output_lines)
if previous_block is None:
result.extend(lines[: block.start_line_idx])
else:
result.extend(lines[previous_block.end_line_idx : block.start_line_idx])
result.extend(code_block_lines)
previous_block = block
result.extend(lines[previous_block.end_line_idx :])
result.append("") # new line at the end of file
pth.write_text("\n".join(result))
else:
for block in blocks:
output_lines = capture_output_lines(command=block.command)
code_block_lines = output_lines_to_code_block(output_lines=output_lines)
expected_lines = lines[block.start_line_idx : block.end_line_idx]
expected_lines = [line.rstrip() for line in expected_lines]
error = diff(got_lines=code_block_lines, expected_lines=expected_lines)
if error:
print(error, file=sys.stderr)
return -1
return 0
if __name__ == "__main__":
sys.exit(main())