generated from natenka/pyneng-examples-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyneng.py
310 lines (264 loc) · 10.7 KB
/
pyneng.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
import os
import pathlib
import re
import shutil
import stat
import subprocess
import sys
from collections import defaultdict
from glob import glob
import click
import pytest
from pytest_jsonreport.plugin import JSONReport
task_dirs = [
"04_data_structures",
"05_basic_scripts",
"06_control_structures",
"07_files",
"09_functions",
"11_modules",
"12_useful_modules",
"15_module_re",
"17_serialization",
"18_ssh_telnet",
"19_concurrent_connections",
"20_jinja2",
"21_textfsm",
"22_oop_basics",
"23_oop_special_methods",
"24_oop_inheritance",
]
class PynengError(Exception):
"""
Ошибка в использовании/работе скрипта pyneng
"""
def red(msg):
return click.style(msg, fg="red")
def green(msg):
return click.style(msg, fg="green")
def exception_handler(exception_type, exception, traceback):
"""
sys.excepthook для отключения traceback по умолчанию
"""
print(f"\n{exception_type.__name__}: {exception}\n")
class CustomTasksType(click.ParamType):
"""
Класс создает новый тип для click и преобразует
допустимые варианты строк заданий в отдельные файлы тестов.
Кроме того проверяет есть ли такой файл в текущем каталоге
и оставляет только те, что есть.
"""
def convert(self, value, param, ctx):
regex = (
r"(?P<all>all)|"
r"(?P<number_star>\d\*)|"
r"(?P<letters_range>\d[a-i]-[a-i])|"
r"(?P<numbers_range>\d-\d)|"
r"(?P<single_task>\d[a-i]?)"
)
current_chapter = current_dir_name()
if current_chapter not in task_dirs:
task_dirs_line = "\n ".join(task_dirs)
self.fail(
red(
f"\nСкрипт нужно вызывать из каталогов с заданиями:"
f"\n {task_dirs_line}"
)
)
current_chapter = current_chapter_id()
tasks_list = re.split(r"[ ,]+", value)
test_files = []
for task in tasks_list:
match = re.fullmatch(regex, task)
if match:
if task == "all":
return value
else:
if match.group("letters_range"):
task = f"{task[0]}[{task[1:]}]" # convert 1a-c to 1[a-c]
elif match.group("numbers_range"):
task = f"[{task}]" # convert 1-3 to [1-3]
test_files += glob(f"test_task_{current_chapter}_{task}.py")
else:
self.fail(
red(
f"Данный формат не поддерживается {task}. "
"Допустимые форматы: 1, 1a, 1b-d, 1*, 1-3"
)
)
return test_files
def call_command(command, verbose=True, return_stdout=False, return_stderr=False):
"""
Функция вызывает указанную command через subprocess
и выводит stdout и stderr, если флан verbose=True.
"""
result = subprocess.run(
command,
shell=True,
encoding="utf-8",
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
std = result.stdout
stderr = result.stderr
if return_stdout:
return std, None
if return_stderr:
return result.returncode, stderr
if verbose:
print("#" * 20, command)
if std:
print(std)
if stderr:
print(stderr)
return result.returncode, None
def current_chapter_id():
"""
Функция возвращает номер текущего раздела, где вызывается ptest.
"""
pth = str(pathlib.Path().absolute())
last_dir = os.path.split(pth)[-1]
current_chapter = int(last_dir.split("_")[0])
return current_chapter
def current_dir_name():
pth = str(pathlib.Path().absolute())
current_chapter_name = os.path.split(pth)[-1]
return current_chapter_name
def parse_json_report(report):
"""
Отбирает нужные части из отчета запуска pytest в формате JSON.
Возвращает список тестов, которые прошли.
"""
if report and report["summary"]["total"] != 0:
all_tests = defaultdict(list)
for test in report["tests"]:
name = test["nodeid"].split("::")[0]
all_tests[name].append(test["outcome"] == "passed")
all_passed_tasks = [name for name, outcome in all_tests.items() if all(outcome)]
return all_passed_tasks
else:
return []
def copy_answers(passed_tasks):
"""
Функция клонирует репозиторий с ответами в домашний каталог пользователя
копирует ответы для заданий, которые прошли тесты.
После того как ответы скопированы, репозиторий с ответами удаляется.
Все это выполняется вручную, а не через tempfile, из-за проблем
с удалением на Windows.
"""
pth = str(pathlib.Path().absolute())
current_chapter_name = os.path.split(pth)[-1]
homedir = pathlib.Path.home()
os.chdir(homedir)
if os.path.exists("pyneng-answers"):
shutil.rmtree("pyneng-answers", onerror=remove_readonly)
returncode, stderr = call_command(
"git clone --depth=1 https://github.com/natenka/pyneng-answers",
verbose=False,
return_stderr=True,
)
if returncode == 0:
os.chdir(f"pyneng-answers/answers/{current_chapter_name}")
copy_answer_files(passed_tasks, pth)
print(
green(
"\nОтветы на задания, которые прошли тесты "
"скопированы в файлы answer_task_x.py\n"
)
)
os.chdir(homedir)
shutil.rmtree("pyneng-answers", onerror=remove_readonly)
else:
if stderr and "could not resolve host" in stderr.lower():
raise PynengError(
red(
"Не получилось скопировать ответы. Возможно нет доступа в интернет?"
)
)
else:
raise PynengError(red(f"Не получилось скопировать ответы. {stderr}"))
os.chdir(pth)
def remove_readonly(func, path, _):
"""
Вспомогательная функция для Windows, которая позволяет удалять
read only файлы из каталога .git
"""
os.chmod(path, stat.S_IWRITE)
func(path)
def copy_answer_files(passed_tasks, pth):
"""
Функция копирует ответы для указанных заданий.
"""
for test_file in passed_tasks:
task_name = test_file.replace("test_", "")
task_name = re.search(r"task_\w+\.py", task_name)
if not task_name:
print("Передан неверный параметр в функцию")
break
else:
task_name = task_name.group()
answer_name = test_file.replace("test_", "answer_")
answer_name = re.search(r"answer_task_\w+\.py", answer_name)
if answer_name:
answer_name = answer_name.group()
if not os.path.exists(f"{pth}/{answer_name}"):
shutil.copy2(task_name, f"{pth}/{answer_name}")
@click.command(
context_settings=dict(
ignore_unknown_options=True, help_option_names=["-h", "--help"]
)
)
@click.argument("tasks", default="all", type=CustomTasksType())
@click.option(
"--disable-verbose", "-d", is_flag=True, help="Отключить подробный вывод pytest"
)
@click.option(
"--answer",
"-a",
is_flag=True,
help=(
"Скопировать ответы для заданий, которые "
"прошли тесты. При добавлении этого флага, "
"не выводится traceback для тестов."
),
)
@click.option("--debug", is_flag=True, help="Показывать traceback исключений")
def cli(tasks, disable_verbose, answer, debug):
"""
Запустить тесты для заданий TASKS. По умолчанию запустятся все тесты.
Примеры запуска:
\b
ptest запустить все тесты для текущего раздела
ptest 1,2a,5 запустить тесты для заданий 1, 2a и 5
ptest 1,2a-c,5 запустить тесты для заданий 1, 2a, 2b, 2c и 5
ptest 1,2* запустить тесты для заданий 1, все задания 2 с буквами и без
ptest 1,3-5 запустить тесты для заданий 1, 3, 4, 5
ptest 1-5 -a запустить тесты и записать ответы на задания,
которые прошли тесты, в файлы answer_task_x.py
Флаг -d отключает подробный вывод pytest, который включен по умолчанию.
Флаг -a записывает ответы в файлы answer_task_x.py, если тесты проходят.
"""
if not debug:
sys.excepthook = exception_handler
json_plugin = JSONReport()
pytest_args_common = ["--json-report-file=none", "--disable-warnings"]
if disable_verbose:
pytest_args = [*pytest_args_common, "--tb=short"]
else:
pytest_args = [*pytest_args_common, "-vv"]
# если добавлен флаг -a нет смысла выводить traceback,
# так как скорее всего задания уже проверены предыдущими запусками.
if answer:
pytest_args = [*pytest_args_common, "--tb=no"]
# запуск pytest
if tasks == "all":
pytest.main(pytest_args, plugins=[json_plugin])
else:
pytest.main(tasks + pytest_args, plugins=[json_plugin])
# получить результаты pytest в формате JSON
passed_tasks = parse_json_report(json_plugin.report)
# скопировать ответы в файлы answer_task_x.py
if passed_tasks and answer:
copy_answers(passed_tasks)
if __name__ == "__main__":
cli()