-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrepo.py
432 lines (396 loc) · 14.4 KB
/
repo.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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
import os
import subprocess
import click
from .config import test_settings_map
from .utils import (
copy_mongo_apps,
copy_mongo_migrations,
copy_mongo_settings,
get_management_command,
get_repos,
repo_clone,
repo_install,
repo_status,
repo_update,
)
class Repo:
def __init__(self):
self.home = "src"
self.config = {}
def set_config(self, key, value):
self.config[key] = value
def __repr__(self):
return f"<Repo {self.home}>"
pass_repo = click.make_pass_decorator(Repo)
@click.group(invoke_without_command=True)
@click.option(
"-l",
"--list-repos",
is_flag=True,
help="List all repositories in `pyproject.toml`.",
)
@click.pass_context
def repo(ctx, list_repos):
"""
Run Django fork and third-party library tests.
"""
ctx.obj = Repo()
repos, url_pattern, branch_pattern = get_repos("pyproject.toml")
if list_repos:
for repo_entry in repos:
click.echo(repo_entry)
return
if ctx.invoked_subcommand is None:
click.echo(ctx.get_help())
@repo.command()
@click.argument("repo_names", nargs=-1, required=False)
@click.option(
"-a",
"--all-repos",
is_flag=True,
)
@click.option(
"-i",
"--install",
is_flag=True,
)
@click.pass_context
@pass_repo
def clone(repo, ctx, repo_names, all_repos, install):
"""Clone repositories from `pyproject.toml`."""
repos, url_pattern, branch_pattern = get_repos("pyproject.toml")
if repo_names:
for repo_name in repo_names:
not_found = set()
for repo_entry in repos:
if (
os.path.basename(url_pattern.search(repo_entry).group(0))
== repo_name
):
repo_clone(repo_entry, url_pattern, branch_pattern, repo)
if install:
clone_path = os.path.join(ctx.obj.home, repo_name)
if os.path.exists(clone_path):
repo_install(clone_path)
return
else:
not_found.add(repo_name)
click.echo(f"Repository '{not_found.pop()}' not found.")
return
if all_repos:
click.echo(f"Cloning {len(repos)} repositories...")
for repo_entry in repos:
repo_clone(repo_entry, url_pattern, branch_pattern, repo)
return
if ctx.args == []:
click.echo(ctx.get_help())
@repo.command()
@click.option(
"-a",
"--all-repos",
is_flag=True,
)
@click.argument("repo_names", nargs=-1)
@click.pass_context
@pass_repo
def install(repo, ctx, repo_names, all_repos):
"""Install cloned repositories with `pip install -e`."""
if repo_names:
for repo_name in repo_names:
clone_path = os.path.join(ctx.obj.home, repo_name)
if os.path.exists(clone_path):
repo_install(clone_path)
else:
click.echo(f"Repository '{repo_name}' not found.")
return
if all_repos:
repos, url_pattern, branch_pattern = get_repos("pyproject.toml")
for repo_entry in repos:
url_match = url_pattern.search(repo_entry)
if url_match:
repo_url = url_match.group(0)
repo_name = os.path.basename(repo_url)
clone_path = os.path.join(ctx.obj.home, repo_name)
if os.path.exists(clone_path):
repo_install(clone_path)
return
if ctx.args == []:
click.echo(ctx.get_help())
@repo.command()
@click.argument("repo_names", nargs=-1)
@click.option(
"-a",
"--all-repos",
is_flag=True,
)
@click.pass_context
@pass_repo
def update(repo, ctx, repo_names, all_repos):
"""Update cloned repositories with `git pull`."""
repos, url_pattern, _ = get_repos("pyproject.toml")
if repo_names:
for repo_name in repo_names:
for repo_entry in repos:
if (
os.path.basename(url_pattern.search(repo_entry).group(0))
== repo_name
):
repo_update(repo_entry, url_pattern, repo)
return
click.echo(f"Repository '{repo_name}' not found.")
return
if all_repos:
click.echo(f"Updating {len(repos)} repositories...")
for repo_entry in repos:
repo_update(repo_entry, url_pattern, repo)
return
if ctx.args == []:
click.echo(ctx.get_help())
@repo.command(context_settings={"ignore_unknown_options": True})
@click.argument("repo_name", required=False)
@click.argument("args", nargs=-1)
@click.pass_context
def makemigrations(
ctx,
repo_name,
args,
):
"""Run `makemigrations` for cloned repositories."""
repos, url_pattern, branch_pattern = get_repos("pyproject.toml")
if repo_name:
for repo_entry in repos:
url_match = url_pattern.search(repo_entry)
if url_match:
repo_url = url_match.group(0)
if (
repo_name in test_settings_map.keys()
and repo_name == os.path.basename(repo_url)
):
try:
copy_mongo_apps(repo_name)
copy_mongo_settings(
test_settings_map[repo_name]["settings"]["migrations"][
"source"
],
test_settings_map[repo_name]["settings"]["migrations"][
"target"
],
)
except FileNotFoundError:
click.echo(
click.style(
f"Settings for '{repo_name}' not found.", fg="red"
)
)
return
command = get_management_command("makemigrations")
command.extend(
[
"--settings",
test_settings_map[repo_name]["settings"]["module"][
"migrations"
],
]
)
if not repo_name == "django-filter":
command.extend(
[
"--pythonpath",
os.path.join(
os.getcwd(),
test_settings_map[repo_name]["test_dir"],
),
]
)
click.echo(f"Running command {' '.join(command)} {' '.join(args)}")
subprocess.run(command + [*args])
return
if ctx.args == []:
click.echo(ctx.get_help())
@repo.command()
@click.argument("repo_name", required=False)
@click.argument("modules", nargs=-1)
@click.option("-k", "--keyword", help="Filter tests by keyword")
@click.option("-l", "--list-tests", help="List tests", is_flag=True)
@click.option("-s", "--setup", help="Setup tests (pymongo only)", is_flag=True)
@click.option("--show", help="Show settings", is_flag=True)
@click.pass_context
def test(
ctx,
repo_name,
modules,
keyword,
list_tests,
setup,
show,
):
"""
Run tests for Django fork and third-party libraries.
"""
repos, url_pattern, branch_pattern = get_repos("pyproject.toml")
if repo_name:
# Show test settings
if show:
if repo_name in test_settings_map.keys():
from rich import print
from black import format_str as format
from black import Mode
click.echo(
print(
format(
str(dict(sorted(test_settings_map[repo_name].items()))),
mode=Mode(),
)
)
)
return
else:
click.echo(
click.style(f"Settings for '{repo_name}' not found.", fg="red")
)
return
for repo_entry in repos:
url_match = url_pattern.search(repo_entry)
repo_url = url_match.group(0)
if repo_name == os.path.basename(repo_url):
if repo_name in test_settings_map.keys():
test_dirs = test_settings_map[repo_name]["test_dirs"]
if list_tests:
for test_dir in test_dirs:
click.echo(click.style(f"{test_dir}", fg="blue"))
try:
modules = sorted(os.listdir(test_dir))
count = 0
for module in modules:
count += 1
if (
module != "__pycache__"
and module != "__init__.py"
):
if count == len(modules):
click.echo(f" └── {module}")
else:
click.echo(f" ├── {module}")
click.echo()
except FileNotFoundError:
click.echo(
click.style(
f"Directory '{test_dir}' not found.", fg="red"
)
)
return
# Copy settings for test run
if "settings" in test_settings_map[repo_name]:
if os.path.exists(os.path.join(ctx.obj.home, repo_name)):
copy_mongo_settings(
test_settings_map[repo_name]["settings"]["test"][
"source"
],
test_settings_map[repo_name]["settings"]["test"][
"target"
],
)
else:
click.echo(
click.style(
f"Repository '{repo_name}' not found.", fg="red"
)
)
return
command = [test_settings_map[repo_name]["test_command"]]
copy_mongo_migrations(repo_name)
copy_mongo_apps(repo_name)
# Configure test command
if (
test_settings_map[repo_name]["test_command"] == "./runtests.py"
and repo_name != "django-rest-framework"
):
command.extend(
[
"--settings",
test_settings_map[repo_name]["settings"]["module"][
"test"
],
"--parallel",
"1",
"--verbosity",
"3",
"--debug-sql",
"--noinput",
]
)
if keyword:
command.extend(["-k", keyword])
if (
repo_name == "django-debug-toolbar"
or repo_name == "django-allauth"
or repo_name == "django-mongodb-extensions"
):
os.environ["DJANGO_SETTINGS_MODULE"] = test_settings_map[
repo_name
]["settings"]["module"]["test"]
command.extend(
[
"--continue-on-collection-errors",
"--html=report.html",
"--self-contained-html",
]
)
elif repo_name == "mongo-python-driver":
command.extend(["test"])
command.extend(modules)
if os.environ.get("DJANGO_SETTINGS_MODULE"):
click.echo(
click.style(
f"DJANGO_SETTINGS_MODULE={os.environ['DJANGO_SETTINGS_MODULE']}",
fg="blue",
)
)
click.echo(click.style(f"Running {' '.join(command)}", fg="blue"))
# Run test command
subprocess.run(
command, cwd=test_settings_map[repo_name]["test_dir"]
)
else:
click.echo(f"Settings for '{repo_name}' not found.")
return
if ctx.args == []:
click.echo(ctx.get_help())
@repo.command()
@click.argument("repo_names", nargs=-1)
@click.option(
"-a",
"--all-repos",
is_flag=True,
)
@click.option(
"-r",
"--reset",
is_flag=True,
)
@click.pass_context
@pass_repo
def status(repo, ctx, repo_names, all_repos, reset):
"""Repository status."""
repos, url_pattern, _ = get_repos("pyproject.toml")
if repo_names:
for repo_name in repo_names:
not_found = set()
for repo_entry in repos:
if (
os.path.basename(url_pattern.search(repo_entry).group(0))
== repo_name
):
repo_status(repo_entry, url_pattern, repo, reset=reset)
return
else:
not_found.add(repo_name)
click.echo(f"Repository '{not_found.pop()}' not found.")
return
if all_repos:
click.echo(f"Status of {len(repos)} repositories...")
for repo_entry in repos:
repo_status(repo_entry, url_pattern, repo, reset=reset)
return
if ctx.args == []:
click.echo(ctx.get_help())